[PR #867] [MERGED] feat: move card from one column to another #4402

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

📋 Pull Request Information

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

Base: mainHead: feat/move_card


📝 Commits (10+)

  • 3a27413 fix: row is not added into group when create a new row
  • f32068d refactor: move row params
  • c4514e4 chore: move card from one column to another
  • 4856a02 chore: Update row when moving row caused cell data changed
  • 3e4e867 fix: debounce causes save cell data fail
  • d3cd60e refactor: rename structs
  • af23e3e refactor: replace plugin type with layout type
  • 0680b20 chore: add group unit test
  • 3a7c381 chore: fix test error
  • da485c6 chore: add more test

📊 Changes

70 files changed (+1141 additions, -504 deletions)

View changed files

📝 frontend/.vscode/launch.json (+1 -1)
📝 frontend/app_flowy/lib/plugins/blank/blank.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+37 -6)
📝 frontend/app_flowy/lib/plugins/board/application/group_controller.dart (+16 -2)
📝 frontend/app_flowy/lib/plugins/board/board.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/doc/document.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_editor_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_service.dart (+20 -22)
📝 frontend/app_flowy/lib/plugins/grid/grid.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/number_cell.dart (+3 -6)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/text_cell.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/trash/menu.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/trash/trash.dart (+1 -1)
📝 frontend/app_flowy/lib/startup/plugin/plugin.dart (+21 -21)
📝 frontend/app_flowy/lib/startup/plugin/src/sandbox.dart (+13 -7)
📝 frontend/app_flowy/lib/workspace/application/app/app_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/app/app_service.dart (+2 -6)
📝 frontend/app_flowy/lib/workspace/application/menu/menu_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/view/view_ext.dart (+13 -0)

...and 50 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/867 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/17/2022 **Status:** ✅ Merged **Merged:** 8/19/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/move_card` --- ### 📝 Commits (10+) - [`3a27413`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a27413dfcbfe6c92503ca939321218f03037654) fix: row is not added into group when create a new row - [`f32068d`](https://github.com/AppFlowy-IO/AppFlowy/commit/f32068d64b7ca57674238f7ded17eef4181c754b) refactor: move row params - [`c4514e4`](https://github.com/AppFlowy-IO/AppFlowy/commit/c4514e421a775e3bfa33ac18380dea934a6071da) chore: move card from one column to another - [`4856a02`](https://github.com/AppFlowy-IO/AppFlowy/commit/4856a024a2a4f015ab57c02d53eb4d3f7e409d1f) chore: Update row when moving row caused cell data changed - [`3e4e867`](https://github.com/AppFlowy-IO/AppFlowy/commit/3e4e8679ce82f5e2b055521b53aefb6f609d5e9c) fix: debounce causes save cell data fail - [`d3cd60e`](https://github.com/AppFlowy-IO/AppFlowy/commit/d3cd60e527b663504f81396e3be764057020df6a) refactor: rename structs - [`af23e3e`](https://github.com/AppFlowy-IO/AppFlowy/commit/af23e3e8036cffe075fa2cfd988fb5e8790ac999) refactor: replace plugin type with layout type - [`0680b20`](https://github.com/AppFlowy-IO/AppFlowy/commit/0680b2057961bc7083273b7be735792cff8cf82e) chore: add group unit test - [`3a7c381`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a7c3815b02e14f3235a0aa8cd71c93e73de765d) chore: fix test error - [`da485c6`](https://github.com/AppFlowy-IO/AppFlowy/commit/da485c6df9800a2ebb1793d611c265a4e88413bc) chore: add more test ### 📊 Changes **70 files changed** (+1141 additions, -504 deletions) <details> <summary>View changed files</summary> 📝 `frontend/.vscode/launch.json` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/blank/blank.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+37 -6) 📝 `frontend/app_flowy/lib/plugins/board/application/group_controller.dart` (+16 -2) 📝 `frontend/app_flowy/lib/plugins/board/board.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/doc/document.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_editor_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_service.dart` (+20 -22) 📝 `frontend/app_flowy/lib/plugins/grid/grid.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/number_cell.dart` (+3 -6) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/text_cell.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/trash/menu.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/trash/trash.dart` (+1 -1) 📝 `frontend/app_flowy/lib/startup/plugin/plugin.dart` (+21 -21) 📝 `frontend/app_flowy/lib/startup/plugin/src/sandbox.dart` (+13 -7) 📝 `frontend/app_flowy/lib/workspace/application/app/app_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/app/app_service.dart` (+2 -6) 📝 `frontend/app_flowy/lib/workspace/application/menu/menu_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/view/view_ext.dart` (+13 -0) _...and 50 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:39 +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#4402
No description provided.