[PR #4070] [MERGED] chore: integrate new field editor components #6042

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4070
Author: @richardshiue
Created: 12/2/2023
Status: Merged
Merged: 12/2/2023
Merged by: @LucasXu0

Base: mainHead: new-property-button


📝 Commits (5)

  • 37579fe chore: use the fancy new create field UI
  • 668bd77 chore: adjust select option tag text weight
  • bd1492a chore: use new field editor
  • 4e620b6 chore: remove old field editor
  • c0a1c30 chore: code cleanup

📊 Changes

11 files changed (+174 additions, -515 deletions)

View changed files

frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_database_field_editor.dart (+0 -203)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_card_detail_screen.dart (+19 -16)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/mobile_create_field_button.dart (+49 -0)
frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/mobile_create_row_field_button.dart (+0 -59)
📝 frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/widgets.dart (+1 -1)
frontend/appflowy_flutter/lib/mobile/presentation/database/field/bottom_sheet_create_field.dart (+82 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/grid_header.dart (+2 -42)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/mobile_field_cell.dart (+3 -37)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/extension.dart (+1 -1)
frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/mobile_database_property_editor.dart (+0 -124)
📝 frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/setting_property_list.dart (+17 -32)

📄 Description

  • From the mobile row detail page, pressing the new property bottom at the very bottom now triggers the new field creation workflow.
  • The new edit property screen is now being used when triggered from the property list in the database settings

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/4070 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 12/2/2023 **Status:** ✅ Merged **Merged:** 12/2/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `new-property-button` --- ### 📝 Commits (5) - [`37579fe`](https://github.com/AppFlowy-IO/AppFlowy/commit/37579fe48181a3d5eb6b130d5b27269de5bb1b4b) chore: use the fancy new create field UI - [`668bd77`](https://github.com/AppFlowy-IO/AppFlowy/commit/668bd77750c8146ccc6740be1a5330d9bb7f4f6e) chore: adjust select option tag text weight - [`bd1492a`](https://github.com/AppFlowy-IO/AppFlowy/commit/bd1492ac4a083a224c3bffcfe693a413acb370ff) chore: use new field editor - [`4e620b6`](https://github.com/AppFlowy-IO/AppFlowy/commit/4e620b6c577a40425bc0cc2bee5449a47d4cf8f4) chore: remove old field editor - [`c0a1c30`](https://github.com/AppFlowy-IO/AppFlowy/commit/c0a1c308009d2ffb91f5eed661629fdd942c5932) chore: code cleanup ### 📊 Changes **11 files changed** (+174 additions, -515 deletions) <details> <summary>View changed files</summary> ➖ `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_database_field_editor.dart` (+0 -203) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/mobile_card_detail_screen.dart` (+19 -16) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/mobile_create_field_button.dart` (+49 -0) ➖ `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/mobile_create_row_field_button.dart` (+0 -59) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/database/card/card_detail/widgets/widgets.dart` (+1 -1) ➕ `frontend/appflowy_flutter/lib/mobile/presentation/database/field/bottom_sheet_create_field.dart` (+82 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/grid_header.dart` (+2 -42) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/mobile_field_cell.dart` (+3 -37) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/extension.dart` (+1 -1) ➖ `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/mobile_database_property_editor.dart` (+0 -124) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/widgets/setting/setting_property_list.dart` (+17 -32) </details> ### 📄 Description - From the mobile row detail page, pressing the new property bottom at the very bottom now triggers the new field creation workflow. - The new edit property screen is now being used when triggered from the property list in the database settings ### 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 22:21:27 +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#6042
No description provided.