[PR #446] [MERGED] Fix: grid data parser error #4137

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

📋 Pull Request Information

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

Base: mainHead: fix_data_error


📝 Commits (6)

  • 5db5fd1 chore: highlight cell when edit
  • 43095cb chore: close grid handler
  • 9d62941 chore: fix transform field type error
  • 2dd5930 fix: deserial cells data from delta error
  • f438898 fix: grid header refresh issue
  • 82840e1 chore: replace uuid with nanoid

📊 Changes

81 files changed (+2176 additions, -5527 deletions)

View changed files

📝 frontend/app_flowy/lib/workspace/application/doc/doc_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/cell_bloc/cell_service.dart (+2 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_service.dart (+0 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart (+10 -8)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_service.dart (+14 -4)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/grid_page.dart (+4 -6)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/date_cell.dart (+12 -5)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/number_cell.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_cell.dart (+13 -3)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_editor.dart (+7 -0)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_switcher.dart (+0 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_type_extension.dart (+1 -2)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_type_list.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/grid_header.dart (+1 -1)
📝 frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-grid/dart_event.dart (+1 -1)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/grid.pb.dart (+367 -13)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/grid.pbenum.dart (+27 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/grid.pbjson.dart (+58 -0)
frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/meta.pb.dart (+0 -1086)

...and 61 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/446 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/11/2022 **Status:** ✅ Merged **Merged:** 4/11/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_data_error` --- ### 📝 Commits (6) - [`5db5fd1`](https://github.com/AppFlowy-IO/AppFlowy/commit/5db5fd118e5e353bbf4c6ddad5ef5fecfd8c5fb8) chore: highlight cell when edit - [`43095cb`](https://github.com/AppFlowy-IO/AppFlowy/commit/43095cb0ddb3ccc2639ab762684644f137fb50e6) chore: close grid handler - [`9d62941`](https://github.com/AppFlowy-IO/AppFlowy/commit/9d629412c8ee4c9ec82963f8c302aac8f3bca80f) chore: fix transform field type error - [`2dd5930`](https://github.com/AppFlowy-IO/AppFlowy/commit/2dd59305603dc150a7baf6fcf265c447e1bef818) fix: deserial cells data from delta error - [`f438898`](https://github.com/AppFlowy-IO/AppFlowy/commit/f43889883102e4395fd02c2a440a222c0ea48655) fix: grid header refresh issue - [`82840e1`](https://github.com/AppFlowy-IO/AppFlowy/commit/82840e12015e325a19415b9caf02e72012eb1e9e) chore: replace uuid with nanoid ### 📊 Changes **81 files changed** (+2176 additions, -5527 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/workspace/application/doc/doc_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/cell_service.dart` (+2 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_service.dart` (+0 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart` (+10 -8) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_service.dart` (+14 -4) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/grid_page.dart` (+4 -6) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/date_cell.dart` (+12 -5) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/number_cell.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_cell.dart` (+13 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_editor.dart` (+7 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_switcher.dart` (+0 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_type_extension.dart` (+1 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_type_list.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/grid_header.dart` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-grid/dart_event.dart` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/grid.pb.dart` (+367 -13) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/grid.pbenum.dart` (+27 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/grid.pbjson.dart` (+58 -0) ➖ `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid-data-model/meta.pb.dart` (+0 -1086) _...and 61 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:28 +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#4137
No description provided.