[PR #3854] [MERGED] feat: add new group #5915

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3854
Author: @richardshiue
Created: 11/1/2023
Status: Merged
Merged: 11/6/2023
Merged by: @appflowy

Base: mainHead: create-new-stack


📝 Commits (10+)

  • 5808890 feat: implement backend logic
  • efea14d fix: did_create_row not working properly
  • d09f43b fix: did_delete_group not working properly
  • 9baf4cc fix: test
  • 104c28f chore: fix clippy
  • 26bd736 chore: merge remote-tracking branch 'upstream/main' into create-new-stack
  • 72bb438 fix: new card not editable and in wrong position
  • 9cf9c65 feat: imlement UI for add new stack
  • 857a7ae test: add integration test
  • a24a36d chore: i18n

📊 Changes

28 files changed (+674 additions, -138 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/board/board_row_test.dart (+54 -0)
📝 frontend/appflowy_flutter/integration_test/util/database_test_op.dart (+80 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/group/group_service.dart (+11 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart (+113 -4)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
frontend/resources/flowy_icons/24x/close_filled.svg (+3 -0)
📝 frontend/resources/translations/en.json (+2 -1)
📝 frontend/rust-lib/event-integration/tests/database/local_test/group_test.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/entities/group_entities/group.rs (+33 -0)
📝 frontend/rust-lib/flowy-database2/src/event_handler.rs (+14 -0)
📝 frontend/rust-lib/flowy-database2/src/event_map.rs (+4 -0)
📝 frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs (+7 -1)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs (+55 -36)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/selection_type_option/select_type_option.rs (+14 -2)
📝 frontend/rust-lib/flowy-database2/src/services/group/action.rs (+70 -17)
📝 frontend/rust-lib/flowy-database2/src/services/group/configuration.rs (+2 -1)
📝 frontend/rust-lib/flowy-database2/src/services/group/controller.rs (+67 -14)
📝 frontend/rust-lib/flowy-database2/src/services/group/controller_impls/checkbox_controller.rs (+3 -9)

...and 8 more files

📄 Description

https://github.com/AppFlowy-IO/AppFlowy/assets/71320345/98b517c6-6bcd-45db-92aa-ee84f2384e94


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/3854 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 11/1/2023 **Status:** ✅ Merged **Merged:** 11/6/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `create-new-stack` --- ### 📝 Commits (10+) - [`5808890`](https://github.com/AppFlowy-IO/AppFlowy/commit/58088907abd12b2d061da6312a70c667af8a41a7) feat: implement backend logic - [`efea14d`](https://github.com/AppFlowy-IO/AppFlowy/commit/efea14d7bc8dd804e4203ff68c4c168a3852b422) fix: did_create_row not working properly - [`d09f43b`](https://github.com/AppFlowy-IO/AppFlowy/commit/d09f43bd8d7812bfd80daf558b0fa7af15ae903e) fix: did_delete_group not working properly - [`9baf4cc`](https://github.com/AppFlowy-IO/AppFlowy/commit/9baf4cc3d0cbc68b292d021e746231f6b6813395) fix: test - [`104c28f`](https://github.com/AppFlowy-IO/AppFlowy/commit/104c28f121914ac77203cf1c3d2b8eeb233e1f25) chore: fix clippy - [`26bd736`](https://github.com/AppFlowy-IO/AppFlowy/commit/26bd73691a267d5db98654b71eb40b0b62b39813) chore: merge remote-tracking branch 'upstream/main' into create-new-stack - [`72bb438`](https://github.com/AppFlowy-IO/AppFlowy/commit/72bb43880b1c1e298c55d354e4bac40f15dabf04) fix: new card not editable and in wrong position - [`9cf9c65`](https://github.com/AppFlowy-IO/AppFlowy/commit/9cf9c65e4f605cd694dc81d2da8a97e8e9264feb) feat: imlement UI for add new stack - [`857a7ae`](https://github.com/AppFlowy-IO/AppFlowy/commit/857a7ae4369630a9b471c4916ab7e5e44530a30f) test: add integration test - [`a24a36d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a24a36d15643cd4febae5c0f5227f084587a9750) chore: i18n ### 📊 Changes **28 files changed** (+674 additions, -138 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/board/board_row_test.dart` (+54 -0) 📝 `frontend/appflowy_flutter/integration_test/util/database_test_op.dart` (+80 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/group/group_service.dart` (+11 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart` (+113 -4) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) ➕ `frontend/resources/flowy_icons/24x/close_filled.svg` (+3 -0) 📝 `frontend/resources/translations/en.json` (+2 -1) 📝 `frontend/rust-lib/event-integration/tests/database/local_test/group_test.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/entities/group_entities/group.rs` (+33 -0) 📝 `frontend/rust-lib/flowy-database2/src/event_handler.rs` (+14 -0) 📝 `frontend/rust-lib/flowy-database2/src/event_map.rs` (+4 -0) 📝 `frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs` (+7 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs` (+55 -36) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/selection_type_option/select_type_option.rs` (+14 -2) 📝 `frontend/rust-lib/flowy-database2/src/services/group/action.rs` (+70 -17) 📝 `frontend/rust-lib/flowy-database2/src/services/group/configuration.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/group/controller.rs` (+67 -14) 📝 `frontend/rust-lib/flowy-database2/src/services/group/controller_impls/checkbox_controller.rs` (+3 -9) _...and 8 more files_ </details> ### 📄 Description https://github.com/AppFlowy-IO/AppFlowy/assets/71320345/98b517c6-6bcd-45db-92aa-ee84f2384e94 --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:20:53 +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#5915
No description provided.