[PR #3875] [MERGED] fix: support inserting grid block in editor #5926

Closed
opened 2026-03-23 22:20:56 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3875
Author: @qinluhe
Created: 11/6/2023
Status: Merged
Merged: 11/8/2023
Merged by: @qinluhe

Base: mainHead: feat/tauri-editor-grid-block


📝 Commits (3)

  • 85755fb fix: support inserting grid block in editor
  • a52af07 feat: support adding view in table
  • 75a6044 feat: support the operations of row in tauri grid

📊 Changes

57 files changed (+1537 additions, -684 deletions)

View changed files

📝 frontend/appflowy_tauri/package.json (+4 -0)
📝 frontend/appflowy_tauri/pnpm-lock.yaml (+96 -2)
📝 frontend/appflowy_tauri/scripts/i18n/index.cjs (+1 -1)
frontend/appflowy_tauri/src/appflowy_app/assets/up.svg (+3 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts (+82 -31)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx (+58 -30)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseLoader.tsx (+4 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx (+18 -15)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseView.tsx (+14 -9)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/VirtualizedList.tsx (+7 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/dnd/drag.hooks.ts (+7 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/application/database_view/database_view_service.ts (+28 -23)
frontend/appflowy_tauri/src/appflowy_app/components/database/application/database_view/database_view_types.ts (+0 -25)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/application/database_view/index.ts (+0 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.hooks.ts (+17 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.tsx (+5 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/CheckboxCell.tsx (+7 -11)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/SelectCell/SelectCell.tsx (+67 -63)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx (+12 -14)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/DatabaseCollection.tsx (+17 -0)

...and 37 more files

📄 Description

Feature Preview


  • Support inserting grid block in editor
  • support adding view
  • support the operations of row in tauri grid

https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/02e9b00b-0b64-4313-8f2f-5b34c2634f7a

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/3875 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 11/6/2023 **Status:** ✅ Merged **Merged:** 11/8/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/tauri-editor-grid-block` --- ### 📝 Commits (3) - [`85755fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/85755fb9192c20bb3c26b6ceb92b28d7589bc765) fix: support inserting grid block in editor - [`a52af07`](https://github.com/AppFlowy-IO/AppFlowy/commit/a52af07caa5a228b281b66b9b5c751c6b32472bd) feat: support adding view in table - [`75a6044`](https://github.com/AppFlowy-IO/AppFlowy/commit/75a60446316937a8c1f59a0d4dd651f027d3b715) feat: support the operations of row in tauri grid ### 📊 Changes **57 files changed** (+1537 additions, -684 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/package.json` (+4 -0) 📝 `frontend/appflowy_tauri/pnpm-lock.yaml` (+96 -2) 📝 `frontend/appflowy_tauri/scripts/i18n/index.cjs` (+1 -1) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/up.svg` (+3 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts` (+82 -31) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx` (+58 -30) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseLoader.tsx` (+4 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx` (+18 -15) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseView.tsx` (+14 -9) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/VirtualizedList.tsx` (+7 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/dnd/drag.hooks.ts` (+7 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/application/database_view/database_view_service.ts` (+28 -23) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/database/application/database_view/database_view_types.ts` (+0 -25) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/application/database_view/index.ts` (+0 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.hooks.ts` (+17 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.tsx` (+5 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/CheckboxCell.tsx` (+7 -11) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/SelectCell/SelectCell.tsx` (+67 -63) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx` (+12 -14) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/DatabaseCollection.tsx` (+17 -0) _...and 37 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### 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 --> --- - [x] Support inserting grid block in editor - [x] support adding view - [x] support the operations of row in tauri grid https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/02e9b00b-0b64-4313-8f2f-5b34c2634f7a <!--- 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 22:20:56 +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#5926
No description provided.