[PR #6082] [MERGED] feat: optimize sync error page #7181

Closed
opened 2026-03-23 23:18:28 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6082
Author: @LucasXu0
Created: 8/27/2024
Status: Merged
Merged: 8/28/2024
Merged by: @LucasXu0

Base: mainHead: apple_sign_in


📝 Commits (10+)

  • 22b62b7 chore: update client api to support apple sign in
  • 17567bb chore: revert client api update
  • 02f8ba0 feat: improve data not sync error page
  • 8dcaa3f feat: add template entry
  • 5e69ed1 fix: flutter analyze
  • 0245472 fix: settings padding in sign in page
  • 4713e9d Merge branch 'main' into apple_sign_in
  • b123070 feat: improve error page on desktop
  • d31ac50 Merge branch 'main' into apple_sign_in
  • 5e785d1 chore: update collab version

📊 Changes

32 files changed (+438 additions, -72 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_page_test.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/animated_gesture.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_page_card.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/tab/ai_bubble_button.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/multi_select_notification_item.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/notification_item.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/document_page.dart (+5 -6)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar_item.dart (+4 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_style.dart (+1 -1)
frontend/appflowy_flutter/lib/plugins/document/presentation/sync_error_page.dart (+168 -0)
📝 frontend/appflowy_flutter/lib/plugins/shared/share/export_tab.dart (+49 -0)
📝 frontend/appflowy_flutter/lib/plugins/shared/share/share_bloc.dart (+19 -1)
📝 frontend/appflowy_flutter/lib/shared/popup_menu/appflowy_popup_menu.dart (+5 -3)
📝 frontend/appflowy_flutter/lib/startup/startup.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/startup/tasks/platform_error_catcher.dart (+19 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_button.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/share/export_service.dart (+8 -0)

...and 12 more files

📄 Description

Feature Preview

sync error page

Screenshot 2024-08-27 at 16 02 45

template entry

Screenshot 2024-08-27 at 17 01 57

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/6082 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/27/2024 **Status:** ✅ Merged **Merged:** 8/28/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `apple_sign_in` --- ### 📝 Commits (10+) - [`22b62b7`](https://github.com/AppFlowy-IO/AppFlowy/commit/22b62b78c71871d7ab5784ce801a0987ebbdc623) chore: update client api to support apple sign in - [`17567bb`](https://github.com/AppFlowy-IO/AppFlowy/commit/17567bbda1afe5688ac9299875a95e90709ffe73) chore: revert client api update - [`02f8ba0`](https://github.com/AppFlowy-IO/AppFlowy/commit/02f8ba0c8306872a14187208c9595ad931729c5d) feat: improve data not sync error page - [`8dcaa3f`](https://github.com/AppFlowy-IO/AppFlowy/commit/8dcaa3f6d544d3a397dd8c2874a169b402d8a95b) feat: add template entry - [`5e69ed1`](https://github.com/AppFlowy-IO/AppFlowy/commit/5e69ed1352653dc2c9a418296830408ed68e6ea6) fix: flutter analyze - [`0245472`](https://github.com/AppFlowy-IO/AppFlowy/commit/02454728ae8756d76b7ff8fd6368a7014ef9ce65) fix: settings padding in sign in page - [`4713e9d`](https://github.com/AppFlowy-IO/AppFlowy/commit/4713e9d3b7ceca9f593250e61b6144c3f93cf6cc) Merge branch 'main' into apple_sign_in - [`b123070`](https://github.com/AppFlowy-IO/AppFlowy/commit/b12307042b8f032971f2adad08a032ab35c2340f) feat: improve error page on desktop - [`d31ac50`](https://github.com/AppFlowy-IO/AppFlowy/commit/d31ac50dbac76653a80715cdba683e4665ff9d88) Merge branch 'main' into apple_sign_in - [`5e785d1`](https://github.com/AppFlowy-IO/AppFlowy/commit/5e785d138d1bdc7c7388d188902c6af593dc3c6b) chore: update collab version ### 📊 Changes **32 files changed** (+438 additions, -72 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_page_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/animated_gesture.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page_header.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_page_card.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/tab/ai_bubble_button.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/multi_select_notification_item.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/widgets/notification_item.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/document_page.dart` (+5 -6) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar_item.dart` (+4 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_style.dart` (+1 -1) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/sync_error_page.dart` (+168 -0) 📝 `frontend/appflowy_flutter/lib/plugins/shared/share/export_tab.dart` (+49 -0) 📝 `frontend/appflowy_flutter/lib/plugins/shared/share/share_bloc.dart` (+19 -1) 📝 `frontend/appflowy_flutter/lib/shared/popup_menu/appflowy_popup_menu.dart` (+5 -3) 📝 `frontend/appflowy_flutter/lib/startup/startup.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/startup/tasks/platform_error_catcher.dart` (+19 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_button.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/share/export_service.dart` (+8 -0) _...and 12 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 #### sync error page <img width="559" alt="Screenshot 2024-08-27 at 16 02 45" src="https://github.com/user-attachments/assets/bfdc8661-92fa-4bac-be6f-91ab6835ba36"> #### template entry <img width="425" alt="Screenshot 2024-08-27 at 17 01 57" src="https://github.com/user-attachments/assets/76d15720-7103-45a4-8fb0-2bde9a0d65e1"> <!--- 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:18:28 +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#7181
No description provided.