[PR #4082] [MERGED] feat: parity features for flutter grid #6049

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4082
Author: @qinluhe
Created: 12/4/2023
Status: Merged
Merged: 12/6/2023
Merged by: @qinluhe

Base: mainHead: feat/tauri-grid-support-field-position


📝 Commits (6)

  • 6e54f39 feat: parity features of flutter grid
  • 77cf262 feat: replace another virtual scroll component
  • f552c5f fix: fix eslint error
  • d51154f fix: modify the drag style
  • 3512fb5 fix: remove log
  • 2b0fa09 fix: add css style for row when context menu display

📊 Changes

85 files changed (+2053 additions, -1367 deletions)

View changed files

📝 frontend/appflowy_tauri/.eslintrc.cjs (+1 -1)
📝 frontend/appflowy_tauri/package.json (+4 -0)
📝 frontend/appflowy_tauri/pnpm-lock.yaml (+59 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts (+21 -48)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx (+24 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseView.tsx (+1 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/CellText.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/dnd/drag.hooks.ts (+4 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_service.ts (+25 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.hooks.ts (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.tsx (+5 -6)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/CheckboxCell.tsx (+4 -1)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/ExpandButton.tsx (+0 -43)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/NumberCell.tsx (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx (+9 -38)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/URLCell.tsx (+1 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/Properties.tsx (+79 -19)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx (+14 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/ExpandRecordModal.tsx (+8 -11)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordActions.tsx (+3 -4)

...and 65 more files

📄 Description

Feature Preview

  • Support insert left and insert right
    image

  • Support grid settings
    image


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/4082 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 12/4/2023 **Status:** ✅ Merged **Merged:** 12/6/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/tauri-grid-support-field-position` --- ### 📝 Commits (6) - [`6e54f39`](https://github.com/AppFlowy-IO/AppFlowy/commit/6e54f3983a184d60ee8bbe5b707eaff8cdf6bad8) feat: parity features of flutter grid - [`77cf262`](https://github.com/AppFlowy-IO/AppFlowy/commit/77cf262f98ae3261bc44aa240b8a2cffeb4cb908) feat: replace another virtual scroll component - [`f552c5f`](https://github.com/AppFlowy-IO/AppFlowy/commit/f552c5f709b4afb0d87ffe003d5045cd60f1ecf3) fix: fix eslint error - [`d51154f`](https://github.com/AppFlowy-IO/AppFlowy/commit/d51154f39fc7cd674fef1c4d61e1bfff664c728e) fix: modify the drag style - [`3512fb5`](https://github.com/AppFlowy-IO/AppFlowy/commit/3512fb5f5d30d75bda5ff8ba0c540dae6514f3a2) fix: remove log - [`2b0fa09`](https://github.com/AppFlowy-IO/AppFlowy/commit/2b0fa09bb73aab7f272f7a44a06e36027d282b7d) fix: add css style for row when context menu display ### 📊 Changes **85 files changed** (+2053 additions, -1367 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/.eslintrc.cjs` (+1 -1) 📝 `frontend/appflowy_tauri/package.json` (+4 -0) 📝 `frontend/appflowy_tauri/pnpm-lock.yaml` (+59 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts` (+21 -48) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx` (+24 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseView.tsx` (+1 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/CellText.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/dnd/drag.hooks.ts` (+4 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/application/field/field_service.ts` (+25 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.hooks.ts` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.tsx` (+5 -6) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/CheckboxCell.tsx` (+4 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/ExpandButton.tsx` (+0 -43) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/NumberCell.tsx` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx` (+9 -38) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/URLCell.tsx` (+1 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/Properties.tsx` (+79 -19) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx` (+14 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/ExpandRecordModal.tsx` (+8 -11) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordActions.tsx` (+3 -4) _...and 65 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 insert left and insert right <img width="418" alt="image" src="https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/73e08eec-1fbe-4ed1-86dc-8f2889e3f102"> - [x] Support grid settings <img width="210" alt="image" src="https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/9c5dbe3e-9a37-4a5a-9f2d-c63c2d3adbc1"> <!--- 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:29 +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#6049
No description provided.