[PR #442] [MERGED] Feature: support row delete #4134

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

📋 Pull Request Information

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

Base: mainHead: feat_row_delete


📝 Commits (9)

  • ed10eba fix: add new select option tag from textfield
  • b93feb4 chore: config row action sheet
  • d08f298 chore: rename structs
  • b926600 chore: remove grid block from dart side
  • a755d52 chore: using cow for row ids stuff
  • 420b8ca chore: fix deserialize GridBlockMetaPad error
  • f01d325 chore: reload after delete or insert row
  • fbb2f49 chore: enable rust lint and test by remove path
  • df6871e chore: fix wanrings

📊 Changes

59 files changed (+1951 additions, -798 deletions)

View changed files

📝 .github/workflows/dart_lint.yml (+0 -4)
📝 .github/workflows/rust_lint.yml (+0 -6)
📝 .github/workflows/rust_test.yml (+0 -6)
📝 frontend/app_flowy/assets/translations/en.json (+4 -0)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+1 -3)
📝 frontend/app_flowy/lib/workspace/application/grid/cell_bloc/selection_editor_bloc.dart (+9 -5)
📝 frontend/app_flowy/lib/workspace/application/grid/field/field_action_sheet_bloc.dart (+14 -14)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart (+67 -83)
frontend/app_flowy/lib/workspace/application/grid/grid_block_service.dart (+0 -92)
frontend/app_flowy/lib/workspace/application/grid/grid_listener.dart (+43 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/grid_service.dart (+1 -9)
📝 frontend/app_flowy/lib/workspace/application/grid/prelude.dart (+1 -1)
frontend/app_flowy/lib/workspace/application/grid/row/row_action_sheet_bloc.dart (+58 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_bloc.dart (+22 -32)
📝 frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart (+36 -3)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/grid_page.dart (+34 -14)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/layout/sizes.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/extension.dart (+0 -96)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_editor.dart (+2 -3)
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/text_field.dart (+101 -0)

...and 39 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/442 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/10/2022 **Status:** ✅ Merged **Merged:** 4/10/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat_row_delete` --- ### 📝 Commits (9) - [`ed10eba`](https://github.com/AppFlowy-IO/AppFlowy/commit/ed10ebac7a89e019406499c1c98bbb30acabe104) fix: add new select option tag from textfield - [`b93feb4`](https://github.com/AppFlowy-IO/AppFlowy/commit/b93feb49c32aebdcee2902b2679bb7a604262422) chore: config row action sheet - [`d08f298`](https://github.com/AppFlowy-IO/AppFlowy/commit/d08f298fb6a2eb2ef1665fc9999958f1d152f4cb) chore: rename structs - [`b926600`](https://github.com/AppFlowy-IO/AppFlowy/commit/b92660058ca7c428be6f23fa3dc3e671453703ec) chore: remove grid block from dart side - [`a755d52`](https://github.com/AppFlowy-IO/AppFlowy/commit/a755d523719b3bedb1757362ff4f13d67f1492cf) chore: using cow for row ids stuff - [`420b8ca`](https://github.com/AppFlowy-IO/AppFlowy/commit/420b8ca05dcc27a50158bbddb08ec78b05cea0c4) chore: fix deserialize GridBlockMetaPad error - [`f01d325`](https://github.com/AppFlowy-IO/AppFlowy/commit/f01d3250ae1201e83479d73914d8e5ea60352f5d) chore: reload after delete or insert row - [`fbb2f49`](https://github.com/AppFlowy-IO/AppFlowy/commit/fbb2f49b6f3f78f8da07022a58121e175dce0dd1) chore: enable rust lint and test by remove path - [`df6871e`](https://github.com/AppFlowy-IO/AppFlowy/commit/df6871e777833185ca3b1bb4bb7649d91d552e59) chore: fix wanrings ### 📊 Changes **59 files changed** (+1951 additions, -798 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dart_lint.yml` (+0 -4) 📝 `.github/workflows/rust_lint.yml` (+0 -6) 📝 `.github/workflows/rust_test.yml` (+0 -6) 📝 `frontend/app_flowy/assets/translations/en.json` (+4 -0) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+1 -3) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell_bloc/selection_editor_bloc.dart` (+9 -5) 📝 `frontend/app_flowy/lib/workspace/application/grid/field/field_action_sheet_bloc.dart` (+14 -14) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_bloc.dart` (+67 -83) ➖ `frontend/app_flowy/lib/workspace/application/grid/grid_block_service.dart` (+0 -92) ➕ `frontend/app_flowy/lib/workspace/application/grid/grid_listener.dart` (+43 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/grid_service.dart` (+1 -9) 📝 `frontend/app_flowy/lib/workspace/application/grid/prelude.dart` (+1 -1) ➕ `frontend/app_flowy/lib/workspace/application/grid/row/row_action_sheet_bloc.dart` (+58 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_bloc.dart` (+22 -32) 📝 `frontend/app_flowy/lib/workspace/application/grid/row/row_service.dart` (+36 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/grid_page.dart` (+34 -14) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/layout/sizes.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/extension.dart` (+0 -96) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_editor.dart` (+2 -3) ➕ `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/text_field.dart` (+101 -0) _...and 39 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: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#4134
No description provided.