[PR #1675] [MERGED] integrate board plugin into document #4887

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1675
Author: @LucasXu0
Created: 1/6/2023
Status: Merged
Merged: 1/30/2023
Merged by: @LucasXu0

Base: mainHead: feature/board


📝 Commits (10+)

  • 7531dc3 fix: cursor doesn't blink when opening selection menu
  • a0c5563 feat: add board plugin
  • c3f94cd feat: integrate board plugin into document
  • 8bf4e83 Merge remote-tracking branch 'origin/main' into feature/board
  • 5d944fd feat: add i10n and fix known bugs
  • d5420f0 feat: support jump to board page on document
  • 7c4334c feat: disable editor scroll only when the board plugin is selected
  • daffa97 chore: dart fix
  • faa6c87 chore: remove unused files
  • 31e66ef Merge branch 'main' into feature/board

📊 Changes

19 files changed (+486 additions, -41 deletions)

View changed files

📝 frontend/app_flowy/assets/translations/en.json (+7 -1)
📝 frontend/app_flowy/lib/plugins/board/board.dart (+4 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+25 -9)
📝 frontend/app_flowy/lib/plugins/document/document_page.dart (+8 -3)
📝 frontend/app_flowy/lib/plugins/document/editor_styles.dart (+1 -1)
frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_menu_item.dart (+195 -0)
frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_node_widget.dart (+175 -0)
📝 frontend/app_flowy/lib/workspace/application/app/app_service.dart (+49 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/assets/example.json (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/core/document/node.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/node_extensions.dart (+11 -3)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/arrow_keys_handler.dart (+0 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/render_plugin_service.dart (+0 -2)
📝 frontend/app_flowy/packages/appflowy_editor/test/extensions/node_extension_test.dart (+0 -10)
📝 frontend/app_flowy/packages/appflowy_editor/test/render/rich_text/checkbox_text_test.dart (+2 -2)
📝 frontend/app_flowy/packages/appflowy_editor/test/service/selection_service_test.dart (+4 -4)
📝 frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/math_ equation/math_equation_node_widget.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor_plugins/pubspec.yaml (+1 -1)

📄 Description

No description provided


🔄 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/1675 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 1/6/2023 **Status:** ✅ Merged **Merged:** 1/30/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feature/board` --- ### 📝 Commits (10+) - [`7531dc3`](https://github.com/AppFlowy-IO/AppFlowy/commit/7531dc3b78a244636fb47e3e4a964a51319d0304) fix: cursor doesn't blink when opening selection menu - [`a0c5563`](https://github.com/AppFlowy-IO/AppFlowy/commit/a0c5563b2904ac2bc46d53bd6350d8814f47218e) feat: add board plugin - [`c3f94cd`](https://github.com/AppFlowy-IO/AppFlowy/commit/c3f94cd1ef292a8950c697fe820afd90861b345d) feat: integrate board plugin into document - [`8bf4e83`](https://github.com/AppFlowy-IO/AppFlowy/commit/8bf4e835c373f0b19eaa1a921cb64808deebcd45) Merge remote-tracking branch 'origin/main' into feature/board - [`5d944fd`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d944fded44f7c20199b9a244a6ab029b8179d80) feat: add i10n and fix known bugs - [`d5420f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/d5420f00596d747110566ec2ca54d3c4d80089aa) feat: support jump to board page on document - [`7c4334c`](https://github.com/AppFlowy-IO/AppFlowy/commit/7c4334ce5e066a47088959bc323b270c8bd3dd94) feat: disable editor scroll only when the board plugin is selected - [`daffa97`](https://github.com/AppFlowy-IO/AppFlowy/commit/daffa9759741e1e2fb44dcce406f1c7591a010f7) chore: dart fix - [`faa6c87`](https://github.com/AppFlowy-IO/AppFlowy/commit/faa6c873e8f5c5472838f586e5b20dd33a8d4eab) chore: remove unused files - [`31e66ef`](https://github.com/AppFlowy-IO/AppFlowy/commit/31e66ef84d316850d5dfe0273f06d150ddcbfc7d) Merge branch 'main' into feature/board ### 📊 Changes **19 files changed** (+486 additions, -41 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/assets/translations/en.json` (+7 -1) 📝 `frontend/app_flowy/lib/plugins/board/board.dart` (+4 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+25 -9) 📝 `frontend/app_flowy/lib/plugins/document/document_page.dart` (+8 -3) 📝 `frontend/app_flowy/lib/plugins/document/editor_styles.dart` (+1 -1) ➕ `frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_menu_item.dart` (+195 -0) ➕ `frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_node_widget.dart` (+175 -0) 📝 `frontend/app_flowy/lib/workspace/application/app/app_service.dart` (+49 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/assets/example.json` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/core/document/node.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/node_extensions.dart` (+11 -3) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/arrow_keys_handler.dart` (+0 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/render_plugin_service.dart` (+0 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/test/extensions/node_extension_test.dart` (+0 -10) 📝 `frontend/app_flowy/packages/appflowy_editor/test/render/rich_text/checkbox_text_test.dart` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/test/service/selection_service_test.dart` (+4 -4) 📝 `frontend/app_flowy/packages/appflowy_editor_plugins/lib/src/math_ equation/math_equation_node_widget.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor_plugins/pubspec.yaml` (+1 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:16:16 +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#4887
No description provided.