[PR #6270] [MERGED] feat(flutter_desktop): colored column names in kanban board #7283

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6270
Author: @richardshiue
Created: 9/10/2024
Status: Merged
Merged: 9/12/2024
Merged by: @richardshiue

Base: mainHead: feat/colored-kanban-board-titles


📝 Commits (6)

  • 9742d95 feat: colored column names in kanban board
  • fe151fa fix: rename group event
  • db61445 chore: add comment for rough design
  • 1d0a637 chore: revert unintentional changes
  • 495b5c9 fix: use new colors and use new delete confirmation dialog
  • 71947eb chore: merge remote-tracking branch 'upstream/main' into this one

📊 Changes

23 files changed (+471 additions, -572 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/board/application/board_bloc.dart (+10 -3)
frontend/appflowy_flutter/lib/plugins/database/board/application/column_header_bloc.dart (+0 -113)
📝 frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart (+3 -17)
frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_checkbox_column_header.dart (+51 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_column_header.dart (+133 -195)
frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_editable_column_header.dart (+256 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/domain/group_service.dart (+0 -16)
📝 frontend/appflowy_flutter/packages/flowy_infra/lib/colorscheme/default_colorscheme.dart (+9 -9)
📝 frontend/resources/translations/en.json (+2 -1)
📝 frontend/rust-lib/event-integration-test/src/database_event.rs (+0 -2)
📝 frontend/rust-lib/event-integration-test/tests/database/local_test/group_test.rs (+1 -9)
📝 frontend/rust-lib/flowy-database2/src/entities/group_entities/group.rs (+2 -75)
📝 frontend/rust-lib/flowy-database2/src/entities/group_entities/group_changeset.rs (+0 -9)
📝 frontend/rust-lib/flowy-database2/src/event_handler.rs (+0 -16)
📝 frontend/rust-lib/flowy-database2/src/event_map.rs (+0 -4)
📝 frontend/rust-lib/flowy-database2/src/notification.rs (+0 -3)
📝 frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs (+0 -6)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/notifier.rs (+2 -12)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs (+2 -39)
📝 frontend/rust-lib/flowy-database2/src/services/group/action.rs (+0 -10)

...and 3 more files

📄 Description

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

Screenshot 2024-09-11 at 9 03 52 AM

Screenshot 2024-09-11 at 9 04 26 AM

Screenshot 2024-09-11 at 9 05 11 AM

Feature Preview


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/6270 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 9/10/2024 **Status:** ✅ Merged **Merged:** 9/12/2024 **Merged by:** [@richardshiue](https://github.com/richardshiue) **Base:** `main` ← **Head:** `feat/colored-kanban-board-titles` --- ### 📝 Commits (6) - [`9742d95`](https://github.com/AppFlowy-IO/AppFlowy/commit/9742d950f8b75df94860de66fdb0a4003906ef17) feat: colored column names in kanban board - [`fe151fa`](https://github.com/AppFlowy-IO/AppFlowy/commit/fe151fac1606571761fff189daedc1a9c0a84fa2) fix: rename group event - [`db61445`](https://github.com/AppFlowy-IO/AppFlowy/commit/db6144508aca134cad12f96b2fc6c6c33faf23a5) chore: add comment for rough design - [`1d0a637`](https://github.com/AppFlowy-IO/AppFlowy/commit/1d0a637d7a392e0e47ad68ab7706cd4e69ca644a) chore: revert unintentional changes - [`495b5c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/495b5c97d2a5e94c5f02a8155854485ae8890074) fix: use new colors and use new delete confirmation dialog - [`71947eb`](https://github.com/AppFlowy-IO/AppFlowy/commit/71947ebfa2b0327a02f60b44e140a5503d266b0d) chore: merge remote-tracking branch 'upstream/main' into this one ### 📊 Changes **23 files changed** (+471 additions, -572 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/board/application/board_bloc.dart` (+10 -3) ➖ `frontend/appflowy_flutter/lib/plugins/database/board/application/column_header_bloc.dart` (+0 -113) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart` (+3 -17) ➕ `frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_checkbox_column_header.dart` (+51 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_column_header.dart` (+133 -195) ➕ `frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_editable_column_header.dart` (+256 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/domain/group_service.dart` (+0 -16) 📝 `frontend/appflowy_flutter/packages/flowy_infra/lib/colorscheme/default_colorscheme.dart` (+9 -9) 📝 `frontend/resources/translations/en.json` (+2 -1) 📝 `frontend/rust-lib/event-integration-test/src/database_event.rs` (+0 -2) 📝 `frontend/rust-lib/event-integration-test/tests/database/local_test/group_test.rs` (+1 -9) 📝 `frontend/rust-lib/flowy-database2/src/entities/group_entities/group.rs` (+2 -75) 📝 `frontend/rust-lib/flowy-database2/src/entities/group_entities/group_changeset.rs` (+0 -9) 📝 `frontend/rust-lib/flowy-database2/src/event_handler.rs` (+0 -16) 📝 `frontend/rust-lib/flowy-database2/src/event_map.rs` (+0 -4) 📝 `frontend/rust-lib/flowy-database2/src/notification.rs` (+0 -3) 📝 `frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs` (+0 -6) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/notifier.rs` (+2 -12) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs` (+2 -39) 📝 `frontend/rust-lib/flowy-database2/src/services/group/action.rs` (+0 -10) _...and 3 more files_ </details> ### 📄 Description resolves https://github.com/AppFlowy-IO/AppFlowy/issues/6258 ![Screenshot 2024-09-11 at 9 03 52 AM](https://github.com/user-attachments/assets/bd47cb0d-5f05-4360-b5ef-2012688ab593) ![Screenshot 2024-09-11 at 9 04 26 AM](https://github.com/user-attachments/assets/4a617f24-89a5-439e-a920-06685e8d9fb6) ![Screenshot 2024-09-11 at 9 05 11 AM](https://github.com/user-attachments/assets/5d1f87bc-852a-4258-a992-d90a92b3ad94) ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- 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. - [ ] 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 23:18:55 +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#7283
No description provided.