[PR #820] [MERGED] Feat/appflowy board #4365

Closed
opened 2026-03-23 21:37:29 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/820
Author: @appflowy
Created: 8/11/2022
Status: Merged
Merged: 8/12/2022
Merged by: @appflowy

Base: mainHead: feat/appflowy_board


📝 Commits (10+)

  • 9930706 refactor: separate cache from service file
  • 9c49595 refactor: RowDetailBloc
  • 25eb5bf chore: add boardbloc
  • 0d6c04a chore: load field typeOption
  • 2b745bc chore: read single select data from board
  • ad3e2f5 chore: add sub data type
  • 32d5edf refactor: refactor class SingleSelectTypeOptionContext
  • 1bdd863 refactor: refactor multi-select typeOption
  • 29ea3c8 chore: refactor grid setting
  • aae2d96 chore: refactor multi-select type option and add GroupPB

📊 Changes

193 files changed (+3983 additions, -2410 deletions)

View changed files

📝 frontend/.vscode/launch.json (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+195 -0)
frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart (+113 -0)
frontend/app_flowy/lib/plugins/board/application/card/board_select_option_cell_bloc.dart (+76 -0)
frontend/app_flowy/lib/plugins/board/application/card/board_text_cell_bloc.dart (+66 -0)
frontend/app_flowy/lib/plugins/board/application/group.dart (+20 -0)
📝 frontend/app_flowy/lib/plugins/board/board.dart (+5 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+73 -129)
frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart (+51 -0)
frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart (+49 -0)
frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+13 -0)
frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart (+0 -0)
📝 frontend/app_flowy/lib/plugins/doc/document.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart (+6 -6)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_field_notifier.dart (+8 -5)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart (+3 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/context_builder.dart (+14 -12)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/checkbox_cell_bloc.dart (+10 -8)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/date_cal_bloc.dart (+19 -19)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/date_cell_bloc.dart (+15 -10)

...and 80 more files

📄 Description

  1. Refactor grid type option context
  2. Generic grid setting by adding SettingConfiguration.
  3. Add a prefix, AF, to the appflowy_board package to reduce name conflicts.
  4. Integrate appflowy_board to AppFlowy
  5. Disable create a board from left-sidebar, it will be opened when it's ready.
  6. Create default board data
  7. Generic GroupController and GroupGenerator. Each FieldType can provide the generic T to get custom action.
  8. Read board group data from the backend

Lots of file changes are caused by the change in the file import path.


🔄 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/820 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/11/2022 **Status:** ✅ Merged **Merged:** 8/12/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/appflowy_board` --- ### 📝 Commits (10+) - [`9930706`](https://github.com/AppFlowy-IO/AppFlowy/commit/9930706d9a354074f882ac902295e8318ab85a5a) refactor: separate cache from service file - [`9c49595`](https://github.com/AppFlowy-IO/AppFlowy/commit/9c495957dcaf50d3fa26edb3957d9e6798794078) refactor: RowDetailBloc - [`25eb5bf`](https://github.com/AppFlowy-IO/AppFlowy/commit/25eb5bf1b0eb319345cc9181c8e684b3b8da31dd) chore: add boardbloc - [`0d6c04a`](https://github.com/AppFlowy-IO/AppFlowy/commit/0d6c04ae8132dcf8bea703b26a36bd4ecf531b35) chore: load field typeOption - [`2b745bc`](https://github.com/AppFlowy-IO/AppFlowy/commit/2b745bc41a4a8cdfe5526d3dece9be44383c9b6a) chore: read single select data from board - [`ad3e2f5`](https://github.com/AppFlowy-IO/AppFlowy/commit/ad3e2f57253f45f7bb7ecee006c932f9f5f2878c) chore: add sub data type - [`32d5edf`](https://github.com/AppFlowy-IO/AppFlowy/commit/32d5edff81d153c1af78b0466e7fb7e5acd231f2) refactor: refactor class SingleSelectTypeOptionContext - [`1bdd863`](https://github.com/AppFlowy-IO/AppFlowy/commit/1bdd863b75cbd027530ea5b6cec80f22827c9f21) refactor: refactor multi-select typeOption - [`29ea3c8`](https://github.com/AppFlowy-IO/AppFlowy/commit/29ea3c83c8a558b35c5fcedf36f9cbb9e3523e7f) chore: refactor grid setting - [`aae2d96`](https://github.com/AppFlowy-IO/AppFlowy/commit/aae2d96a4faf45934555af19d77e761c8dba2bfb) chore: refactor multi-select type option and add GroupPB ### 📊 Changes **193 files changed** (+3983 additions, -2410 deletions) <details> <summary>View changed files</summary> 📝 `frontend/.vscode/launch.json` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+195 -0) ➕ `frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart` (+113 -0) ➕ `frontend/app_flowy/lib/plugins/board/application/card/board_select_option_cell_bloc.dart` (+76 -0) ➕ `frontend/app_flowy/lib/plugins/board/application/card/board_text_cell_bloc.dart` (+66 -0) ➕ `frontend/app_flowy/lib/plugins/board/application/group.dart` (+20 -0) 📝 `frontend/app_flowy/lib/plugins/board/board.dart` (+5 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+73 -129) ➕ `frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart` (+51 -0) ➕ `frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart` (+49 -0) ➕ `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+13 -0) ➕ `frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart` (+0 -0) 📝 `frontend/app_flowy/lib/plugins/doc/document.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart` (+6 -6) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_field_notifier.dart` (+8 -5) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart` (+3 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/context_builder.dart` (+14 -12) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/checkbox_cell_bloc.dart` (+10 -8) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/date_cal_bloc.dart` (+19 -19) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/date_cell_bloc.dart` (+15 -10) _...and 80 more files_ </details> ### 📄 Description 1. Refactor grid type option context 2. Generic grid setting by adding SettingConfiguration. 3. Add a prefix, AF, to the appflowy_board package to reduce name conflicts. 4. Integrate appflowy_board to AppFlowy 5. Disable create a board from left-sidebar, it will be opened when it's ready. 6. Create default board data 7. Generic GroupController and GroupGenerator. Each FieldType can provide the generic T to get custom action. 8. Read board group data from the backend Lots of file changes are caused by the change in the file import path. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:37:29 +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#4365
No description provided.