[PR #4288] [MERGED] feat: reminder on date #6177

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4288
Author: @Xazin
Created: 1/2/2024
Status: Merged
Merged: 1/24/2024
Merged by: @Xazin

Base: mainHead: feat/reminder-on-date


📝 Commits (10+)

  • e12ab01 feat: support reminder on date
  • d36a453 feat: support reminder on date in database
  • 4196817 fix: include time static
  • 469774d chore: merge 'upstream/main' into feat/reminder-on-date
  • 867c0e9 fix: do not force unwrap
  • 3d3da1c chore: merge branch 'upstream/main' into feat/reminder-on-date
  • f2087fa chore: clean flutter code
  • 8a55b93 chore: merge branch 'upstream/main' into feat/reminder-on-date
  • ab95439 test: add test for reminder in database
  • 5684ad6 chore: merge branch 'upstream/main' into feat/reminder-on-date

📊 Changes

63 files changed (+2555 additions, -1314 deletions)

View changed files

frontend/appflowy_flutter/integration_test/database/database_reminder_test.dart (+122 -0)
📝 frontend/appflowy_flutter/integration_test/reminder/document_reminder_test.dart (+55 -4)
📝 frontend/appflowy_flutter/integration_test/util/common_operations.dart (+27 -0)
📝 frontend/appflowy_flutter/integration_test/util/database_test_op.dart (+21 -0)
📝 frontend/appflowy_flutter/integration_test/util/expectation.dart (+29 -0)
📝 frontend/appflowy_flutter/ios/Podfile.lock (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/application/mobile_router.dart (+6 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart (+17 -8)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/date_picker/mobile_date_picker_screen.dart (+69 -356)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/mobile_grid_screen.dart (+7 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_page.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/date_cell_service.dart (+6 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_page.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart (+85 -22)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/mobile_grid_page.dart (+46 -10)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/row/row.dart (+12 -9)
📝 frontend/appflowy_flutter/lib/plugins/database/tab_bar/desktop/tab_bar_header.dart (+3 -4)
📝 frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart (+39 -28)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/row/accessory/cell_accessory.dart (+8 -7)

...and 43 more files

📄 Description

Relates: #2216

Feature Preview

https://github.com/AppFlowy-IO/AppFlowy/assets/42929161/aba83db8-9536-4d28-ae3b-b22082a1a071


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/4288 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 1/2/2024 **Status:** ✅ Merged **Merged:** 1/24/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `feat/reminder-on-date` --- ### 📝 Commits (10+) - [`e12ab01`](https://github.com/AppFlowy-IO/AppFlowy/commit/e12ab0123419cce91bb84774929734e9cd60cd6c) feat: support reminder on date - [`d36a453`](https://github.com/AppFlowy-IO/AppFlowy/commit/d36a453b81f2791393599f6e84e7a2a7b296daa7) feat: support reminder on date in database - [`4196817`](https://github.com/AppFlowy-IO/AppFlowy/commit/41968171542f29a5972ff3e24d37007b72ec4acd) fix: include time static - [`469774d`](https://github.com/AppFlowy-IO/AppFlowy/commit/469774d2c6c440a90fced243887c844d36486d62) chore: merge 'upstream/main' into feat/reminder-on-date - [`867c0e9`](https://github.com/AppFlowy-IO/AppFlowy/commit/867c0e91e0f93cdd49c78d11f82157d70d10de46) fix: do not force unwrap - [`3d3da1c`](https://github.com/AppFlowy-IO/AppFlowy/commit/3d3da1c107fd7ac05bb51b39c7bd1957154ba59d) chore: merge branch 'upstream/main' into feat/reminder-on-date - [`f2087fa`](https://github.com/AppFlowy-IO/AppFlowy/commit/f2087fa9ccc07048b969fb8fdb08051f34cbcacc) chore: clean flutter code - [`8a55b93`](https://github.com/AppFlowy-IO/AppFlowy/commit/8a55b937fae8530d00fcafd049658f19c9065764) chore: merge branch 'upstream/main' into feat/reminder-on-date - [`ab95439`](https://github.com/AppFlowy-IO/AppFlowy/commit/ab95439e39169f516942b7cf371b3a2dc48596f7) test: add test for reminder in database - [`5684ad6`](https://github.com/AppFlowy-IO/AppFlowy/commit/5684ad6b403fd64ad6da4c92a798e78f2eaddf9c) chore: merge branch 'upstream/main' into feat/reminder-on-date ### 📊 Changes **63 files changed** (+2555 additions, -1314 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/integration_test/database/database_reminder_test.dart` (+122 -0) 📝 `frontend/appflowy_flutter/integration_test/reminder/document_reminder_test.dart` (+55 -4) 📝 `frontend/appflowy_flutter/integration_test/util/common_operations.dart` (+27 -0) 📝 `frontend/appflowy_flutter/integration_test/util/database_test_op.dart` (+21 -0) 📝 `frontend/appflowy_flutter/integration_test/util/expectation.dart` (+29 -0) 📝 `frontend/appflowy_flutter/ios/Podfile.lock` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/application/mobile_router.dart` (+6 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/mobile_view_page.dart` (+17 -8) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/date_picker/mobile_date_picker_screen.dart` (+69 -356) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/mobile_grid_screen.dart` (+7 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/notifications/mobile_notifications_page.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/date_cell_service.dart` (+6 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_page.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart` (+85 -22) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/mobile_grid_page.dart` (+46 -10) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/row/row.dart` (+12 -9) 📝 `frontend/appflowy_flutter/lib/plugins/database/tab_bar/desktop/tab_bar_header.dart` (+3 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database/tab_bar/tab_bar_view.dart` (+39 -28) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/row/accessory/cell_accessory.dart` (+8 -7) _...and 43 more files_ </details> ### 📄 Description Relates: #2216 ### Feature Preview https://github.com/AppFlowy-IO/AppFlowy/assets/42929161/aba83db8-9536-4d28-ae3b-b22082a1a071 --- <!--- 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) - [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:22:03 +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#6177
No description provided.