[PR #1459] [MERGED] Fix filter test #4752

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

📋 Pull Request Information

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

Base: mainHead: fix_filter_test


📝 Commits (5)

  • 4cd816e chore: move grid_view_editor.rs to view_editor folder
  • f1e6b25 chore: hide invisible rows
  • 5ca3ef3 fix: lock issue
  • 29e28a4 fix: flutter test potential failed
  • 8fdbb4d chore: separate group tests

📊 Changes

77 files changed (+1613 additions, -1421 deletions)

View changed files

📝 frontend/app_flowy/lib/core/grid_notification.dart (+14 -7)
📝 frontend/app_flowy/lib/plugins/board/application/board_listener.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+1 -0)
📝 frontend/app_flowy/lib/plugins/board/application/group_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+1 -0)
📝 frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/block/block_listener.dart (+7 -5)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/field/field_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/field/grid_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/filter_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/filter_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart (+58 -28)
📝 frontend/app_flowy/lib/plugins/grid/application/row/row_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/setting/setting_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/trash/application/trash_listener.dart (+7 -4)
📝 frontend/app_flowy/test/bloc_test/board_test/create_card_test.dart (+3 -2)
📝 frontend/app_flowy/test/bloc_test/board_test/create_or_edit_field_test.dart (+17 -15)
frontend/app_flowy/test/bloc_test/board_test/group_by_checkbox_field_test.dart (+45 -0)
frontend/app_flowy/test/bloc_test/board_test/group_by_field_test.dart (+0 -231)

...and 57 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/1459 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 11/17/2022 **Status:** ✅ Merged **Merged:** 11/17/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_filter_test` --- ### 📝 Commits (5) - [`4cd816e`](https://github.com/AppFlowy-IO/AppFlowy/commit/4cd816ef062dbe8290c1d829f31a98114e89b812) chore: move grid_view_editor.rs to view_editor folder - [`f1e6b25`](https://github.com/AppFlowy-IO/AppFlowy/commit/f1e6b25e47a1acc745dee7de51b42018285359ec) chore: hide invisible rows - [`5ca3ef3`](https://github.com/AppFlowy-IO/AppFlowy/commit/5ca3ef304aec40a676e873a5895a37aee27b7416) fix: lock issue - [`29e28a4`](https://github.com/AppFlowy-IO/AppFlowy/commit/29e28a4b144830fd053b5ef220bcc9119cec79a9) fix: flutter test potential failed - [`8fdbb4d`](https://github.com/AppFlowy-IO/AppFlowy/commit/8fdbb4db104c45a3c47ceb41120977d9ed855cf0) chore: separate group tests ### 📊 Changes **77 files changed** (+1613 additions, -1421 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/core/grid_notification.dart` (+14 -7) 📝 `frontend/app_flowy/lib/plugins/board/application/board_listener.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+1 -0) 📝 `frontend/app_flowy/lib/plugins/board/application/group_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+1 -0) 📝 `frontend/app_flowy/lib/plugins/grid/application/block/block_cache.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/block/block_listener.dart` (+7 -5) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/field_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/grid_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/filter_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/filter_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_cache.dart` (+58 -28) 📝 `frontend/app_flowy/lib/plugins/grid/application/row/row_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/setting/setting_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/trash/application/trash_listener.dart` (+7 -4) 📝 `frontend/app_flowy/test/bloc_test/board_test/create_card_test.dart` (+3 -2) 📝 `frontend/app_flowy/test/bloc_test/board_test/create_or_edit_field_test.dart` (+17 -15) ➕ `frontend/app_flowy/test/bloc_test/board_test/group_by_checkbox_field_test.dart` (+45 -0) ➖ `frontend/app_flowy/test/bloc_test/board_test/group_by_field_test.dart` (+0 -231) _...and 57 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 22:15:40 +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#4752
No description provided.