[PR #1452] [MERGED] Feat/filter date #4745

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

📋 Pull Request Information

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

Base: mainHead: feat/filter_date


📝 Commits (4)

  • 6aba344 chore: rename some pb structs
  • 0e137f1 chore: date with utc
  • c80fa5d chore: add date filter tests
  • 18c2098 chore: add select option tests

📊 Changes

45 files changed (+523 additions, -383 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_data_loader.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_data_persistence.dart (+8 -5)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart (+9 -9)
📝 frontend/app_flowy/lib/plugins/grid/application/field/field_action_sheet_bloc.dart (+3 -3)
📝 frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/field/field_service.dart (+4 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/field/grid_listener.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_context.dart (+7 -7)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_data_controller.dart (+2 -2)
📝 frontend/app_flowy/lib/plugins/grid/application/grid_service.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/prelude.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/setting/setting_service.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_type_option_editor.dart (+2 -2)
📝 frontend/app_flowy/test/bloc_test/board_test/group_by_field_test.dart (+1 -0)
📝 frontend/rust-lib/flowy-grid/src/entities/cell_entities.rs (+11 -11)
📝 frontend/rust-lib/flowy-grid/src/entities/field_entities.rs (+25 -37)
📝 frontend/rust-lib/flowy-grid/src/entities/filter_entities/date_filter.rs (+12 -55)
📝 frontend/rust-lib/flowy-grid/src/entities/setting_entities.rs (+2 -2)

...and 25 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/1452 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 11/14/2022 **Status:** ✅ Merged **Merged:** 11/14/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/filter_date` --- ### 📝 Commits (4) - [`6aba344`](https://github.com/AppFlowy-IO/AppFlowy/commit/6aba344583070bd07f6f74a8dcb991898d60fa34) chore: rename some pb structs - [`0e137f1`](https://github.com/AppFlowy-IO/AppFlowy/commit/0e137f12f559cc6b6b5a293739496ed073e26cdc) chore: date with utc - [`c80fa5d`](https://github.com/AppFlowy-IO/AppFlowy/commit/c80fa5da78b6b67e3ee0588962df32fa8360e18b) chore: add date filter tests - [`18c2098`](https://github.com/AppFlowy-IO/AppFlowy/commit/18c209848bc1dc4366c3243f46d5db46a6dbd035) chore: add select option tests ### 📊 Changes **45 files changed** (+523 additions, -383 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_data_loader.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_data_persistence.dart` (+8 -5) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart` (+9 -9) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/field_action_sheet_bloc.dart` (+3 -3) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/field_service.dart` (+4 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/grid_listener.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_context.dart` (+7 -7) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_data_controller.dart` (+2 -2) 📝 `frontend/app_flowy/lib/plugins/grid/application/grid_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/prelude.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/setting/setting_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_type_option_editor.dart` (+2 -2) 📝 `frontend/app_flowy/test/bloc_test/board_test/group_by_field_test.dart` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/src/entities/cell_entities.rs` (+11 -11) 📝 `frontend/rust-lib/flowy-grid/src/entities/field_entities.rs` (+25 -37) 📝 `frontend/rust-lib/flowy-grid/src/entities/filter_entities/date_filter.rs` (+12 -55) 📝 `frontend/rust-lib/flowy-grid/src/entities/setting_entities.rs` (+2 -2) _...and 25 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:38 +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#4745
No description provided.