[PR #920] [MERGED] Feat/edit create card #4434

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

📋 Pull Request Information

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

Base: mainHead: feat/edit_create_card


📝 Commits (8)

  • 9ce7fcb chore: edit create card
  • 6e0a191 chore: optimize rebuild column
  • aba0f94 chore: do not build the cell if its fieldId equal to the corresponding group field id
  • d616215 chore: scroll to bottom when create new card
  • 82c0006 chore: scroll to bottom after post frame
  • 4ead583 chore: save scroll pos
  • 60cf979 fix: optimize insert card
  • 61fb13e ci: fix warnings

📊 Changes

20 files changed (+617 additions, -230 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+79 -37)
📝 frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+41 -32)
📝 frontend/app_flowy/lib/plugins/board/application/group_controller.dart (+29 -12)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+72 -28)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart (+3 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+16 -4)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/row_detail.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart (+2 -2)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart (+119 -19)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column.dart (+15 -13)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_data.dart (+0 -1)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_state.dart (+58 -0)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_target.dart (+17 -6)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_target_interceptor.dart (+19 -18)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/reorder_flex.dart (+101 -12)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_phantom/phantom_controller.dart (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/services/grid_editor.rs (+25 -26)
📝 frontend/rust-lib/flowy-grid/src/services/grid_view_editor.rs (+5 -6)
📝 frontend/rust-lib/flowy-grid/src/services/grid_view_manager.rs (+13 -9)

📄 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/920 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/29/2022 **Status:** ✅ Merged **Merged:** 8/29/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/edit_create_card` --- ### 📝 Commits (8) - [`9ce7fcb`](https://github.com/AppFlowy-IO/AppFlowy/commit/9ce7fcb7046974889fa6482572270cb43e6fd4a9) chore: edit create card - [`6e0a191`](https://github.com/AppFlowy-IO/AppFlowy/commit/6e0a191be1b13b91bfca42a40f28772d8cd17bc2) chore: optimize rebuild column - [`aba0f94`](https://github.com/AppFlowy-IO/AppFlowy/commit/aba0f946dd24ec90c9c671130f6298f56bc582fb) chore: do not build the cell if its fieldId equal to the corresponding group field id - [`d616215`](https://github.com/AppFlowy-IO/AppFlowy/commit/d6162159aa2d621dc5b575f2bb69eaf385924e8d) chore: scroll to bottom when create new card - [`82c0006`](https://github.com/AppFlowy-IO/AppFlowy/commit/82c0006868dce79a29afd87465f30bb12815222d) chore: scroll to bottom after post frame - [`4ead583`](https://github.com/AppFlowy-IO/AppFlowy/commit/4ead583f6db88afb42894263d284910d9ffc61e7) chore: save scroll pos - [`60cf979`](https://github.com/AppFlowy-IO/AppFlowy/commit/60cf97969c37c6df7b632acb2ed3a240cc6489ba) fix: optimize insert card - [`61fb13e`](https://github.com/AppFlowy-IO/AppFlowy/commit/61fb13eba6cf9c2482bbc0cdec1692ec7d0821a5) ci: fix warnings ### 📊 Changes **20 files changed** (+617 additions, -230 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+79 -37) 📝 `frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+41 -32) 📝 `frontend/app_flowy/lib/plugins/board/application/group_controller.dart` (+29 -12) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+72 -28) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart` (+3 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+16 -4) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/row/row_detail.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart` (+119 -19) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_column/board_column.dart` (+15 -13) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board_data.dart` (+0 -1) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_state.dart` (+58 -0) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_target.dart` (+17 -6) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/drag_target_interceptor.dart` (+19 -18) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_flex/reorder_flex.dart` (+101 -12) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/reorder_phantom/phantom_controller.dart` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_editor.rs` (+25 -26) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_view_editor.rs` (+5 -6) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_view_manager.rs` (+13 -9) </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:47 +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#4434
No description provided.