[PR #6415] [MERGED] feat: custom database field icons #7371

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6415
Author: @richardshiue
Created: 9/27/2024
Status: Merged
Merged: 9/30/2024
Merged by: @richardshiue

Base: mainHead: feat/custom-field-icons


📝 Commits (1)

  • 103463e feat: custom database field icons

📊 Changes

51 files changed (+632 additions, -403 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/database/database_field_test.dart (+26 -1)
📝 frontend/appflowy_flutter/integration_test/shared/database_test_op.dart (+49 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/mobile_row_property_list.dart (+4 -8)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/option_text_field.dart (+5 -5)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_create_field_screen.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_field_picker_list.dart (+4 -5)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_full_field_editor.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_quick_field_editor.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_field_list.dart (+7 -7)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_filter_bottom_sheet.dart (+4 -3)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_sort_bottom_sheet.dart (+4 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/application/field/field_editor_bloc.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/application/field/field_info.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_event_editor.dart (+5 -7)
📝 frontend/appflowy_flutter/lib/plugins/database/domain/field_service.dart (+6 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/filter/choicechip/choicechip.dart (+3 -4)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/filter/create_filter_list.dart (+6 -8)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/desktop_field_cell.dart (+40 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/mobile_field_button.dart (+4 -5)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/sort/create_sort_list.dart (+3 -5)

...and 31 more files

📄 Description

requires https://github.com/AppFlowy-IO/AppFlowy-Collab/pull/298

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

Screenshot 2024-09-27 at 7 13 30 PM

Screenshot 2024-09-27 at 7 13 01 PM

Screenshot 2024-09-27 at 7 17 34 PM

not included in this PR:

  • ability to choose a new field icon on mobile

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/6415 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 9/27/2024 **Status:** ✅ Merged **Merged:** 9/30/2024 **Merged by:** [@richardshiue](https://github.com/richardshiue) **Base:** `main` ← **Head:** `feat/custom-field-icons` --- ### 📝 Commits (1) - [`103463e`](https://github.com/AppFlowy-IO/AppFlowy/commit/103463e4e74898c685dd257d16c2b0c86c570509) feat: custom database field icons ### 📊 Changes **51 files changed** (+632 additions, -403 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_field_test.dart` (+26 -1) 📝 `frontend/appflowy_flutter/integration_test/shared/database_test_op.dart` (+49 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/mobile_row_property_list.dart` (+4 -8) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/option_text_field.dart` (+5 -5) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_create_field_screen.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_field_picker_list.dart` (+4 -5) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_full_field_editor.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_quick_field_editor.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_field_list.dart` (+7 -7) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_filter_bottom_sheet.dart` (+4 -3) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/view/database_sort_bottom_sheet.dart` (+4 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/field/field_editor_bloc.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/field/field_info.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_event_editor.dart` (+5 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database/domain/field_service.dart` (+6 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/filter/choicechip/choicechip.dart` (+3 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/filter/create_filter_list.dart` (+6 -8) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/desktop_field_cell.dart` (+40 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/mobile_field_button.dart` (+4 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/sort/create_sort_list.dart` (+3 -5) _...and 31 more files_ </details> ### 📄 Description requires https://github.com/AppFlowy-IO/AppFlowy-Collab/pull/298 resolves https://github.com/AppFlowy-IO/AppFlowy/issues/6259 ![Screenshot 2024-09-27 at 7 13 30 PM](https://github.com/user-attachments/assets/a5f78c6c-7f3a-4e30-b30e-c4367f2d5e9c) ![Screenshot 2024-09-27 at 7 13 01 PM](https://github.com/user-attachments/assets/c1133b1c-d4d5-47f6-8518-552a8bdec710) ![Screenshot 2024-09-27 at 7 17 34 PM](https://github.com/user-attachments/assets/a8bb1fde-f00a-4c89-ba1d-e05bb773f579) not included in this PR: - ability to choose a new field icon on mobile ### 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. - [x] 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:19:19 +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#7371
No description provided.