[PR #463] [MERGED] Fix 0.0.4 bugs #4142

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/463
Author: @appflowy
Created: 4/25/2022
Status: Merged
Merged: 4/26/2022
Merged by: @appflowy

Base: mainHead: fix_0.0.4_bugs


📝 Commits (10+)

  • bf93376 fix: unselect option
  • fa70975 chore: reuse widget while inserting row
  • b0f5af6 chore: cache cell data
  • 5af378c chore: remove field listener in cell
  • ec16fbe chore: cache cell data
  • be49784 chore: refactor cell context
  • af5f42d chore: auto reload when field was changed
  • 6d38587 fix: bugs
  • cffd8fb fix: setup GridCellContext fieldOnchanged callback
  • 0ac17fa chore: replace row when row updated

📊 Changes

39 files changed (+1297 additions, -1252 deletions)

View changed files

📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+14 -14)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_listener.dart (+8 -8)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart (+289 -37)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart (+18 -41)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart (+18 -56)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart (+19 -59)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart (+36 -32)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart (+33 -58)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart (+33 -94)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart (+19 -54)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart (+5 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_listener.dart (+7 -6)
📝 frontend/app_flowy/lib/workspace/application/grid/field/grid_listenr.dart (+2 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart (+11 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_service.dart (+43 -27)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_bloc.dart (+8 -17)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_detail_bloc.dart (+9 -10)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart (+66 -54)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/grid_page.dart (+3 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart (+42 -10)

...and 19 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/463 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/25/2022 **Status:** ✅ Merged **Merged:** 4/26/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_0.0.4_bugs` --- ### 📝 Commits (10+) - [`bf93376`](https://github.com/AppFlowy-IO/AppFlowy/commit/bf93376cf39e588451900fd79b9dff5af135dc9d) fix: unselect option - [`fa70975`](https://github.com/AppFlowy-IO/AppFlowy/commit/fa7097587f81e9fee72c3b21f9628c358b631819) chore: reuse widget while inserting row - [`b0f5af6`](https://github.com/AppFlowy-IO/AppFlowy/commit/b0f5af679c404b7cebff0b01ad38233b5a3a429d) chore: cache cell data - [`5af378c`](https://github.com/AppFlowy-IO/AppFlowy/commit/5af378c81087f1093d3b623f31c39d940749bddf) chore: remove field listener in cell - [`ec16fbe`](https://github.com/AppFlowy-IO/AppFlowy/commit/ec16fbe551fd59066afa3c0fb9f64b6c7414b8ee) chore: cache cell data - [`be49784`](https://github.com/AppFlowy-IO/AppFlowy/commit/be49784f5aac8b19d38d9e63fc5c35b06698bfcd) chore: refactor cell context - [`af5f42d`](https://github.com/AppFlowy-IO/AppFlowy/commit/af5f42d296e395c2891107c881dffd3117eba9fb) chore: auto reload when field was changed - [`6d38587`](https://github.com/AppFlowy-IO/AppFlowy/commit/6d385877a94c648c7c2145fa248bac9476e495c1) fix: bugs - [`cffd8fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/cffd8fbec603c32acf5c23a94047cf13ca095e1b) fix: setup GridCellContext fieldOnchanged callback - [`0ac17fa`](https://github.com/AppFlowy-IO/AppFlowy/commit/0ac17fa6dfcb97c688e13c610bbf6fa5f56fe5af) chore: replace row when row updated ### 📊 Changes **39 files changed** (+1297 additions, -1252 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+14 -14) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_listener.dart` (+8 -8) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart` (+289 -37) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart` (+18 -41) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart` (+18 -56) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart` (+19 -59) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart` (+36 -32) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart` (+33 -58) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart` (+33 -94) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart` (+19 -54) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart` (+5 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_listener.dart` (+7 -6) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/grid_listenr.dart` (+2 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart` (+11 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_service.dart` (+43 -27) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_bloc.dart` (+8 -17) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_detail_bloc.dart` (+9 -10) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart` (+66 -54) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/grid_page.dart` (+3 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart` (+42 -10) _...and 19 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:36:29 +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#4142
No description provided.