[PR #419] [MERGED] Config grid ui #4124

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/419
Author: @appflowy
Created: 3/18/2022
Status: Merged
Merged: 3/18/2022
Merged by: @appflowy

Base: mainHead: feat_grid_ui


📝 Commits (10+)

📊 Changes

247 files changed (+18887 additions, -7341 deletions)

View changed files

📝 frontend/app_flowy/lib/core/notification_helper.dart (+18 -2)
📝 frontend/app_flowy/lib/plugin/plugin.dart (+1 -1)
📝 frontend/app_flowy/lib/startup/home_deps_resolver.dart (+55 -24)
frontend/app_flowy/lib/workspace/application/app/prelude.dart (+3 -0)
frontend/app_flowy/lib/workspace/application/doc/prelude.dart (+4 -0)
frontend/app_flowy/lib/workspace/application/grid/cell_bloc/cell_service.dart (+20 -0)
frontend/app_flowy/lib/workspace/application/grid/cell_bloc/checkbox_cell_bloc.dart (+42 -0)
frontend/app_flowy/lib/workspace/application/grid/cell_bloc/date_cell_bloc.dart (+42 -0)
frontend/app_flowy/lib/workspace/application/grid/cell_bloc/number_cell_bloc.dart (+42 -0)
frontend/app_flowy/lib/workspace/application/grid/cell_bloc/selection_cell_bloc.dart (+42 -0)
frontend/app_flowy/lib/workspace/application/grid/cell_bloc/text_cell_bloc.dart (+45 -0)
frontend/app_flowy/lib/workspace/application/grid/column_bloc.dart (+42 -0)
frontend/app_flowy/lib/workspace/application/grid/column_service.dart (+1 -0)
frontend/app_flowy/lib/workspace/application/grid/data.dart (+7 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart (+65 -75)
frontend/app_flowy/lib/workspace/application/grid/grid_block_service.dart (+96 -0)
frontend/app_flowy/lib/workspace/application/grid/grid_listenr.dart (+4 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_service.dart (+31 -9)
frontend/app_flowy/lib/workspace/application/grid/prelude.dart (+13 -0)
frontend/app_flowy/lib/workspace/application/grid/row_bloc.dart (+113 -0)

...and 80 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/419 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 3/18/2022 **Status:** ✅ Merged **Merged:** 3/18/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat_grid_ui` --- ### 📝 Commits (10+) - [`0502eec`](https://github.com/AppFlowy-IO/AppFlowy/commit/0502eec71785d732b0ec101eac88581c4d970d7e) chore: config plugin display - [`54cf451`](https://github.com/AppFlowy-IO/AppFlowy/commit/54cf4518266116bdf05af457ff2b2d28853a4d30) feat: config textfield cell - [`808d848`](https://github.com/AppFlowy-IO/AppFlowy/commit/808d848f621f6efbbf8f613d7b3bd38da467f656) feat: cell border - [`00db755`](https://github.com/AppFlowy-IO/AppFlowy/commit/00db755c29355aca7e3d40cf80ebd26c4e40394d) feat: add cloumn bloc - [`3216827`](https://github.com/AppFlowy-IO/AppFlowy/commit/321682717cbe4f01ca362331792d4f0dd12a62c1) chore: opti row rebuild - [`fe88113`](https://github.com/AppFlowy-IO/AppFlowy/commit/fe8811392b79332274cae91fa6535bb58baf75f9) feat: config cells - [`e45be3b`](https://github.com/AppFlowy-IO/AppFlowy/commit/e45be3b81e0b60ea089020322b8b2564b9b164f1) chore: add grid meta - [`7ac6a1d`](https://github.com/AppFlowy-IO/AppFlowy/commit/7ac6a1dc89b9e767f261c5fbb774b0794b0b6809) chore: rename struct - [`cea7d30`](https://github.com/AppFlowy-IO/AppFlowy/commit/cea7d30a53425503dbf7531592d037acc7df8978) chore: config BlockMetaPad - [`9a79197`](https://github.com/AppFlowy-IO/AppFlowy/commit/9a791974b44bf866348e85414850100f3bd0e8fa) chore: config grid rev persistence ### 📊 Changes **247 files changed** (+18887 additions, -7341 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/core/notification_helper.dart` (+18 -2) 📝 `frontend/app_flowy/lib/plugin/plugin.dart` (+1 -1) 📝 `frontend/app_flowy/lib/startup/home_deps_resolver.dart` (+55 -24) ➕ `frontend/app_flowy/lib/workspace/application/app/prelude.dart` (+3 -0) ➕ `frontend/app_flowy/lib/workspace/application/doc/prelude.dart` (+4 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/cell_service.dart` (+20 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/checkbox_cell_bloc.dart` (+42 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/date_cell_bloc.dart` (+42 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/number_cell_bloc.dart` (+42 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/selection_cell_bloc.dart` (+42 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/text_cell_bloc.dart` (+45 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/column_bloc.dart` (+42 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/column_service.dart` (+1 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/data.dart` (+7 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart` (+65 -75) ➕ `frontend/app_flowy/lib/workspace/application/grid/grid_block_service.dart` (+96 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/grid_listenr.dart` (+4 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_service.dart` (+31 -9) ➕ `frontend/app_flowy/lib/workspace/application/grid/prelude.dart` (+13 -0) ➕ `frontend/app_flowy/lib/workspace/application/grid/row_bloc.dart` (+113 -0) _...and 80 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:24 +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#4124
No description provided.