[PR #977] [MERGED] Feat/support grouping by different field #4471

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/977
Author: @appflowy
Created: 9/4/2022
Status: Merged
Merged: 9/4/2022
Merged by: @appflowy

Base: mainHead: feat/support_switch_field


📝 Commits (9)

  • 1931cdd chore: support switch to multi select field
  • f192f89 chore: refactor group gen process
  • e75d8f2 chore: add edit field type option helper
  • bb7cddc chore: reload group when group by new field
  • e73f143 chore: config switch group field UI
  • b3e5bb0 chore: config switch group field UI
  • f57ba8b chore: read setting
  • 54d6f37 chore: replace FieldPB with GridField
  • 4f8e012 chore: fix bugs when switch group field

📊 Changes

99 files changed (+1974 additions, -1241 deletions)

View changed files

frontend/app_flowy/assets/images/grid/setting/group.svg (+7 -0)
📝 frontend/app_flowy/assets/translations/en.json (+2 -1)
📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+36 -19)
📝 frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart (+44 -49)
📝 frontend/app_flowy/lib/plugins/board/application/board_listener.dart (+24 -8)
📝 frontend/app_flowy/lib/plugins/board/application/card/board_date_cell_bloc.dart (+3 -7)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+5 -5)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart (+5 -5)
📝 frontend/app_flowy/lib/plugins/board/application/toolbar/board_setting_bloc.dart (+1 -0)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+11 -11)
📝 frontend/app_flowy/lib/plugins/board/presentation/toolbar/board_setting.dart (+16 -5)
📝 frontend/app_flowy/lib/plugins/board/presentation/toolbar/board_toolbar.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart (+13 -12)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart (+6 -6)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/date_cal_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/date_cell_bloc.dart (+3 -7)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart (+1 -1)
frontend/app_flowy/lib/plugins/grid/application/field/field_cache.dart (+0 -192)
frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart (+281 -0)

...and 79 more files

📄 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/977 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/4/2022 **Status:** ✅ Merged **Merged:** 9/4/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/support_switch_field` --- ### 📝 Commits (9) - [`1931cdd`](https://github.com/AppFlowy-IO/AppFlowy/commit/1931cdd4c086b5936590779bae201f68a668f65b) chore: support switch to multi select field - [`f192f89`](https://github.com/AppFlowy-IO/AppFlowy/commit/f192f89ebb098822089b4e0dc350ee180533d2d1) chore: refactor group gen process - [`e75d8f2`](https://github.com/AppFlowy-IO/AppFlowy/commit/e75d8f22c8e9cb179ece02a1e20b89d4eee065e7) chore: add edit field type option helper - [`bb7cddc`](https://github.com/AppFlowy-IO/AppFlowy/commit/bb7cddc7f7b07a6b9ac3affb06b6ef4e125fa7c0) chore: reload group when group by new field - [`e73f143`](https://github.com/AppFlowy-IO/AppFlowy/commit/e73f1438f7abd3ea8d512ecf034ae187c027c5cc) chore: config switch group field UI - [`b3e5bb0`](https://github.com/AppFlowy-IO/AppFlowy/commit/b3e5bb00ace27ef38cbd4366c0ef2fd342430202) chore: config switch group field UI - [`f57ba8b`](https://github.com/AppFlowy-IO/AppFlowy/commit/f57ba8b9a82c70def50b5eed5b211c22b9e21090) chore: read setting - [`54d6f37`](https://github.com/AppFlowy-IO/AppFlowy/commit/54d6f3709e38ff378431f8733bfcecdd112a796c) chore: replace FieldPB with GridField - [`4f8e012`](https://github.com/AppFlowy-IO/AppFlowy/commit/4f8e012d543e9aa3f144a7a862054882889fe51a) chore: fix bugs when switch group field ### 📊 Changes **99 files changed** (+1974 additions, -1241 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/assets/images/grid/setting/group.svg` (+7 -0) 📝 `frontend/app_flowy/assets/translations/en.json` (+2 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+36 -19) 📝 `frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart` (+44 -49) 📝 `frontend/app_flowy/lib/plugins/board/application/board_listener.dart` (+24 -8) 📝 `frontend/app_flowy/lib/plugins/board/application/card/board_date_cell_bloc.dart` (+3 -7) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+5 -5) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart` (+5 -5) 📝 `frontend/app_flowy/lib/plugins/board/application/toolbar/board_setting_bloc.dart` (+1 -0) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+11 -11) 📝 `frontend/app_flowy/lib/plugins/board/presentation/toolbar/board_setting.dart` (+16 -5) 📝 `frontend/app_flowy/lib/plugins/board/presentation/toolbar/board_toolbar.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart` (+13 -12) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart` (+6 -6) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/date_cal_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/date_cell_bloc.dart` (+3 -7) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart` (+1 -1) ➖ `frontend/app_flowy/lib/plugins/grid/application/field/field_cache.dart` (+0 -192) ➕ `frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart` (+281 -0) _...and 79 more files_ </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 21:37:58 +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#4471
No description provided.