[PR #460] [MERGED] Feature: show row detail #4140

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/460
Author: @appflowy
Created: 4/21/2022
Status: Merged
Merged: 4/21/2022
Merged by: @appflowy

Base: mainHead: feat_row_detail


📝 Commits (7)

  • 5ee4b8a chore: different color when create option for single-select or multi-select
  • b3a99be chore: refactor row cache
  • f40e0c1 chore: refactor rowbloc
  • eeba688 chore: config row detail page
  • f66adb5 chore: config hover
  • e171198 chore: edit field
  • 27c40c7 chore: fix warnings

📊 Changes

71 files changed (+1515 additions, -951 deletions)

View changed files

frontend/app_flowy/assets/images/grid/expander.svg (+6 -0)
📝 frontend/app_flowy/assets/translations/en.json (+2 -1)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+6 -17)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart (+8 -8)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart (+6 -6)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart (+2 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart (+52 -12)
📝 frontend/app_flowy/lib/workspace/application/grid/field/type_option/multi_select_bloc.dart (+4 -4)
📝 frontend/app_flowy/lib/workspace/application/grid/field/type_option/single_select_bloc.dart (+4 -5)
📝 frontend/app_flowy/lib/workspace/application/grid/field/type_option/type_option_service.dart (+29 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart (+9 -5)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_service.dart (+43 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_bloc.dart (+13 -76)
frontend/app_flowy/lib/workspace/application/grid/row/row_detail_bloc.dart (+74 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart (+165 -113)
📝 frontend/app_flowy/lib/workspace/presentation/home/menu/app/header/add_button.dart (+8 -10)

...and 51 more files

📄 Description

No description provided


🔄 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/460 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/21/2022 **Status:** ✅ Merged **Merged:** 4/21/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat_row_detail` --- ### 📝 Commits (7) - [`5ee4b8a`](https://github.com/AppFlowy-IO/AppFlowy/commit/5ee4b8a2bcecf50a24bdedfbc5a250b8fde5a6ee) chore: different color when create option for single-select or multi-select - [`b3a99be`](https://github.com/AppFlowy-IO/AppFlowy/commit/b3a99be7f88d3b90d5d2c75cba6f9ab40382ab2e) chore: refactor row cache - [`f40e0c1`](https://github.com/AppFlowy-IO/AppFlowy/commit/f40e0c18e654a4e2212490f8ae79364f58494487) chore: refactor rowbloc - [`eeba688`](https://github.com/AppFlowy-IO/AppFlowy/commit/eeba6884ce309479e3a49c6d73f4512ee7c3b636) chore: config row detail page - [`f66adb5`](https://github.com/AppFlowy-IO/AppFlowy/commit/f66adb53c9b4e469292f183efdff69efd993ed3b) chore: config hover - [`e171198`](https://github.com/AppFlowy-IO/AppFlowy/commit/e1711980c6387b14ac249a6173242705c05a9125) chore: edit field - [`27c40c7`](https://github.com/AppFlowy-IO/AppFlowy/commit/27c40c7b342b9e86dc396c2c6b319372953879d7) chore: fix warnings ### 📊 Changes **71 files changed** (+1515 additions, -951 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/assets/images/grid/expander.svg` (+6 -0) 📝 `frontend/app_flowy/assets/translations/en.json` (+2 -1) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+6 -17) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart` (+8 -8) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart` (+6 -6) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_service.dart` (+2 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_cell_bloc.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart` (+52 -12) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/type_option/multi_select_bloc.dart` (+4 -4) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/type_option/single_select_bloc.dart` (+4 -5) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/type_option/type_option_service.dart` (+29 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart` (+9 -5) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_service.dart` (+43 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_bloc.dart` (+13 -76) ➕ `frontend/app_flowy/lib/workspace/application/grid/row/row_detail_bloc.dart` (+74 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart` (+165 -113) 📝 `frontend/app_flowy/lib/workspace/presentation/home/menu/app/header/add_button.dart` (+8 -10) _...and 51 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:36:29 +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#4140
No description provided.