[PR #1759] [MERGED] Integrate Grid into Document #4933

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

📋 Pull Request Information

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

Base: mainHead: feature/grid_plugin


📝 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

13 files changed (+524 additions, -320 deletions)

View changed files

📝 frontend/app_flowy/assets/translations/en.json (+4 -1)
📝 frontend/app_flowy/lib/plugins/document/document_page.dart (+6 -0)
📝 frontend/app_flowy/lib/plugins/document/editor_styles.dart (+1 -1)
frontend/app_flowy/lib/plugins/document/presentation/plugins/base/built_in_page_widget.dart (+160 -0)
frontend/app_flowy/lib/plugins/document/presentation/plugins/base/insert_page_command.dart (+42 -0)
frontend/app_flowy/lib/plugins/document/presentation/plugins/base/link_to_page_widget.dart (+186 -0)
📝 frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_menu_item.dart (+10 -176)
📝 frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_node_widget.dart (+11 -132)
frontend/app_flowy/lib/plugins/document/presentation/plugins/grid/grid_menu_item.dart (+29 -0)
frontend/app_flowy/lib/plugins/document/presentation/plugins/grid/grid_node_widget.dart (+54 -0)
📝 frontend/app_flowy/lib/plugins/document/presentation/share/share_button.dart (+10 -3)
📝 frontend/app_flowy/lib/plugins/grid/presentation/grid_page.dart (+4 -4)
📝 frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart (+7 -3)

📄 Description

#1751


🔄 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/1759 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 1/30/2023 **Status:** ✅ Merged **Merged:** 2/1/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feature/grid_plugin` --- ### 📝 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 **13 files changed** (+524 additions, -320 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/assets/translations/en.json` (+4 -1) 📝 `frontend/app_flowy/lib/plugins/document/document_page.dart` (+6 -0) 📝 `frontend/app_flowy/lib/plugins/document/editor_styles.dart` (+1 -1) ➕ `frontend/app_flowy/lib/plugins/document/presentation/plugins/base/built_in_page_widget.dart` (+160 -0) ➕ `frontend/app_flowy/lib/plugins/document/presentation/plugins/base/insert_page_command.dart` (+42 -0) ➕ `frontend/app_flowy/lib/plugins/document/presentation/plugins/base/link_to_page_widget.dart` (+186 -0) 📝 `frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_menu_item.dart` (+10 -176) 📝 `frontend/app_flowy/lib/plugins/document/presentation/plugins/board/board_node_widget.dart` (+11 -132) ➕ `frontend/app_flowy/lib/plugins/document/presentation/plugins/grid/grid_menu_item.dart` (+29 -0) ➕ `frontend/app_flowy/lib/plugins/document/presentation/plugins/grid/grid_node_widget.dart` (+54 -0) 📝 `frontend/app_flowy/lib/plugins/document/presentation/share/share_button.dart` (+10 -3) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/grid_page.dart` (+4 -4) 📝 `frontend/app_flowy/lib/workspace/presentation/home/home_stack.dart` (+7 -3) </details> ### 📄 Description #1751 --- <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: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#4933
No description provided.