[PR #512] [MERGED] feat: add new field type - URL #4160

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/512
Author: @appflowy
Created: 5/27/2022
Status: Merged
Merged: 5/29/2022
Merged by: @appflowy

Base: mainHead: feat_grid_url


📝 Commits (6)

  • 9a93a72 feat: add new field type
  • 40e7b42 chore: fix flutter warnings
  • 166438a chore: fix rust unit test
  • 9844c02 chore: Merge branch 'main' into feat_grid_url
  • ae0f71b chore: return URLCellData & parse url from cell content
  • 4a9627b chore: support open url with https scheme

📊 Changes

51 files changed (+1370 additions, -117 deletions)

View changed files

frontend/app_flowy/assets/images/grid/field/url.svg (+3 -0)
📝 frontend/app_flowy/assets/translations/en.json (+1 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart (+39 -10)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_loader.dart (+12 -7)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart (+22 -21)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart (+8 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/select_option_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart (+1 -1)
frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_bloc.dart (+73 -0)
frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_editor_bloc.dart (+73 -0)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart (+7 -6)
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/cell_editor.dart (+96 -0)
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/url_cell.dart (+131 -0)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_editor_pannel.dart (+14 -4)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_type_extension.dart (+6 -4)
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/url.dart (+20 -0)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/grid_row.dart (+3 -2)

...and 31 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/512 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/27/2022 **Status:** ✅ Merged **Merged:** 5/29/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat_grid_url` --- ### 📝 Commits (6) - [`9a93a72`](https://github.com/AppFlowy-IO/AppFlowy/commit/9a93a72c33d96d327597b6c13aa5ddc46fdeff34) feat: add new field type - [`40e7b42`](https://github.com/AppFlowy-IO/AppFlowy/commit/40e7b42a63235abdaae9dac0b2d01a35d876c125) chore: fix flutter warnings - [`166438a`](https://github.com/AppFlowy-IO/AppFlowy/commit/166438ad73f9de9a8c9bb458cfdbb713e5dc855e) chore: fix rust unit test - [`9844c02`](https://github.com/AppFlowy-IO/AppFlowy/commit/9844c02cbc4dfef803a83098279934fa5bd0922c) chore: Merge branch 'main' into feat_grid_url - [`ae0f71b`](https://github.com/AppFlowy-IO/AppFlowy/commit/ae0f71b5ee8c1938c69dc7d659e2a56324dab188) chore: return URLCellData & parse url from cell content - [`4a9627b`](https://github.com/AppFlowy-IO/AppFlowy/commit/4a9627b31d02fda3812513fbc17ceda7afe83015) chore: support open url with https scheme ### 📊 Changes **51 files changed** (+1370 additions, -117 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/assets/images/grid/field/url.svg` (+3 -0) 📝 `frontend/app_flowy/assets/translations/en.json` (+1 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/cell_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/context_builder.dart` (+39 -10) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/cell_service/data_loader.dart` (+12 -7) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/checkbox_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart` (+22 -21) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cell_bloc.dart` (+8 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/number_cell_bloc.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/select_option_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/text_cell_bloc.dart` (+1 -1) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_bloc.dart` (+73 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell/url_cell_editor_bloc.dart` (+73 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart` (+7 -6) ➕ `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/cell_editor.dart` (+96 -0) ➕ `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/url_cell.dart` (+131 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_editor_pannel.dart` (+14 -4) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_type_extension.dart` (+6 -4) ➕ `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/url.dart` (+20 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/grid_row.dart` (+3 -2) _...and 31 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:35 +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#4160
No description provided.