[PR #6522] [MERGED] feat: open created filtered rows #7439

Closed
opened 2026-03-23 23:19:37 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6522
Author: @richardshiue
Created: 10/10/2024
Status: Merged
Merged: 10/11/2024
Merged by: @richardshiue

Base: mainHead: feat/open-created-filtered-rows


📝 Commits (10+)

  • 744e0f2 fix: revert previous implementation
  • 2fefa0a feat: open created but hidden rows as page
  • 2c559a6 fix: cargo clippy
  • 406045e test: add integration tests
  • 843a529 fix: typo
  • 8d57b21 fix: flutter analyzer
  • 98f1f09 chore: clean up code
  • bbbec31 chore: code cleanup
  • 4dd7836 chore: code cleanup
  • ba13d60 chore: merge remote-tracking branch 'upstream/main' into feat/open-created-filtered-rows

📊 Changes

28 files changed (+274 additions, -155 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/database/database_calendar_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_filter_test.dart (+34 -6)
📝 frontend/appflowy_flutter/integration_test/shared/database_test_op.dart (+18 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/application/defines.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/application/row/row_cache.dart (+13 -10)
📝 frontend/appflowy_flutter/lib/plugins/database/application/view/view_cache.dart (+1 -5)
📝 frontend/appflowy_flutter/lib/plugins/database/board/application/board_bloc.dart (+20 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart (+8 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/application/calendar_bloc.dart (+29 -5)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/application/unschedule_event_bloc.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_page.dart (+17 -4)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/application/grid_bloc.dart (+17 -15)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart (+46 -13)
📝 frontend/appflowy_flutter/pubspec.lock (+6 -6)
📝 frontend/rust-lib/flowy-database2/src/entities/filter_entities/relation_filter.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/entities/row_entities.rs (+6 -0)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs (+27 -19)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/checkbox_type_option/checkbox_filter.rs (+2 -5)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/checklist_type_option/checklist_filter.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/date_type_option/date_filter.rs (+2 -13)

...and 8 more files

📄 Description

Feature Preview


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/6522 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 10/10/2024 **Status:** ✅ Merged **Merged:** 10/11/2024 **Merged by:** [@richardshiue](https://github.com/richardshiue) **Base:** `main` ← **Head:** `feat/open-created-filtered-rows` --- ### 📝 Commits (10+) - [`744e0f2`](https://github.com/AppFlowy-IO/AppFlowy/commit/744e0f24e7ca02e23ab0ddeb5dcf253369bcd950) fix: revert previous implementation - [`2fefa0a`](https://github.com/AppFlowy-IO/AppFlowy/commit/2fefa0a3a521dccdbc7eb7d3b636bde1d0bd5af9) feat: open created but hidden rows as page - [`2c559a6`](https://github.com/AppFlowy-IO/AppFlowy/commit/2c559a60b7a1abed60bd99c4b321251ea0aac90f) fix: cargo clippy - [`406045e`](https://github.com/AppFlowy-IO/AppFlowy/commit/406045e2c7f0abb1905d21f6a99156c371722167) test: add integration tests - [`843a529`](https://github.com/AppFlowy-IO/AppFlowy/commit/843a529ace3bd5a313530ee150070d9c423ba727) fix: typo - [`8d57b21`](https://github.com/AppFlowy-IO/AppFlowy/commit/8d57b21a084284de618f5aa6d157a10f127577aa) fix: flutter analyzer - [`98f1f09`](https://github.com/AppFlowy-IO/AppFlowy/commit/98f1f091828d4419a676cfc044f7b036c4cf1342) chore: clean up code - [`bbbec31`](https://github.com/AppFlowy-IO/AppFlowy/commit/bbbec312055dbd097426b011a157b8224163dfee) chore: code cleanup - [`4dd7836`](https://github.com/AppFlowy-IO/AppFlowy/commit/4dd78366f6504999d07c2c5acea07c6524052661) chore: code cleanup - [`ba13d60`](https://github.com/AppFlowy-IO/AppFlowy/commit/ba13d6037566f8b93f06cc6451900e2db3335f34) chore: merge remote-tracking branch 'upstream/main' into feat/open-created-filtered-rows ### 📊 Changes **28 files changed** (+274 additions, -155 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_calendar_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_filter_test.dart` (+34 -6) 📝 `frontend/appflowy_flutter/integration_test/shared/database_test_op.dart` (+18 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/defines.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/row/row_cache.dart` (+13 -10) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/view/view_cache.dart` (+1 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/application/board_bloc.dart` (+20 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart` (+8 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/application/calendar_bloc.dart` (+29 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/application/unschedule_event_bloc.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_page.dart` (+17 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/application/grid_bloc.dart` (+17 -15) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart` (+46 -13) 📝 `frontend/appflowy_flutter/pubspec.lock` (+6 -6) 📝 `frontend/rust-lib/flowy-database2/src/entities/filter_entities/relation_filter.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/entities/row_entities.rs` (+6 -0) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs` (+27 -19) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/checkbox_type_option/checkbox_filter.rs` (+2 -5) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/checklist_type_option/checklist_filter.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/date_type_option/date_filter.rs` (+2 -13) _...and 8 more files_ </details> ### 📄 Description ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:19:37 +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#7439
No description provided.