[PR #1570] [MERGED] Feat/grid sort #4827

Closed
opened 2026-03-23 22:16:00 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: feat/grid_sort


📝 Commits (7)

  • 07ebb0c refactor: refresh rows
  • 0cf0b29 chore: hide the grid blocks from Dart
  • 6b4291c chore: config sort controller
  • 1ac1fab chore: add suffix PB to filter structs
  • e141e7e chore: add cell cmp trait
  • 9ba17e0 refactor: type option impl trait
  • 31458e8 fix: potential test timeout

📊 Changes

110 files changed (+1843 additions, -1259 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+1 -3)
📝 frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart (+30 -51)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+1 -2)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+1 -1)
frontend/app_flowy/lib/plugins/grid/application/block/block_listener.dart (+0 -53)
📝 frontend/app_flowy/lib/plugins/grid/application/field/grid_listener.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/checkbox_filter_editor_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/checklist_filter_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/filter_create_bloc.dart (+8 -8)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/filter_service.dart (+11 -9)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/select_option_filter_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/text_filter_editor_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/grid_bloc.dart (+1 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/grid_data_controller.dart (+15 -49)
📝 frontend/app_flowy/lib/plugins/grid/application/grid_service.dart (+0 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_action_sheet_bloc.dart (+1 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_bloc.dart (+1 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart (+10 -7)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_list.dart (+1 -1)

...and 80 more files

📄 Description

  1. Implement the grid's sort interface in the backend
  2. Refactor some traits name
  3. Hide block concepts from the frontend
  4. Add missing PB suffix to rust structs

🔄 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/1570 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 12/12/2022 **Status:** ✅ Merged **Merged:** 12/12/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/grid_sort` --- ### 📝 Commits (7) - [`07ebb0c`](https://github.com/AppFlowy-IO/AppFlowy/commit/07ebb0cb956f292e6438a138441396483ac0b8f2) refactor: refresh rows - [`0cf0b29`](https://github.com/AppFlowy-IO/AppFlowy/commit/0cf0b29721b3f94661e2fd25152f256b65d4b936) chore: hide the grid blocks from Dart - [`6b4291c`](https://github.com/AppFlowy-IO/AppFlowy/commit/6b4291ccc7934d84f4e6d55942919b0716bc6bbc) chore: config sort controller - [`1ac1fab`](https://github.com/AppFlowy-IO/AppFlowy/commit/1ac1fabb6eee28cd5600a740da70db5749594065) chore: add suffix PB to filter structs - [`e141e7e`](https://github.com/AppFlowy-IO/AppFlowy/commit/e141e7ee637343bad43d31d6c0da81dfc8ff6637) chore: add cell cmp trait - [`9ba17e0`](https://github.com/AppFlowy-IO/AppFlowy/commit/9ba17e004eec65fc10a092093b2a4db085dca237) refactor: type option impl trait - [`31458e8`](https://github.com/AppFlowy-IO/AppFlowy/commit/31458e817a2a094a67f2d77ca8553d4c80f4a1d1) fix: potential test timeout ### 📊 Changes **110 files changed** (+1843 additions, -1259 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+1 -3) 📝 `frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart` (+30 -51) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+1 -2) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_data_controller.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+1 -1) ➖ `frontend/app_flowy/lib/plugins/grid/application/block/block_listener.dart` (+0 -53) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/grid_listener.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/checkbox_filter_editor_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/checklist_filter_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/filter_create_bloc.dart` (+8 -8) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/filter_service.dart` (+11 -9) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/select_option_filter_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/text_filter_editor_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/grid_bloc.dart` (+1 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/grid_data_controller.dart` (+15 -49) 📝 `frontend/app_flowy/lib/plugins/grid/application/grid_service.dart` (+0 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_action_sheet_bloc.dart` (+1 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_bloc.dart` (+1 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart` (+10 -7) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_list.dart` (+1 -1) _...and 80 more files_ </details> ### 📄 Description 1. Implement the grid's sort interface in the backend 2. Refactor some traits name 3. Hide block concepts from the frontend 4. Add missing PB suffix to rust structs --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:16:00 +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#4827
No description provided.