[PR #574] [CLOSED] Feat/grid filter test #4207

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/574
Author: @appflowy
Created: 6/24/2022
Status: Closed

Base: mainHead: feat/grid_filter_test


📝 Commits (5)

  • 2f8defe fix: remove shared-lib cache files
  • aa3c018 chore: add grid filter test
  • 3196bd4 chore: delete/create filter
  • e80ba06 chore: update test
  • 157e732 refactor: fetch block data

📊 Changes

41 files changed (+1284 additions, -453 deletions)

View changed files

frontend/app_flowy/lib/workspace/application/grid/block/block_listener.dart (+90 -0)
frontend/app_flowy/lib/workspace/application/grid/block/block_service.dart (+0 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_cache.dart (+17 -17)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_loader.dart (+0 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_persistence.dart (+0 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart (+22 -3)
frontend/app_flowy/lib/workspace/application/grid/grid_listener.dart (+0 -42)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart (+25 -33)
📝 frontend/rust-lib/flowy-grid/src/event_handler.rs (+7 -12)
📝 frontend/rust-lib/flowy-grid/src/event_map.rs (+2 -2)
📝 frontend/rust-lib/flowy-grid/src/services/block_manager.rs (+15 -11)
📝 frontend/rust-lib/flowy-grid/src/services/grid_editor.rs (+16 -7)
📝 frontend/rust-lib/flowy-grid/src/services/mod.rs (+1 -0)
📝 frontend/rust-lib/flowy-grid/src/services/row/row_loader.rs (+4 -4)
frontend/rust-lib/flowy-grid/src/services/setting/mod.rs (+3 -0)
frontend/rust-lib/flowy-grid/src/services/setting/setting_builder.rs (+35 -0)
📝 frontend/rust-lib/flowy-grid/tests/grid/cell_test.rs (+1 -0)
📝 frontend/rust-lib/flowy-grid/tests/grid/field_test.rs (+1 -0)

...and 21 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/574 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 6/24/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/grid_filter_test` --- ### 📝 Commits (5) - [`2f8defe`](https://github.com/AppFlowy-IO/AppFlowy/commit/2f8defeb7dfaab972023765c4fe3b05b00746fc9) fix: remove shared-lib cache files - [`aa3c018`](https://github.com/AppFlowy-IO/AppFlowy/commit/aa3c018b5c14c902f992b0fac17bb526a6a51374) chore: add grid filter test - [`3196bd4`](https://github.com/AppFlowy-IO/AppFlowy/commit/3196bd45bd40bda7613ed470417b24a7af41950b) chore: delete/create filter - [`e80ba06`](https://github.com/AppFlowy-IO/AppFlowy/commit/e80ba0642185577be000eebfff2be944f8f51e0f) chore: update test - [`157e732`](https://github.com/AppFlowy-IO/AppFlowy/commit/157e732dc0272c133b7d67a9874cacb8ebacc9c9) refactor: fetch block data ### 📊 Changes **41 files changed** (+1284 additions, -453 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/lib/workspace/application/grid/block/block_listener.dart` (+90 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/block/block_service.dart` (+0 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_cache.dart` (+17 -17) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_loader.dart` (+0 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_data_persistence.dart` (+0 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart` (+22 -3) ➖ `frontend/app_flowy/lib/workspace/application/grid/grid_listener.dart` (+0 -42) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart` (+25 -33) 📝 `frontend/rust-lib/flowy-grid/src/event_handler.rs` (+7 -12) 📝 `frontend/rust-lib/flowy-grid/src/event_map.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-grid/src/services/block_manager.rs` (+15 -11) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_editor.rs` (+16 -7) 📝 `frontend/rust-lib/flowy-grid/src/services/mod.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/src/services/row/row_loader.rs` (+4 -4) ➕ `frontend/rust-lib/flowy-grid/src/services/setting/mod.rs` (+3 -0) ➕ `frontend/rust-lib/flowy-grid/src/services/setting/setting_builder.rs` (+35 -0) 📝 `frontend/rust-lib/flowy-grid/tests/grid/cell_test.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/tests/grid/field_test.rs` (+1 -0) _...and 21 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:47 +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#4207
No description provided.