[PR #3167] [MERGED] feat: new grid #5607

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3167
Author: @fangwufeng-v
Created: 8/11/2023
Status: Merged
Merged: 9/11/2023
Merged by: @qinluhe

Base: mainHead: feat/tauri-grid


📝 Commits (9)

  • 3068f24 feat: implement database database service by functions
  • 617a3b7 feat: define database data type
  • 0720e7b feat: basic grid store and component
  • 34a5e21 feat: data communication mechanism and simple table ui. Can add new filed and update field name.
  • 2e1ef6b feat: add grid text cell and grid checkbox cell
  • 1ff5016 feat: single select cell and multiselect cell
  • d157289 refactor: fix code review problems
  • 8af2da7 feat: add new row
  • e00bb6c feat: fix tsc error

📊 Changes

76 files changed (+2987 additions, -12 deletions)

View changed files

📝 frontend/appflowy_tauri/index.html (+1 -1)
📝 frontend/appflowy_tauri/package.json (+4 -1)
📝 frontend/appflowy_tauri/pnpm-lock.yaml (+321 -6)
📝 frontend/appflowy_tauri/src/appflowy_app/AppMain.tsx (+2 -2)
frontend/appflowy_tauri/src/appflowy_app/assets/add.svg (+3 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/copy.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/checkbox-check.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/checkbox-uncheck.svg (+3 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-attach.svg (+3 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-checkbox.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-checklist.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-date.svg (+6 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-last-edited-time.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-multi-select.svg (+8 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-number.svg (+3 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-person.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-single-select.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-text.svg (+4 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-url.svg (+3 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/database/select-check.svg (+3 -0)

...and 56 more files

📄 Description

Feature Preview


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/3167 **Author:** [@fangwufeng-v](https://github.com/fangwufeng-v) **Created:** 8/11/2023 **Status:** ✅ Merged **Merged:** 9/11/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/tauri-grid` --- ### 📝 Commits (9) - [`3068f24`](https://github.com/AppFlowy-IO/AppFlowy/commit/3068f2410821b813f892d274a7864dbb2cc191e1) feat: implement database database service by functions - [`617a3b7`](https://github.com/AppFlowy-IO/AppFlowy/commit/617a3b78ae60a62642f9d0f6604d536b7715b6b9) feat: define database data type - [`0720e7b`](https://github.com/AppFlowy-IO/AppFlowy/commit/0720e7b6dcb2065ada5a099f39f739bfd4b73627) feat: basic grid store and component - [`34a5e21`](https://github.com/AppFlowy-IO/AppFlowy/commit/34a5e211daf226076bf14a565c72c53b4c7ddb25) feat: data communication mechanism and simple table ui. Can add new filed and update field name. - [`2e1ef6b`](https://github.com/AppFlowy-IO/AppFlowy/commit/2e1ef6bd9322592a810a56f1ad6757aa742546cd) feat: add grid text cell and grid checkbox cell - [`1ff5016`](https://github.com/AppFlowy-IO/AppFlowy/commit/1ff501657e3ecb000ce4775905bbc0dd48693d95) feat: single select cell and multiselect cell - [`d157289`](https://github.com/AppFlowy-IO/AppFlowy/commit/d157289ff31d39a3ab87c0f8032b081cbe537e93) refactor: fix code review problems - [`8af2da7`](https://github.com/AppFlowy-IO/AppFlowy/commit/8af2da73aa56f5d929f66da2a115bbd1dec86672) feat: add new row - [`e00bb6c`](https://github.com/AppFlowy-IO/AppFlowy/commit/e00bb6c2778d8b9ed435ffbb026226bf927f2f68) feat: fix tsc error ### 📊 Changes **76 files changed** (+2987 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/index.html` (+1 -1) 📝 `frontend/appflowy_tauri/package.json` (+4 -1) 📝 `frontend/appflowy_tauri/pnpm-lock.yaml` (+321 -6) 📝 `frontend/appflowy_tauri/src/appflowy_app/AppMain.tsx` (+2 -2) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/add.svg` (+3 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/copy.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/checkbox-check.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/checkbox-uncheck.svg` (+3 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-attach.svg` (+3 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-checkbox.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-checklist.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-date.svg` (+6 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-last-edited-time.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-multi-select.svg` (+8 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-number.svg` (+3 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-person.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-single-select.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-text.svg` (+4 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/field-type-url.svg` (+3 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/database/select-check.svg` (+3 -0) _...and 56 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 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] 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:19: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#5607
No description provided.