[PR #2572] [MERGED] feat: created at and updated at field type #5308

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2572
Author: @zoli
Created: 5/20/2023
Status: Merged
Merged: 5/26/2023
Merged by: @appflowy

Base: developHead: feat/created-at-updated-at-property-develop


📝 Commits (10+)

  • 9132373 feat: created at and updated at field type
  • 83d291f style: context for rust asserts, change checks in flutter
  • 7fff250 fix: mistake in if condition
  • 8deb78b style: add comma end of array
  • 2467239 feat: created at and updated at field type
  • d49cc11 fix: typo in const variable
  • e0b14a8 style: cargo fmt
  • 65a74c2 chore: Merge branch 'develop' into feat/created-at-updated-at-property-develop
  • 8b7f45e refactor: opti cell insert
  • 4dd2242 Merge branch 'develop' into feat/created-at-updated-at-property-develop

📊 Changes

43 files changed (+598 additions, -188 deletions)

View changed files

📝 frontend/appflowy_flutter/assets/translations/en.json (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_controller_builder.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/database_controller.dart (+7 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/filter/filter_service.dart (+10 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/application/filter/filter_create_bloc.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/filter/filter_info.dart (+5 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/filter/filter_menu_item.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/field_type_extension.dart (+6 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/type_option/builder.dart (+4 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/card/card_cell_builder.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cell_builder.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/row_detail.dart (+2 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+10 -10)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/database/cell/controller_builder.ts (+2 -0)
📝 frontend/rust-lib/flowy-database2/src/entities/field_entities.rs (+14 -2)
📝 frontend/rust-lib/flowy-database2/src/entities/filter_entities/util.rs (+4 -2)
📝 frontend/rust-lib/flowy-database2/src/entities/macros.rs (+2 -0)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/date_entities.rs (+6 -1)
📝 frontend/rust-lib/flowy-database2/src/services/cell/cell_operation.rs (+24 -8)

...and 23 more files

📄 Description

This is continued from https://github.com/AppFlowy-IO/AppFlowy/pull/2478

Feature Preview

https://github.com/AppFlowy-IO/AppFlowy/assets/3286303/9707c500-c72a-4fea-a3d0-429b5b5ba3c0

Resolves #1668, #1669

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/2572 **Author:** [@zoli](https://github.com/zoli) **Created:** 5/20/2023 **Status:** ✅ Merged **Merged:** 5/26/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `develop` ← **Head:** `feat/created-at-updated-at-property-develop` --- ### 📝 Commits (10+) - [`9132373`](https://github.com/AppFlowy-IO/AppFlowy/commit/9132373f42a308f25c6f61849c8eca6f7e6e57db) feat: created at and updated at field type - [`83d291f`](https://github.com/AppFlowy-IO/AppFlowy/commit/83d291f8383523e84ad0371bf3261a130676af80) style: context for rust asserts, change checks in flutter - [`7fff250`](https://github.com/AppFlowy-IO/AppFlowy/commit/7fff2500e9193ccf894e11028b6ab8ec8af3c15b) fix: mistake in if condition - [`8deb78b`](https://github.com/AppFlowy-IO/AppFlowy/commit/8deb78b3cd0add082e5c8dc05a70538091b70e63) style: add comma end of array - [`2467239`](https://github.com/AppFlowy-IO/AppFlowy/commit/2467239c20d4b202cd31614376fae021aa6edc05) feat: created at and updated at field type - [`d49cc11`](https://github.com/AppFlowy-IO/AppFlowy/commit/d49cc1180fbb186da3c5936ae1fc90eeb26c19fa) fix: typo in const variable - [`e0b14a8`](https://github.com/AppFlowy-IO/AppFlowy/commit/e0b14a86167cd1bb5a3979dcb3fdaac66187cc59) style: cargo fmt - [`65a74c2`](https://github.com/AppFlowy-IO/AppFlowy/commit/65a74c203d82e27c1ce48a61c4746a7b86abcee3) chore: Merge branch 'develop' into feat/created-at-updated-at-property-develop - [`8b7f45e`](https://github.com/AppFlowy-IO/AppFlowy/commit/8b7f45ea74fa3c225fe538dfc64eff89d2b9001d) refactor: opti cell insert - [`4dd2242`](https://github.com/AppFlowy-IO/AppFlowy/commit/4dd2242f12e73672c175abce0beea49385cb691a) Merge branch 'develop' into feat/created-at-updated-at-property-develop ### 📊 Changes **43 files changed** (+598 additions, -188 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/cell/cell_controller_builder.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/database_controller.dart` (+7 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/filter/filter_service.dart` (+10 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/application/filter/filter_create_bloc.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/filter/filter_info.dart` (+5 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/filter/filter_menu_item.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/field_type_extension.dart` (+6 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/type_option/builder.dart` (+4 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/card/card_cell_builder.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cell_builder.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/row_detail.dart` (+2 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+10 -10) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/database/cell/controller_builder.ts` (+2 -0) 📝 `frontend/rust-lib/flowy-database2/src/entities/field_entities.rs` (+14 -2) 📝 `frontend/rust-lib/flowy-database2/src/entities/filter_entities/util.rs` (+4 -2) 📝 `frontend/rust-lib/flowy-database2/src/entities/macros.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/date_entities.rs` (+6 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/cell/cell_operation.rs` (+24 -8) _...and 23 more files_ </details> ### 📄 Description This is continued from https://github.com/AppFlowy-IO/AppFlowy/pull/2478 ### Feature Preview https://github.com/AppFlowy-IO/AppFlowy/assets/3286303/9707c500-c72a-4fea-a3d0-429b5b5ba3c0 Resolves #1668, #1669 #### PR Checklist - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [x] 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 22:18:09 +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#5308
No description provided.