[PR #5158] [MERGED] feat: support mention page on mobile #6674

Closed
opened 2026-03-23 23:16:09 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5158
Author: @Xazin
Created: 4/17/2024
Status: Merged
Merged: 5/2/2024
Merged by: @Xazin

Base: mainHead: feat/support-mention-page-mobile


📝 Commits (10+)

  • 77f5346 feat: support mention page on mobile
  • c62fbe2 chore: clean up toggle notifier
  • cd68dea Merge branch 'main' into feat/support-mention-page-mobile
  • e22ddd3 chore: merge branch 'upstream/main' into feat/support-mention-page-mobile
  • 2bcb474 fix: changes after merge
  • bbbdfec fix: depends on inherited widget error
  • 0d2bf7d Merge branch 'main' into feat/support-mention-page-mobile
  • f2408c8 fix: amend after merge
  • a658cdf feat: add icon to search
  • d31230b chore: slight style changes

📊 Changes

17 files changed (+423 additions, -331 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/widgets/row/row_document.dart (+3 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/document.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/document_page.dart (+12 -14)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/collaborator_avater_stack.dart (+2 -9)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart (+26 -69)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_notification.dart (+9 -25)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+27 -39)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_block.dart (+6 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_page_block.dart (+81 -16)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mobile_page_selector_sheet.dart (+135 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart (+51 -22)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar.dart (+13 -9)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/util.dart (+18 -35)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_style.dart (+21 -54)
📝 frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/command_palette/command_palette.dart (+9 -30)
📝 frontend/resources/translations/en.json (+6 -0)

📄 Description

Closes: #5154

Feature Preview

https://github.com/AppFlowy-IO/AppFlowy/assets/42929161/46e03974-fdf9-44f3-aa72-c644cddf4db5

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/5158 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 4/17/2024 **Status:** ✅ Merged **Merged:** 5/2/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `feat/support-mention-page-mobile` --- ### 📝 Commits (10+) - [`77f5346`](https://github.com/AppFlowy-IO/AppFlowy/commit/77f53463f1dcb7e5004f31dd2f0778e72da86318) feat: support mention page on mobile - [`c62fbe2`](https://github.com/AppFlowy-IO/AppFlowy/commit/c62fbe2edbd7a4f45aa5776f20d83d30443ae574) chore: clean up toggle notifier - [`cd68dea`](https://github.com/AppFlowy-IO/AppFlowy/commit/cd68dea7dbcbb56cd1b0920b004c8e95e752e20e) Merge branch 'main' into feat/support-mention-page-mobile - [`e22ddd3`](https://github.com/AppFlowy-IO/AppFlowy/commit/e22ddd3580539c58d3acd387266a0d1edaaa78a1) chore: merge branch 'upstream/main' into feat/support-mention-page-mobile - [`2bcb474`](https://github.com/AppFlowy-IO/AppFlowy/commit/2bcb474797354b5ae1d0785eb868f96883d4f545) fix: changes after merge - [`bbbdfec`](https://github.com/AppFlowy-IO/AppFlowy/commit/bbbdfeca17583b470ef99f76fcfadf2138396bda) fix: depends on inherited widget error - [`0d2bf7d`](https://github.com/AppFlowy-IO/AppFlowy/commit/0d2bf7d4a03581e1ff987073b14eb63002f992e4) Merge branch 'main' into feat/support-mention-page-mobile - [`f2408c8`](https://github.com/AppFlowy-IO/AppFlowy/commit/f2408c83685d088ac6eeeeed19d47d11a564b9d6) fix: amend after merge - [`a658cdf`](https://github.com/AppFlowy-IO/AppFlowy/commit/a658cdf09a5956ce347ad333110a0d8d1bbffede) feat: add icon to search - [`d31230b`](https://github.com/AppFlowy-IO/AppFlowy/commit/d31230b208bbd4f48d0abe1b1dccbf8fa8d4f1a1) chore: slight style changes ### 📊 Changes **17 files changed** (+423 additions, -331 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/row/row_document.dart` (+3 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/document.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/document_page.dart` (+12 -14) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/collaborator_avater_stack.dart` (+2 -9) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart` (+26 -69) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_notification.dart` (+9 -25) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+27 -39) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_block.dart` (+6 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mention_page_block.dart` (+81 -16) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mention/mobile_page_selector_sheet.dart` (+135 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart` (+51 -22) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/appflowy_mobile_toolbar.dart` (+13 -9) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/util.dart` (+18 -35) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_style.dart` (+21 -54) 📝 `frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/command_palette.dart` (+9 -30) 📝 `frontend/resources/translations/en.json` (+6 -0) </details> ### 📄 Description Closes: #5154 ### Feature Preview https://github.com/AppFlowy-IO/AppFlowy/assets/42929161/46e03974-fdf9-44f3-aa72-c644cddf4db5 #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [x] 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:16:09 +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#6674
No description provided.