[PR #3906] [MERGED] feat: support the operations of field in the grid of tauri #5940

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3906
Author: @qinluhe
Created: 11/9/2023
Status: Merged
Merged: 11/13/2023
Merged by: @qinluhe

Base: mainHead: feat/support-column-operations


📝 Commits (2)

  • 64853dd feat: support the operations of field in the grid of tauri
  • 7e9f4c2 fix: performance optimizate

📊 Changes

34 files changed (+512 additions, -151 deletions)

View changed files

frontend/appflowy_tauri/src/appflowy_app/assets/board.svg (+16 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/document.svg (+14 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/grid.svg (+6 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts (+15 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx (+8 -1)
frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_listeners.ts (+11 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_service.ts (+74 -21)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_types.ts (+3 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/index.ts (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx (+9 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/field/FieldSelect.tsx (+14 -11)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/field/FieldsMenu.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/tab_bar/DatabaseTabBar.tsx (+28 -11)
frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridCalculate/GridCalculate.tsx (+30 -0)
frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridCalculate/index.ts (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridField.tsx (+16 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridFieldMenu.tsx (+22 -25)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridFieldMenuActions.tsx (+65 -7)
frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridResizer.tsx (+92 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridRow/GridCalculateRow.tsx (+17 -3)

...and 14 more files

📄 Description

Feature Preview

  • Support the field operations, including Add/Delete/Duplicate/Hide/Resize

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/3906 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 11/9/2023 **Status:** ✅ Merged **Merged:** 11/13/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/support-column-operations` --- ### 📝 Commits (2) - [`64853dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/64853ddec4646615522abc8c153c51f68032c357) feat: support the operations of field in the grid of tauri - [`7e9f4c2`](https://github.com/AppFlowy-IO/AppFlowy/commit/7e9f4c256d0cef2a7e7a514da60f2b79b52cfb98) fix: performance optimizate ### 📊 Changes **34 files changed** (+512 additions, -151 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/board.svg` (+16 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/document.svg` (+14 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/grid.svg` (+6 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts` (+15 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx` (+8 -1) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_listeners.ts` (+11 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_service.ts` (+74 -21) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_types.ts` (+3 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/index.ts` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx` (+9 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/field/FieldSelect.tsx` (+14 -11) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/field/FieldsMenu.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/tab_bar/DatabaseTabBar.tsx` (+28 -11) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridCalculate/GridCalculate.tsx` (+30 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridCalculate/index.ts` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridField.tsx` (+16 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridFieldMenu.tsx` (+22 -25) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridFieldMenuActions.tsx` (+65 -7) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridField/GridResizer.tsx` (+92 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/GridRow/GridCalculateRow.tsx` (+17 -3) _...and 14 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 - [x] Support the field operations, including Add/Delete/Duplicate/Hide/Resize <!--- 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 --> --- <!--- 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:21:00 +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#5940
No description provided.