[PR #2995] [MERGED] Tauri grid changes and fixes #5513

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2995
Author: @Ascarbek
Created: 7/13/2023
Status: Merged
Merged: 8/14/2023
Merged by: @qinluhe

Base: mainHead: feat/tauri-grid-fixes


📝 Commits (10+)

  • 2f57dea (feat) implement row drag and drop functionality
  • 8bacb9a (feat) implement grid row actions options ui
  • 9fd289f (feat) add delete row function
  • 47dc1f0 Merge branch 'upstream-main' into feat/tauri-grid-fixes
  • 0a01964 (feat) implemet grid filter and sort popup layout
  • 031247b chore: move row methods to database controller
  • 06b127c (feat) integrate delete and duplicate row functions
  • b9a78d9 Merge branch 'upstream-main' into feat/tauri-grid-fixes
  • c80a0e6 chore: add option on field popup
  • 91cc425 chore: padding on edit row

📊 Changes

85 files changed (+2796 additions, -724 deletions)

View changed files

📝 frontend/appflowy_tauri/index.html (+1 -1)
📝 frontend/appflowy_tauri/package.json (+1 -0)
📝 frontend/appflowy_tauri/pnpm-lock.yaml (+54 -15)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+10 -10)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/Button.tsx (+4 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/ButtonPopoverList/index.tsx (+17 -5)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/CheckListProgress.tsx (+3 -3)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/DatabaseFilterItem.tsx (+174 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/DatabaseFilterPopup.tsx (+183 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/FieldSelect.tsx (+79 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/FilterValue.tsx (+146 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/LogicalOperatorSelect.tsx (+50 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/OperatorSelect.tsx (+63 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseSort/DatabaseSortItem.tsx (+97 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseSort/DatabaseSortPopup.tsx (+99 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseSort/OrderSelect.tsx (+97 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/ChangeFieldTypePopup.tsx (+20 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/CheckListPopup.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/EditCheckListPopup.tsx (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/NewCheckListButton.tsx (+1 -1)

...and 65 more files

📄 Description

Feature Preview

In PR includes:

  • Grid Filtering
  • Grid Sorting
  • Grid column resizing
  • ui and backend fixes

fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2429
fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2430
fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2425
fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2427


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/2995 **Author:** [@Ascarbek](https://github.com/Ascarbek) **Created:** 7/13/2023 **Status:** ✅ Merged **Merged:** 8/14/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/tauri-grid-fixes` --- ### 📝 Commits (10+) - [`2f57dea`](https://github.com/AppFlowy-IO/AppFlowy/commit/2f57dea8c14253cdba33f13c0a4da7b03b9458a5) (feat) implement row drag and drop functionality - [`8bacb9a`](https://github.com/AppFlowy-IO/AppFlowy/commit/8bacb9a78facf209c75b5179a821c2c31ae09c6f) (feat) implement grid row actions options ui - [`9fd289f`](https://github.com/AppFlowy-IO/AppFlowy/commit/9fd289f6bb070f8667d047aff488131b1e4a983d) (feat) add delete row function - [`47dc1f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/47dc1f0654f4d60e18e583990047e02f25d2a789) Merge branch 'upstream-main' into feat/tauri-grid-fixes - [`0a01964`](https://github.com/AppFlowy-IO/AppFlowy/commit/0a019640c5690a0133ae4e942abd594b3e83e4a7) (feat) implemet grid filter and sort popup layout - [`031247b`](https://github.com/AppFlowy-IO/AppFlowy/commit/031247b701d85f7c7af6a5a6d7e61dee0b317edd) chore: move row methods to database controller - [`06b127c`](https://github.com/AppFlowy-IO/AppFlowy/commit/06b127ca5a39c89a21d70db681594fe39fc54cda) (feat) integrate delete and duplicate row functions - [`b9a78d9`](https://github.com/AppFlowy-IO/AppFlowy/commit/b9a78d9dbcf563a5a7f4e76d2a0847a8083de0da) Merge branch 'upstream-main' into feat/tauri-grid-fixes - [`c80a0e6`](https://github.com/AppFlowy-IO/AppFlowy/commit/c80a0e63b145285de5af084cddbe6f39c4aaf94e) chore: add option on field popup - [`91cc425`](https://github.com/AppFlowy-IO/AppFlowy/commit/91cc4258cf69a3f47a3996307217ea0c3dd117c3) chore: padding on edit row ### 📊 Changes **85 files changed** (+2796 additions, -724 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/index.html` (+1 -1) 📝 `frontend/appflowy_tauri/package.json` (+1 -0) 📝 `frontend/appflowy_tauri/pnpm-lock.yaml` (+54 -15) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+10 -10) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Button.tsx` (+4 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/ButtonPopoverList/index.tsx` (+17 -5) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/CheckListProgress.tsx` (+3 -3) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/DatabaseFilterItem.tsx` (+174 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/DatabaseFilterPopup.tsx` (+183 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/FieldSelect.tsx` (+79 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/FilterValue.tsx` (+146 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/LogicalOperatorSelect.tsx` (+50 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseFilter/OperatorSelect.tsx` (+63 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseSort/DatabaseSortItem.tsx` (+97 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseSort/DatabaseSortPopup.tsx` (+99 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DatabaseSort/OrderSelect.tsx` (+97 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/ChangeFieldTypePopup.tsx` (+20 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/CheckListPopup.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/EditCheckListPopup.tsx` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/NewCheckListButton.tsx` (+1 -1) _...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 In PR includes: - Grid Filtering - Grid Sorting - Grid column resizing - ui and backend fixes fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2429 fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2430 fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2425 fixes https://github.com/AppFlowy-IO/AppFlowy/issues/2427 <!--- 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 - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [x] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] 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:19:04 +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#5513
No description provided.