[PR #5847] [MERGED] feat: notification multiple select #7041

Closed
opened 2026-03-23 23:17:50 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5847
Author: @LucasXu0
Created: 7/31/2024
Status: Merged
Merged: 8/1/2024
Merged by: @LucasXu0

Base: mainHead: notification_multiple_choice


📝 Commits (10+)

  • 9dc9f6c chore: update editor version
  • c87e792 feat: support multi select notification items
  • 3e8e756 fix: flutter analyze
  • 9eaad8f feat: add navgation bar button
  • 539990c feat: add multi select item
  • fa96d30 feat: add multi choice in notification page
  • df28426 feat: support multi choice
  • 7aca560 chore: update icon
  • 48f931f feat: support open page from notification page
  • 36dbda6 Merge branch 'main' into notification_multiple_choice

📊 Changes

22 files changed (+1107 additions, -392 deletions)

View changed files

📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/gesture.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart (+241 -53)
frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_multiple_select_page.dart (+59 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_screen.dart (+25 -24)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/header.dart (+64 -0)
frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/multi_select_notification_item.dart (+115 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/notification_item.dart (+41 -243)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/settings_popup_menu.dart (+28 -0)
frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/shared.dart (+237 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/slide_actions.dart (+18 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/tab.dart (+57 -16)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/widgets.dart (+3 -0)
frontend/appflowy_flutter/lib/mobile/presentation/widgets/navigation_bar_button.dart (+47 -0)
📝 frontend/appflowy_flutter/lib/startup/tasks/generate_router.dart (+16 -0)
📝 frontend/appflowy_flutter/lib/user/application/reminder/reminder_bloc.dart (+134 -42)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+2 -2)
📝 frontend/resources/flowy_icons/16x/m_notification_action_multiple_choice.svg (+6 -2)
frontend/resources/flowy_icons/16x/m_notification_multi_select.svg (+4 -0)

...and 2 more files

📄 Description

Feature Preview

https://github.com/user-attachments/assets/92b09291-27e0-4b8f-8147-60e00df679c4


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/5847 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 7/31/2024 **Status:** ✅ Merged **Merged:** 8/1/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `notification_multiple_choice` --- ### 📝 Commits (10+) - [`9dc9f6c`](https://github.com/AppFlowy-IO/AppFlowy/commit/9dc9f6c20373a20303573ef36b145b3ab9783b8d) chore: update editor version - [`c87e792`](https://github.com/AppFlowy-IO/AppFlowy/commit/c87e79295e7b546f31c72d461c61930232af4a16) feat: support multi select notification items - [`3e8e756`](https://github.com/AppFlowy-IO/AppFlowy/commit/3e8e756e874229dad8aa38ec29261496e87bfa39) fix: flutter analyze - [`9eaad8f`](https://github.com/AppFlowy-IO/AppFlowy/commit/9eaad8fc8755c6f529aaac8ec04bd9174950374c) feat: add navgation bar button - [`539990c`](https://github.com/AppFlowy-IO/AppFlowy/commit/539990c9f6c5d86ef236ebd88c367e6479dd7d76) feat: add multi select item - [`fa96d30`](https://github.com/AppFlowy-IO/AppFlowy/commit/fa96d3034d72ce871ca7fa5510258308f188c195) feat: add multi choice in notification page - [`df28426`](https://github.com/AppFlowy-IO/AppFlowy/commit/df284265809857e7c9a5bfac218c7ac1178f5ba3) feat: support multi choice - [`7aca560`](https://github.com/AppFlowy-IO/AppFlowy/commit/7aca560b7ce619e5f24e103d4ec7a86bba60c8d2) chore: update icon - [`48f931f`](https://github.com/AppFlowy-IO/AppFlowy/commit/48f931f17a1761630bcd3e21c9a5c35ce7b8029d) feat: support open page from notification page - [`36dbda6`](https://github.com/AppFlowy-IO/AppFlowy/commit/36dbda683919fe62894177e49b2f7448e84165cf) Merge branch 'main' into notification_multiple_choice ### 📊 Changes **22 files changed** (+1107 additions, -392 deletions) <details> <summary>View changed files</summary> 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/gesture.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart` (+241 -53) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_multiple_select_page.dart` (+59 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_screen.dart` (+25 -24) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/header.dart` (+64 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/multi_select_notification_item.dart` (+115 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/notification_item.dart` (+41 -243) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/settings_popup_menu.dart` (+28 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/shared.dart` (+237 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/slide_actions.dart` (+18 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/tab.dart` (+57 -16) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/widgets.dart` (+3 -0) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/widgets/navigation_bar_button.dart` (+47 -0) 📝 `frontend/appflowy_flutter/lib/startup/tasks/generate_router.dart` (+16 -0) 📝 `frontend/appflowy_flutter/lib/user/application/reminder/reminder_bloc.dart` (+134 -42) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+2 -2) 📝 `frontend/resources/flowy_icons/16x/m_notification_action_multiple_choice.svg` (+6 -2) ➕ `frontend/resources/flowy_icons/16x/m_notification_multi_select.svg` (+4 -0) _...and 2 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview https://github.com/user-attachments/assets/92b09291-27e0-4b8f-8147-60e00df679c4 <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:17:50 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#7041
No description provided.