[PR #2757] [MERGED] fix: update database layout in document #5412

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2757
Author: @appflowy
Created: 6/10/2023
Status: Merged
Merged: 6/11/2023
Merged by: @appflowy

Base: mainHead: fix/update_document_database_view


📝 Commits (7)

  • cd9b6b0 fix: update database layout in document
  • fa5fd68 feat: create or ref calendar
  • b1cd0df Update frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/calendar/calendar_menu_item.dart
  • 2478056 fix: stop listen
  • 0c9a9c2 feat: remove the redundant database view files
  • 40ff497 Merge branch 'fix/update_document_database_view' of https://github.com/AppFlowy-IO/AppFlowy into fix/update_document_database_view
  • d48bd8c chore: rename the grid state

📊 Changes

26 files changed (+310 additions, -267 deletions)

View changed files

frontend/appflowy_flutter/assets/images/editor/calendar.svg (+7 -0)
📝 frontend/appflowy_flutter/assets/translations/en.json (+7 -1)
📝 frontend/appflowy_flutter/lib/plugins/blank/blank.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/board.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/calendar.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/database_view.dart (+6 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/grid.dart (+2 -2)
frontend/appflowy_flutter/lib/plugins/database_view/widgets/database_view_widget.dart (+75 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/document.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+10 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/built_in_page_widget.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/insert_page_command.dart (+7 -11)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/link_to_page_widget.dart (+6 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/board/board_menu_item.dart (+0 -26)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/board/board_view_menu_item.dart (+0 -35)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/database_view_block_component.dart (+19 -14)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/inline_database_menu_item.dart (+90 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/referenced_database_menu_tem.dart (+63 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/grid/grid_menu_item.dart (+0 -26)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/grid/grid_node_widget.dart (+0 -90)

...and 6 more files

📄 Description

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/2757 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 6/10/2023 **Status:** ✅ Merged **Merged:** 6/11/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix/update_document_database_view` --- ### 📝 Commits (7) - [`cd9b6b0`](https://github.com/AppFlowy-IO/AppFlowy/commit/cd9b6b0dc4ed57fef35b2d84f0cac887bc7209f4) fix: update database layout in document - [`fa5fd68`](https://github.com/AppFlowy-IO/AppFlowy/commit/fa5fd68b2412ce0dededbf9216749068ab6bf67c) feat: create or ref calendar - [`b1cd0df`](https://github.com/AppFlowy-IO/AppFlowy/commit/b1cd0df6e695ec3e1ec93436ea916eb65790b68a) Update frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/calendar/calendar_menu_item.dart - [`2478056`](https://github.com/AppFlowy-IO/AppFlowy/commit/2478056aca3bc3936865cfb8e62392144c5c185e) fix: stop listen - [`0c9a9c2`](https://github.com/AppFlowy-IO/AppFlowy/commit/0c9a9c20d88599e0b4df4c118ccab703439cee27) feat: remove the redundant database view files - [`40ff497`](https://github.com/AppFlowy-IO/AppFlowy/commit/40ff49706f60c0db4eeca9188c1e6958c7e710e2) Merge branch 'fix/update_document_database_view' of https://github.com/AppFlowy-IO/AppFlowy into fix/update_document_database_view - [`d48bd8c`](https://github.com/AppFlowy-IO/AppFlowy/commit/d48bd8cee06c169deb79f1bc8612d1e97176aa6d) chore: rename the grid state ### 📊 Changes **26 files changed** (+310 additions, -267 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/assets/images/editor/calendar.svg` (+7 -0) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+7 -1) 📝 `frontend/appflowy_flutter/lib/plugins/blank/blank.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/board.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/calendar.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/database_view.dart` (+6 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/grid.dart` (+2 -2) ➕ `frontend/appflowy_flutter/lib/plugins/database_view/widgets/database_view_widget.dart` (+75 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/document.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+10 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/built_in_page_widget.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/insert_page_command.dart` (+7 -11) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/link_to_page_widget.dart` (+6 -0) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/board/board_menu_item.dart` (+0 -26) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/board/board_view_menu_item.dart` (+0 -35) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/database_view_block_component.dart` (+19 -14) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/inline_database_menu_item.dart` (+90 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/referenced_database_menu_tem.dart` (+63 -0) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/grid/grid_menu_item.dart` (+0 -26) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/grid/grid_node_widget.dart` (+0 -90) _...and 6 more files_ </details> ### 📄 Description #### PR Checklist - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [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. - [x] 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 22:18:38 +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#5412
No description provided.