[PR #898] [MERGED] Feat/board update when field change #4415

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

📋 Pull Request Information

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

Base: mainHead: feat/board_update_when_field_change


📝 Commits (3)

  • f5f3f51 chore: update column name when field was changed
  • 82b44c2 chore: update board column name
  • a896637 fix: reload card content

📊 Changes

36 files changed (+682 additions, -302 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+34 -15)
📝 frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart (+34 -4)
frontend/app_flowy/lib/plugins/board/application/board_listener.dart (+50 -0)
📝 frontend/app_flowy/lib/plugins/board/application/group_controller.dart (+6 -6)
📝 frontend/app_flowy/lib/plugins/board/application/group_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+4 -4)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart (+7 -9)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+7 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_data_loader.dart (+16 -12)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/context_builder.dart (+2 -1)
📝 frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart (+24 -8)
📝 frontend/app_flowy/packages/appflowy_board/example/lib/single_board_list_example.dart (+10 -6)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart (+16 -4)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column.dart (+4 -4)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column_data.dart (+33 -3)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_data.dart (+17 -15)
📝 frontend/app_flowy/pubspec.lock (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/entities/block_entities.rs (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/entities/group_entities/group.rs (+12 -0)
📝 frontend/rust-lib/flowy-grid/src/entities/group_entities/group_changeset.rs (+37 -8)

...and 16 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/898 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/24/2022 **Status:** ✅ Merged **Merged:** 8/24/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/board_update_when_field_change` --- ### 📝 Commits (3) - [`f5f3f51`](https://github.com/AppFlowy-IO/AppFlowy/commit/f5f3f51cca280cd330482a4585a62897657b0371) chore: update column name when field was changed - [`82b44c2`](https://github.com/AppFlowy-IO/AppFlowy/commit/82b44c2c982f33ad7ad3cca73ca4daf8e2dabda3) chore: update board column name - [`a896637`](https://github.com/AppFlowy-IO/AppFlowy/commit/a896637eab991a9f6c176e78890f5b4cd5bb6016) fix: reload card content ### 📊 Changes **36 files changed** (+682 additions, -302 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+34 -15) 📝 `frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart` (+34 -4) ➕ `frontend/app_flowy/lib/plugins/board/application/board_listener.dart` (+50 -0) 📝 `frontend/app_flowy/lib/plugins/board/application/group_controller.dart` (+6 -6) 📝 `frontend/app_flowy/lib/plugins/board/application/group_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+4 -4) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart` (+7 -9) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+7 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_data_loader.dart` (+16 -12) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/context_builder.dart` (+2 -1) 📝 `frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart` (+24 -8) 📝 `frontend/app_flowy/packages/appflowy_board/example/lib/single_board_list_example.dart` (+10 -6) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart` (+16 -4) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column.dart` (+4 -4) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column_data.dart` (+33 -3) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_data.dart` (+17 -15) 📝 `frontend/app_flowy/pubspec.lock` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/entities/block_entities.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/entities/group_entities/group.rs` (+12 -0) 📝 `frontend/rust-lib/flowy-grid/src/entities/group_entities/group_changeset.rs` (+37 -8) _...and 16 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:42 +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#4415
No description provided.