[PR #925] [MERGED] Feat/edit card directly #4437

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

📋 Pull Request Information

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

Base: mainHead: feat/edit_card_directly


📝 Commits (4)

  • e42bfe0 chore: ignore dragtarget event when performing insert animation
  • 4e8308b chore: disable moving column
  • af3bfeb chore: become editing when creating a new card
  • 32a1bbb chore: optimize cell cache

📊 Changes

30 files changed (+271 additions, -107 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+14 -5)
📝 frontend/app_flowy/lib/plugins/board/application/card/board_text_cell_bloc.dart (+8 -0)
📝 frontend/app_flowy/lib/plugins/board/application/group_controller.dart (+6 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+2 -7)
frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart (+3 -0)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart (+35 -6)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart (+35 -15)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+26 -11)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart (+6 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_listener.dart (+4 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_cache.dart (+8 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/context_builder.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart (+2 -1)
📝 frontend/app_flowy/linux/flutter/generated_plugin_registrant.cc (+4 -0)
📝 frontend/app_flowy/linux/flutter/generated_plugins.cmake (+1 -0)
📝 frontend/app_flowy/macos/Flutter/GeneratedPluginRegistrant.swift (+2 -0)
📝 frontend/app_flowy/packages/appflowy_board/CHANGELOG.md (+4 -0)
📝 frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart (+48 -25)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/utils/log.dart (+2 -2)
📝 frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart (+9 -4)

...and 10 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/925 **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_card_directly` --- ### 📝 Commits (4) - [`e42bfe0`](https://github.com/AppFlowy-IO/AppFlowy/commit/e42bfe0b1eedc8530d1fbb931c40990f13efda75) chore: ignore dragtarget event when performing insert animation - [`4e8308b`](https://github.com/AppFlowy-IO/AppFlowy/commit/4e8308b8342565dcb343752ba87f5c221f06798c) chore: disable moving column - [`af3bfeb`](https://github.com/AppFlowy-IO/AppFlowy/commit/af3bfebb64c7ae6c189a1512524f99ae0c4e39c8) chore: become editing when creating a new card - [`32a1bbb`](https://github.com/AppFlowy-IO/AppFlowy/commit/32a1bbb6b949a232bcda0205cae52fee3993b3ce) chore: optimize cell cache ### 📊 Changes **30 files changed** (+271 additions, -107 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+14 -5) 📝 `frontend/app_flowy/lib/plugins/board/application/card/board_text_cell_bloc.dart` (+8 -0) 📝 `frontend/app_flowy/lib/plugins/board/application/group_controller.dart` (+6 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+2 -7) ➕ `frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart` (+3 -0) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart` (+35 -6) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart` (+35 -15) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+26 -11) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart` (+6 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_listener.dart` (+4 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_cache.dart` (+8 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/context_builder.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart` (+2 -1) 📝 `frontend/app_flowy/linux/flutter/generated_plugin_registrant.cc` (+4 -0) 📝 `frontend/app_flowy/linux/flutter/generated_plugins.cmake` (+1 -0) 📝 `frontend/app_flowy/macos/Flutter/GeneratedPluginRegistrant.swift` (+2 -0) 📝 `frontend/app_flowy/packages/appflowy_board/CHANGELOG.md` (+4 -0) 📝 `frontend/app_flowy/packages/appflowy_board/example/lib/multi_board_list_example.dart` (+48 -25) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/utils/log.dart` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_board/lib/src/widgets/board.dart` (+9 -4) _...and 10 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:48 +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#4437
No description provided.