[PR #7607] [MERGED] fix: revamp desktop notification center #7993

Closed
opened 2026-03-23 23:22:07 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7607
Author: @asjqkkkk
Created: 3/25/2025
Status: Merged
Merged: 4/23/2025
Merged by: @LucasXu0

Base: mainHead: feat/notification


📝 Commits (8)

  • e4b654c fix: revamp desktop notification center
  • 0e0d7b2 fix: complete the red dot
  • 2932f4f fix: remove context from showToastNotification
  • 1a49ba4 Merge branch 'main' into feat/notification
  • 2954f86 Merge branch 'main' into feat/notification
  • 71bd1fb fix: date picker not updated after enable time
  • 7b333f3 Merge branch 'main' into feat/notification
  • 1d6b8aa fix: path erro with ActionArgumentKeys.path

📊 Changes

35 files changed (+1169 additions, -366 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/application/notification/notification_reminder_bloc.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_screen.dart (+6 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/empty.dart (+8 -8)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/notification_item.dart (+7 -6)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/shared.dart (+78 -33)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/slide_actions.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/tab.dart (+5 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/tab_bar.dart (+2 -34)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/widgets.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/document_page.dart (+9 -5)
📝 frontend/appflowy_flutter/lib/workspace/application/home/home_setting_bloc.dart (+62 -16)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/notifications/notification_settings_cubit.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart (+4 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart (+23 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_layout.dart (+7 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_sizes.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart (+13 -6)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/header/sidebar_top_menu.dart (+2 -3)
frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/slider_menu_hover_trigger.dart (+13 -0)

...and 15 more files

📄 Description

  • Revamp Notification UI
  • Implement new displaying logic of sidebar

Feature Preview

image

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/7607 **Author:** [@asjqkkkk](https://github.com/asjqkkkk) **Created:** 3/25/2025 **Status:** ✅ Merged **Merged:** 4/23/2025 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feat/notification` --- ### 📝 Commits (8) - [`e4b654c`](https://github.com/AppFlowy-IO/AppFlowy/commit/e4b654c823162b95884d8af1476063c95bfad21f) fix: revamp desktop notification center - [`0e0d7b2`](https://github.com/AppFlowy-IO/AppFlowy/commit/0e0d7b2ceea15bf234081d91ec79e705b910126c) fix: complete the red dot - [`2932f4f`](https://github.com/AppFlowy-IO/AppFlowy/commit/2932f4f86736d4acd29a06a39978e980557bbfcd) fix: remove context from showToastNotification - [`1a49ba4`](https://github.com/AppFlowy-IO/AppFlowy/commit/1a49ba4574bff7e39973237b9ae2d8a32f9bab56) Merge branch 'main' into feat/notification - [`2954f86`](https://github.com/AppFlowy-IO/AppFlowy/commit/2954f8627e22b00bfae6bec649dff2db4e541173) Merge branch 'main' into feat/notification - [`71bd1fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/71bd1fb600c45913fb004ce42a994a1ac13701eb) fix: date picker not updated after enable time - [`7b333f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/7b333f3893430d22e90ed9de85dacf3be1c2b0b6) Merge branch 'main' into feat/notification - [`1d6b8aa`](https://github.com/AppFlowy-IO/AppFlowy/commit/1d6b8aa9ba60bd42bf635893a9d2e58d68b28200) fix: path erro with ActionArgumentKeys.path ### 📊 Changes **35 files changed** (+1169 additions, -366 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/application/notification/notification_reminder_bloc.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_screen.dart` (+6 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/empty.dart` (+8 -8) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/notification_item.dart` (+7 -6) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/shared.dart` (+78 -33) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/slide_actions.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/tab.dart` (+5 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/tab_bar.dart` (+2 -34) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/widgets.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/document_page.dart` (+9 -5) 📝 `frontend/appflowy_flutter/lib/workspace/application/home/home_setting_bloc.dart` (+62 -16) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/notifications/notification_settings_cubit.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart` (+4 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart` (+23 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_layout.dart` (+7 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_sizes.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart` (+13 -6) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/header/sidebar_top_menu.dart` (+2 -3) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/slider_menu_hover_trigger.dart` (+13 -0) _...and 15 more files_ </details> ### 📄 Description - [x] Revamp Notification UI - [ ] Implement new displaying logic of sidebar ### Feature Preview <img width="1070" alt="image" src="https://github.com/user-attachments/assets/5b2f6ce3-2e2c-4e32-9406-eaac92ca5d0f" /> <!--- 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:22:07 +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#7993
No description provided.