[PR #496] [MERGED] Feature: time format #4152

Closed
opened 2026-03-23 21:36:32 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: feat_time_format


📝 Commits (10+)

  • 13cb7ee chore: add get type option data handler
  • f21ca6c refactor: CellCalendar with bloc
  • f617a04 refactor: cell with origin data
  • d384115 chore: config caladen ui
  • 81d7514 chore: update typeOption data
  • a2dfc8b chore: set time
  • 19da42f chore: add date cell handler
  • 6fb163b refactor: customize cell data persistence
  • a178546 chore: save date cell data with time
  • 4f9470b chore: add date type option test

📊 Changes

84 files changed (+4343 additions, -1581 deletions)

View changed files

📝 frontend/app_flowy/assets/images/grid/clock.svg (+0 -0)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+6 -6)
frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart (+0 -375)
frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart (+73 -0)
frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart (+182 -0)
frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_cache.dart (+109 -0)
frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_loader.dart (+112 -0)
frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_persistence.dart (+69 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart (+2 -2)
frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart (+221 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart (+26 -34)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart (+15 -44)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart (+1 -4)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_action_sheet_bloc.dart (+6 -6)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_editor_bloc.dart (+8 -5)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_service.dart (+41 -16)

...and 64 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/496 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/12/2022 **Status:** ✅ Merged **Merged:** 5/14/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat_time_format` --- ### 📝 Commits (10+) - [`13cb7ee`](https://github.com/AppFlowy-IO/AppFlowy/commit/13cb7eeb249c8f4ca58babc52d4e48e49b3c2d24) chore: add get type option data handler - [`f21ca6c`](https://github.com/AppFlowy-IO/AppFlowy/commit/f21ca6c52a50bdf2d86075a13713eaeb7ab8fb4c) refactor: CellCalendar with bloc - [`f617a04`](https://github.com/AppFlowy-IO/AppFlowy/commit/f617a0490021a40ecf5a4ef68d7aac0c2fbb41b1) refactor: cell with origin data - [`d384115`](https://github.com/AppFlowy-IO/AppFlowy/commit/d3841154a578d6730d18085b05b3582bc5695481) chore: config caladen ui - [`81d7514`](https://github.com/AppFlowy-IO/AppFlowy/commit/81d75147d5323bbb6e5c3d15587fa569711f598a) chore: update typeOption data - [`a2dfc8b`](https://github.com/AppFlowy-IO/AppFlowy/commit/a2dfc8bc0378b03a8f7ae22312df6d9a937e853e) chore: set time - [`19da42f`](https://github.com/AppFlowy-IO/AppFlowy/commit/19da42f2104d617112bbe6ad67b87a17ff9902c2) chore: add date cell handler - [`6fb163b`](https://github.com/AppFlowy-IO/AppFlowy/commit/6fb163b29656068f8560c47056e154b72a399732) refactor: customize cell data persistence - [`a178546`](https://github.com/AppFlowy-IO/AppFlowy/commit/a178546acdcd6844ac98fc06521bd299a9955810) chore: save date cell data with time - [`4f9470b`](https://github.com/AppFlowy-IO/AppFlowy/commit/4f9470b076c3b47a2f68b48ae1aa55f3ad543029) chore: add date type option test ### 📊 Changes **84 files changed** (+4343 additions, -1581 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/assets/images/grid/clock.svg` (+0 -0) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+6 -6) ➖ `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart` (+0 -375) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart` (+73 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart` (+182 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_cache.dart` (+109 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_loader.dart` (+112 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_persistence.dart` (+69 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart` (+2 -2) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart` (+221 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart` (+26 -34) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart` (+15 -44) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart` (+1 -4) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_action_sheet_bloc.dart` (+6 -6) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_cell_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_editor_bloc.dart` (+8 -5) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_service.dart` (+41 -16) _...and 64 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 21:36:32 +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#4152
No description provided.