[PR #5004] [MERGED] chore: organize code #6576

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5004
Author: @richardshiue
Created: 3/29/2024
Status: Merged
Merged: 3/29/2024
Merged by: @richardshiue

Base: mainHead: chore/select-option-cell-editor-revamp


📝 Commits (2)

  • 50460ee chore: rename files and classes
  • fc629b5 chore: move some files around

📊 Changes

28 files changed (+28 additions, -29 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/database/database_field_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/shared/database_test_op.dart (+5 -5)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_full_field_editor.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/application/field/type_option/select_type_option_actions.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/desktop_field_cell.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_grid/desktop_grid_select_option_cell.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_row_detail/desktop_row_detail_select_option_cell.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_cell_editor.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/field_editor.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/field_type_list.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/builder.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/checkbox.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/checklist.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/date.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/date/date_time_format.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/multi_select.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/number.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/relation.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/rich_text.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/select/select_option.dart (+1 -1)

...and 8 more files

📄 Description

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/5004 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 3/29/2024 **Status:** ✅ Merged **Merged:** 3/29/2024 **Merged by:** [@richardshiue](https://github.com/richardshiue) **Base:** `main` ← **Head:** `chore/select-option-cell-editor-revamp` --- ### 📝 Commits (2) - [`50460ee`](https://github.com/AppFlowy-IO/AppFlowy/commit/50460ee67e221a8b6e490ba5ae0abf1604098a9e) chore: rename files and classes - [`fc629b5`](https://github.com/AppFlowy-IO/AppFlowy/commit/fc629b50bd3f4992c724addba35bfcaa4e9a478c) chore: move some files around ### 📊 Changes **28 files changed** (+28 additions, -29 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_field_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/shared/database_test_op.dart` (+5 -5) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/field/mobile_full_field_editor.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/field/type_option/select_type_option_actions.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/presentation/widgets/header/desktop_field_cell.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_grid/desktop_grid_select_option_cell.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_row_detail/desktop_row_detail_select_option_cell.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_cell_editor.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/field_editor.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/field_type_list.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/builder.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/checkbox.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/checklist.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/date.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/date/date_time_format.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/multi_select.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/number.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/relation.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/rich_text.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/select/select_option.dart` (+1 -1) _...and 8 more files_ </details> ### 📄 Description ### 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 - [ ] 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 23:15:26 +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#6576
No description provided.