[PR #1765] [MERGED] Feat/database view #4934

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/1765
Author: @appflowy
Created: 1/30/2023
Status: Merged
Merged: 1/31/2023
Merged by: @appflowy

Base: mainHead: feat/database_view


📝 Commits (6)

  • 72ce9ff chore: rename flowy-database to flowy-sqlite
  • c353b7e refactor: rename flowy-grid to flowy-database
  • baf781c refactor: rename grid to database
  • 8656920 refactor: rename GridEvent to DatabaseEvent
  • fb5fb79 refactor: rename grid_id to database_id
  • 985c155 refactor: rename dart code

📊 Changes

400 files changed (+2429 additions, -2417 deletions)

View changed files

📝 frontend/app_flowy/lib/core/grid_notification.dart (+16 -16)
📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+10 -10)
📝 frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart (+14 -14)
📝 frontend/app_flowy/lib/plugins/board/application/board_listener.dart (+8 -8)
📝 frontend/app_flowy/lib/plugins/board/application/card/board_date_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/application/card/board_select_option_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/application/card/board_url_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+4 -4)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/application/group.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/board/application/group_controller.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/board/application/group_listener.dart (+7 -7)
📝 frontend/app_flowy/lib/plugins/board/application/toolbar/board_setting_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+8 -8)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/toolbar/board_setting.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_listener.dart (+5 -5)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_cache.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart (+2 -2)

...and 80 more files

📄 Description

Refactor code base on the document


🔄 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/1765 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 1/30/2023 **Status:** ✅ Merged **Merged:** 1/31/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/database_view` --- ### 📝 Commits (6) - [`72ce9ff`](https://github.com/AppFlowy-IO/AppFlowy/commit/72ce9fff109593e398ddeb5fd2a10256b2ac3be8) chore: rename flowy-database to flowy-sqlite - [`c353b7e`](https://github.com/AppFlowy-IO/AppFlowy/commit/c353b7ebaa7494e97583f7ce20c83bf1df52011e) refactor: rename flowy-grid to flowy-database - [`baf781c`](https://github.com/AppFlowy-IO/AppFlowy/commit/baf781cd0a2c3bdc8c5e6de761598cecd8016f78) refactor: rename grid to database - [`8656920`](https://github.com/AppFlowy-IO/AppFlowy/commit/8656920472e0e8b7a5e813ab468c2faf35067503) refactor: rename GridEvent to DatabaseEvent - [`fb5fb79`](https://github.com/AppFlowy-IO/AppFlowy/commit/fb5fb791164a306a4ae549f6ff2f4bf440a6cfed) refactor: rename grid_id to database_id - [`985c155`](https://github.com/AppFlowy-IO/AppFlowy/commit/985c1551c1f1e95e12a4f1ab12bd8450c4d1c437) refactor: rename dart code ### 📊 Changes **400 files changed** (+2429 additions, -2417 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/core/grid_notification.dart` (+16 -16) 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+10 -10) 📝 `frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart` (+14 -14) 📝 `frontend/app_flowy/lib/plugins/board/application/board_listener.dart` (+8 -8) 📝 `frontend/app_flowy/lib/plugins/board/application/card/board_date_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/card/board_select_option_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/card/board_url_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+4 -4) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/group.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/board/application/group_controller.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/board/application/group_listener.dart` (+7 -7) 📝 `frontend/app_flowy/lib/plugins/board/application/toolbar/board_setting_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+8 -8) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/toolbar/board_setting.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_listener.dart` (+5 -5) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_cache.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart` (+2 -2) _...and 80 more files_ </details> ### 📄 Description Refactor code base on the [document](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/architecture/frontend/database-view) --- <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#4934
No description provided.