[PR #1506] [MERGED] Feat/support checklist type #4781

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

📋 Pull Request Information

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

Base: mainHead: feat/support_checklist_type


📝 Commits (6)

  • b4671c1 feat: support checklist
  • 1ba2998 feat: implement checklist UI
  • 3cdd666 chore: config checklist cell
  • 29e0708 fix: checklist cell did get notified after the cell content change
  • a800e01 chore: config checklist board UI
  • d89a891 chore: remove textstyle ref

📊 Changes

75 files changed (+1295 additions, -85 deletions)

View changed files

📝 frontend/app_flowy/assets/translations/en.json (+4 -0)
📝 frontend/app_flowy/lib/plugins/board/application/group.dart (+0 -8)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+2 -0)
frontend/app_flowy/lib/plugins/board/presentation/card/board_checklist_cell.dart (+35 -0)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart (+6 -0)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart (+3 -0)
frontend/app_flowy/lib/plugins/grid/application/cell/checklist_cell_bloc.dart (+97 -0)
frontend/app_flowy/lib/plugins/grid/application/cell/checklist_cell_editor_bloc.dart (+194 -0)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_editor_bloc.dart (+2 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart (+10 -4)
📝 frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart (+3 -12)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_context.dart (+12 -0)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/filter_create_bloc.dart (+6 -0)
📝 frontend/app_flowy/lib/plugins/grid/application/filter/filter_service.dart (+17 -0)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/cell_builder.dart (+6 -0)
frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/checklist_cell/checklist_cell.dart (+87 -0)
frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/checklist_cell/checklist_cell_editor.dart (+182 -0)
frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/checklist_cell/checklist_prograss_bar.dart (+92 -0)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_cell.dart (+0 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_editor.dart (+0 -1)

...and 55 more files

📄 Description

Implement checklist type in Grid and board.


🔄 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/1506 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 11/29/2022 **Status:** ✅ Merged **Merged:** 11/30/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/support_checklist_type` --- ### 📝 Commits (6) - [`b4671c1`](https://github.com/AppFlowy-IO/AppFlowy/commit/b4671c1d997e209a6dee8a493680d6f41787c5d8) feat: support checklist - [`1ba2998`](https://github.com/AppFlowy-IO/AppFlowy/commit/1ba299815ec9bee9e19c32b21635fc89e2994f6c) feat: implement checklist UI - [`3cdd666`](https://github.com/AppFlowy-IO/AppFlowy/commit/3cdd6665b33cc886d08fa9791218fafafba0ef30) chore: config checklist cell - [`29e0708`](https://github.com/AppFlowy-IO/AppFlowy/commit/29e07089cac3fc65ef231892030a7566b6d86331) fix: checklist cell did get notified after the cell content change - [`a800e01`](https://github.com/AppFlowy-IO/AppFlowy/commit/a800e01f0b8d2320c9d5b25986eb9bdf95583db1) chore: config checklist board UI - [`d89a891`](https://github.com/AppFlowy-IO/AppFlowy/commit/d89a89131ee43702a88d4fa477d88ef6f060424f) chore: remove textstyle ref ### 📊 Changes **75 files changed** (+1295 additions, -85 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/assets/translations/en.json` (+4 -0) 📝 `frontend/app_flowy/lib/plugins/board/application/group.dart` (+0 -8) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+2 -0) ➕ `frontend/app_flowy/lib/plugins/board/presentation/card/board_checklist_cell.dart` (+35 -0) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart` (+6 -0) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_controller.dart` (+3 -0) ➕ `frontend/app_flowy/lib/plugins/grid/application/cell/checklist_cell_bloc.dart` (+97 -0) ➕ `frontend/app_flowy/lib/plugins/grid/application/cell/checklist_cell_editor_bloc.dart` (+194 -0) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_editor_bloc.dart` (+2 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart` (+10 -4) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart` (+3 -12) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_context.dart` (+12 -0) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/filter_create_bloc.dart` (+6 -0) 📝 `frontend/app_flowy/lib/plugins/grid/application/filter/filter_service.dart` (+17 -0) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/cell_builder.dart` (+6 -0) ➕ `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/checklist_cell/checklist_cell.dart` (+87 -0) ➕ `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/checklist_cell/checklist_cell_editor.dart` (+182 -0) ➕ `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/checklist_cell/checklist_prograss_bar.dart` (+92 -0) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_cell.dart` (+0 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_editor.dart` (+0 -1) _...and 55 more files_ </details> ### 📄 Description Implement checklist type in Grid and board. --- <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:48 +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#4781
No description provided.