[PR #846] [MERGED] Feat/board create card #4382

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

📋 Pull Request Information

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

Base: mainHead: feat/board_create_card


📝 Commits (6)

  • 57ede79 refactor: remove UpdateRowPB, refactor RowInfo class
  • dc53cb0 chore: create the default group for the rows that are not belong to any groups
  • f0914cd chore: add group action handler to intercept the create row progress
  • 43eaa27 chore: insert cell content when creating card
  • 24ca8da chore: add create card notification
  • 445d5f6 chore: disable create board

📊 Changes

38 files changed (+748 additions, -394 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+20 -4)
📝 frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart (+22 -33)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+17 -7)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+6 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_container.dart (+5 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/grid_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/grid_data_controller.dart (+4 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/grid_service.dart (+10 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_action_sheet_bloc.dart (+5 -5)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_bloc.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart (+47 -45)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_data_controller.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/grid/presentation/grid_page.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/grid_row.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/row_action_sheet.dart (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/dart_notification.rs (+1 -0)
📝 frontend/rust-lib/flowy-grid/src/entities/block_entities.rs (+8 -41)

...and 18 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/846 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/14/2022 **Status:** ✅ Merged **Merged:** 8/14/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/board_create_card` --- ### 📝 Commits (6) - [`57ede79`](https://github.com/AppFlowy-IO/AppFlowy/commit/57ede798d83b4f7488c2754e9cae6a3f3a643e4c) refactor: remove UpdateRowPB, refactor RowInfo class - [`dc53cb0`](https://github.com/AppFlowy-IO/AppFlowy/commit/dc53cb00dd1c209867db62623ab2505c7821d4dc) chore: create the default group for the rows that are not belong to any groups - [`f0914cd`](https://github.com/AppFlowy-IO/AppFlowy/commit/f0914cd6f1c343d14051cdc2e436ebbdc04e1612) chore: add group action handler to intercept the create row progress - [`43eaa27`](https://github.com/AppFlowy-IO/AppFlowy/commit/43eaa2748d45532d94765581427c670df6e1028b) chore: insert cell content when creating card - [`24ca8da`](https://github.com/AppFlowy-IO/AppFlowy/commit/24ca8da8c82bf4ad6e246ddd1c9dc76a9ac0db0e) chore: add create card notification - [`445d5f6`](https://github.com/AppFlowy-IO/AppFlowy/commit/445d5f6222437cbb6c911d3b0be1a9f24db06bb0) chore: disable create board ### 📊 Changes **38 files changed** (+748 additions, -394 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+20 -4) 📝 `frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart` (+22 -33) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+17 -7) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+6 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_container.dart` (+5 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/grid_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/grid_data_controller.dart` (+4 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/grid_service.dart` (+10 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_action_sheet_bloc.dart` (+5 -5) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_bloc.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart` (+47 -45) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_data_controller.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/grid_page.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/grid_row.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/row_action_sheet.dart` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/dart_notification.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/src/entities/block_entities.rs` (+8 -41) _...and 18 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:33 +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#4382
No description provided.