[PR #619] [MERGED] Refactor/add pb suffix to grid struct/class #4244

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

📋 Pull Request Information

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

Base: mainHead: refactor/add_pb_suffix


📝 Commits (4)

  • 8073414 refactor: rename struct & add documentation
  • 3a0b8bb Merge branch 'main' into refactor/add_pb_suffix
  • 1bf0f0f chore: add suffix PB to rust struct
  • e45b149 chore: add suffix PB to dart class

📊 Changes

93 files changed (+895 additions, -911 deletions)

View changed files

📝 frontend/app_flowy/lib/core/grid_notification.dart (+1 -1)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/block/block_cache.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/block/block_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_loader.dart (+10 -10)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_persistence.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_field_notifier.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart (+4 -4)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart (+7 -7)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart (+6 -6)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart (+7 -7)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_cell_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_editor_bloc.dart (+11 -11)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart (+12 -12)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_editor_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_action_sheet_bloc.dart (+4 -4)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_editor_bloc.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_listener.dart (+2 -2)

...and 73 more files

📄 Description

Add PB suffix to protobuf type struct/class


🔄 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/619 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 7/17/2022 **Status:** ✅ Merged **Merged:** 7/17/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `refactor/add_pb_suffix` --- ### 📝 Commits (4) - [`8073414`](https://github.com/AppFlowy-IO/AppFlowy/commit/807341448549d674af385151c3bd08a84b2284be) refactor: rename struct & add documentation - [`3a0b8bb`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a0b8bbd745346fa67846f787cab2c548f4459d3) Merge branch 'main' into refactor/add_pb_suffix - [`1bf0f0f`](https://github.com/AppFlowy-IO/AppFlowy/commit/1bf0f0f875ab306c33942cdc42cfc037b2d1a1b1) chore: add suffix PB to rust struct - [`e45b149`](https://github.com/AppFlowy-IO/AppFlowy/commit/e45b14910b0be9042c83d3f891b4cc0451d85599) chore: add suffix PB to dart class ### 📊 Changes **93 files changed** (+895 additions, -911 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/core/grid_notification.dart` (+1 -1) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/block/block_cache.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/block/block_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_loader.dart` (+10 -10) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_persistence.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_field_notifier.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart` (+4 -4) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart` (+7 -7) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart` (+6 -6) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart` (+7 -7) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_cell_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_editor_bloc.dart` (+11 -11) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart` (+12 -12) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_editor_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_action_sheet_bloc.dart` (+4 -4) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_editor_bloc.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_listener.dart` (+2 -2) _...and 73 more files_ </details> ### 📄 Description Add PB suffix to protobuf type struct/class --- <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:56 +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#4244
No description provided.