[PR #5070] [MERGED] feat: relation field improvements #6620

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5070
Author: @richardshiue
Created: 4/5/2024
Status: Merged
Merged: 4/10/2024
Merged by: @LucasXu0

Base: mainHead: chore/relation-cell-editor-keyboard-navigation


📝 Commits (7)

  • 2cedc42 feat: keyboard navigation for relation cell editor
  • c2a4e12 feat: open related rows
  • b8b70d6 feat: separated selected and unselected rows
  • 545a4be chore: apply suggestions from code review
  • 1b9f33f chore: fix launch review issues
  • c3c4269 chore: merge remote-tracking branch 'upstream/main' into chore/relation-cell-editor-keyboard-navigation
  • 39905ae chore: add documentation

📊 Changes

8 files changed (+661 additions, -117 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/relation_row_search_bloc.dart (+64 -7)
frontend/appflowy_flutter/lib/plugins/database/application/row/related_row_detail_bloc.dart (+124 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_grid/desktop_grid_relation_cell.dart (+1 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_row_detail/desktop_row_detail_relation_cell.dart (+1 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/relation_cell_editor.dart (+428 -102)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_cell_editor.dart (+1 -1)
frontend/appflowy_flutter/lib/plugins/database/widgets/row/relation_row_detail.dart (+39 -0)
📝 frontend/resources/translations/en.json (+3 -1)

📄 Description

  • keyboard navigation for selecting and unselecting a row
  • open a row as a dialog when clicked
  • ui layout adjustment

image

image

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/5070 **Author:** [@richardshiue](https://github.com/richardshiue) **Created:** 4/5/2024 **Status:** ✅ Merged **Merged:** 4/10/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `chore/relation-cell-editor-keyboard-navigation` --- ### 📝 Commits (7) - [`2cedc42`](https://github.com/AppFlowy-IO/AppFlowy/commit/2cedc4241cd60dec72b7c6d406c78843353cb5b4) feat: keyboard navigation for relation cell editor - [`c2a4e12`](https://github.com/AppFlowy-IO/AppFlowy/commit/c2a4e12c73f306480b2095a6672c178f451c3be9) feat: open related rows - [`b8b70d6`](https://github.com/AppFlowy-IO/AppFlowy/commit/b8b70d6a353cf1885fc5a92cd785fab435106119) feat: separated selected and unselected rows - [`545a4be`](https://github.com/AppFlowy-IO/AppFlowy/commit/545a4be4974e90c407e36d4587a3dbe8f0a28a7e) chore: apply suggestions from code review - [`1b9f33f`](https://github.com/AppFlowy-IO/AppFlowy/commit/1b9f33f32ec11f860d41118f2f5ba2168cf014f7) chore: fix launch review issues - [`c3c4269`](https://github.com/AppFlowy-IO/AppFlowy/commit/c3c426918f06bb8666086663494f9f4ecdfda396) chore: merge remote-tracking branch 'upstream/main' into chore/relation-cell-editor-keyboard-navigation - [`39905ae`](https://github.com/AppFlowy-IO/AppFlowy/commit/39905ae0224c6ce329ae4403d6263e27d0bb0f88) chore: add documentation ### 📊 Changes **8 files changed** (+661 additions, -117 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/relation_row_search_bloc.dart` (+64 -7) ➕ `frontend/appflowy_flutter/lib/plugins/database/application/row/related_row_detail_bloc.dart` (+124 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_grid/desktop_grid_relation_cell.dart` (+1 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_row_detail/desktop_row_detail_relation_cell.dart` (+1 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/relation_cell_editor.dart` (+428 -102) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_cell_editor.dart` (+1 -1) ➕ `frontend/appflowy_flutter/lib/plugins/database/widgets/row/relation_row_detail.dart` (+39 -0) 📝 `frontend/resources/translations/en.json` (+3 -1) </details> ### 📄 Description - keyboard navigation for selecting and unselecting a row - open a row as a dialog when clicked - ui layout adjustment ![image](https://github.com/AppFlowy-IO/AppFlowy/assets/71320345/6cdbc21e-f162-4d0e-871e-f79ba479202b) ![image](https://github.com/AppFlowy-IO/AppFlowy/assets/71320345/5a273f3e-e26a-48f8-8aeb-998bfc54cbfc) ### 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:51 +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#6620
No description provided.