[PR #3907] [MERGED] feat: hidden kanban groups #5942

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3907
Author: @richardshiue
Created: 11/9/2023
Status: Merged
Merged: 11/13/2023
Merged by: @appflowy

Base: mainHead: test-mathias-alternate-fix


📝 Commits (10+)

  • 0ba13c1 feat: hide/unhide ui
  • 49a7a8a chore: implement collapsible side bar and adjust group header (#2)
  • 926e97e refactor: hidden columns into own file
  • 17cdd79 chore: adjust new group button position
  • 503e617 fix: flowy icon buton secondary color bleed
  • c57e986 chore: some UI adjustments
  • 4d9a87c fix: some regressions
  • b0c566e chore: proper group is_visible fetching
  • 97b2d85 chore: use a bloc to manage hidden groups
  • e6ca940 fix: hiding groups not working

📊 Changes

35 files changed (+1196 additions, -745 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/board/board_add_row_test.dart (+7 -4)
frontend/appflowy_flutter/integration_test/board/board_hide_groups_test.dart (+98 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart (+235 -95)
frontend/appflowy_flutter/lib/plugins/database_view/board/application/group.dart (+0 -12)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/application/group_controller.dart (+32 -13)
frontend/appflowy_flutter/lib/plugins/database_view/board/application/ungrouped_items_bloc.dart (+0 -112)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart (+97 -124)
frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/ungrouped_items_button.dart (+0 -237)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/widgets/board_column_header.dart (+117 -66)
frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/widgets/board_hidden_groups.dart (+483 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/application/grid_header_bloc.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/layout/sizes.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/field_type_extension.dart (+6 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/tar_bar/tab_bar_view.dart (+3 -6)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart (+1 -0)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/lib/style_widget/icon_button.dart (+4 -9)
📝 frontend/appflowy_flutter/pubspec.lock (+3 -3)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
📝 frontend/appflowy_flutter/test/bloc_test/board_test/group_by_multi_select_field_test.dart (+3 -3)
frontend/resources/flowy_icons/16x/hamburger_s.svg (+7 -0)

...and 15 more files

📄 Description

resolves https://github.com/AppFlowy-IO/AppFlowy/issues/3818

https://github.com/AppFlowy-IO/AppFlowy/assets/71320345/76dcec09-4f0f-408c-ba88-67dab358deec

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/3907 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 11/9/2023 **Status:** ✅ Merged **Merged:** 11/13/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `test-mathias-alternate-fix` --- ### 📝 Commits (10+) - [`0ba13c1`](https://github.com/AppFlowy-IO/AppFlowy/commit/0ba13c180ab60ad0fc81552ad19041bb7c1af162) feat: hide/unhide ui - [`49a7a8a`](https://github.com/AppFlowy-IO/AppFlowy/commit/49a7a8a9923dfb93e6061408d8dd8a55438b0bb6) chore: implement collapsible side bar and adjust group header (#2) - [`926e97e`](https://github.com/AppFlowy-IO/AppFlowy/commit/926e97e46b0173e33ede7eb802a7ced58054efe7) refactor: hidden columns into own file - [`17cdd79`](https://github.com/AppFlowy-IO/AppFlowy/commit/17cdd799e00a608a936addb1cd4fe1b3503fc04c) chore: adjust new group button position - [`503e617`](https://github.com/AppFlowy-IO/AppFlowy/commit/503e6176f1d1c5b1c15f9f57677c459e8cc3e5ab) fix: flowy icon buton secondary color bleed - [`c57e986`](https://github.com/AppFlowy-IO/AppFlowy/commit/c57e9860509805982fdb570c3864bc9e65e37d90) chore: some UI adjustments - [`4d9a87c`](https://github.com/AppFlowy-IO/AppFlowy/commit/4d9a87c1f88357a04d8dd31976ea2f98441c08a4) fix: some regressions - [`b0c566e`](https://github.com/AppFlowy-IO/AppFlowy/commit/b0c566e6e66013a72c40df0cf3952b7ba38fdf78) chore: proper group is_visible fetching - [`97b2d85`](https://github.com/AppFlowy-IO/AppFlowy/commit/97b2d85a7245a7113c76b9eb035c75659a44b71e) chore: use a bloc to manage hidden groups - [`e6ca940`](https://github.com/AppFlowy-IO/AppFlowy/commit/e6ca940597554110a7b7e5f1a6225e6ea7ea32be) fix: hiding groups not working ### 📊 Changes **35 files changed** (+1196 additions, -745 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/board/board_add_row_test.dart` (+7 -4) ➕ `frontend/appflowy_flutter/integration_test/board/board_hide_groups_test.dart` (+98 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart` (+235 -95) ➖ `frontend/appflowy_flutter/lib/plugins/database_view/board/application/group.dart` (+0 -12) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/application/group_controller.dart` (+32 -13) ➖ `frontend/appflowy_flutter/lib/plugins/database_view/board/application/ungrouped_items_bloc.dart` (+0 -112) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart` (+97 -124) ➖ `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/ungrouped_items_button.dart` (+0 -237) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/widgets/board_column_header.dart` (+117 -66) ➕ `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/widgets/board_hidden_groups.dart` (+483 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/application/grid_header_bloc.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/layout/sizes.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/field_type_extension.dart` (+6 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/tar_bar/tab_bar_view.dart` (+3 -6) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart` (+1 -0) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/lib/style_widget/icon_button.dart` (+4 -9) 📝 `frontend/appflowy_flutter/pubspec.lock` (+3 -3) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) 📝 `frontend/appflowy_flutter/test/bloc_test/board_test/group_by_multi_select_field_test.dart` (+3 -3) ➕ `frontend/resources/flowy_icons/16x/hamburger_s.svg` (+7 -0) _...and 15 more files_ </details> ### 📄 Description resolves https://github.com/AppFlowy-IO/AppFlowy/issues/3818 https://github.com/AppFlowy-IO/AppFlowy/assets/71320345/76dcec09-4f0f-408c-ba88-67dab358deec - [x] show the unhidden groups in the right index (requires https://github.com/AppFlowy-IO/appflowy-board/pull/19) - [x] implement reordering of hidden groups #### 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:21:00 +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#5942
No description provided.