[PR #1927] [CLOSED] Feat/appflowy tauri 3 #5021

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1927
Author: @mikiastilahun
Created: 3/5/2023
Status: Closed

Base: feat/appflowy_tauri_3Head: feat/appflowy_tauri_3


📝 Commits (10+)

  • 98ef6a4 fix: move grid options to setting dropdown
  • bbef8b4 chore: rename classes to models
  • adfbccc refactor: add effects and reducers folder
  • c0683c9 chore: update user data storage path
  • 4389c1d chore:Merge branch 'main' into feat/appflowy_tauri_2
  • 53cc058 chore: subscribe callback
  • 209d53a chore: nav items persist, board layout (#1879)
  • 3ac07f5 chore: Merge branch 'main' into feat/appflowy_tauri_2
  • c6bc497 chore: fix compile errors
  • 8c46bf7 Merge branch 'AppFlowy-IO:feat/appflowy_tauri_2' into feat/appflowy_tauri_2

📊 Changes

37 files changed (+547 additions, -478 deletions)

View changed files

📝 frontend/appflowy_tauri/package.json (+2 -0)
📝 frontend/appflowy_tauri/src-tauri/src/init.rs (+16 -16)
📝 frontend/appflowy_tauri/src/appflowy_app/App.tsx (+16 -15)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/GroupBySvg.tsx (+11 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/Login/Login.hooks.ts (+8 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/Login/Login.tsx (+8 -7)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/SignUp/SignUp.hooks.ts (+8 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/SignUp/SignUp.tsx (+10 -5)
📝 frontend/appflowy_tauri/src/appflowy_app/components/error/Error.hooks.ts (+7 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/error/ErrorHandlerPage.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/grid/GridAddRow/GridAddRow.hooks.ts (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/grid/GridAddRow/GridAddRow.tsx (+0 -0)
frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTable/GridTable.hooks.tsx (+93 -0)
frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTable/GridTable.tsx (+28 -0)
frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableCell/GridTableCell.hooks.ts (+27 -0)
frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableCell/GridTableCell.tsx (+17 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableCount/GridTableCount.hooks.ts (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableHeader/GridTableHeader.hooks.tsx (+9 -9)
📝 frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableHeader/GridTableHeader.tsx (+51 -32)
frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableRow/GridTableRow.tsx (+21 -0)

...and 17 more files

📄 Description

No description provided


🔄 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/1927 **Author:** [@mikiastilahun](https://github.com/mikiastilahun) **Created:** 3/5/2023 **Status:** ❌ Closed **Base:** `feat/appflowy_tauri_3` ← **Head:** `feat/appflowy_tauri_3` --- ### 📝 Commits (10+) - [`98ef6a4`](https://github.com/AppFlowy-IO/AppFlowy/commit/98ef6a4c4ff7947930722d1bf3b032a1a5dfbfd4) fix: move grid options to setting dropdown - [`bbef8b4`](https://github.com/AppFlowy-IO/AppFlowy/commit/bbef8b46e58bf192d4e82aa71974456c617eb4ba) chore: rename classes to models - [`adfbccc`](https://github.com/AppFlowy-IO/AppFlowy/commit/adfbccc21153c6b4d9061ba4956977b666335c86) refactor: add effects and reducers folder - [`c0683c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/c0683c9fd5b56c861f24180425d636b85c577f8d) chore: update user data storage path - [`4389c1d`](https://github.com/AppFlowy-IO/AppFlowy/commit/4389c1d0cc778dfea6e326c4700df646e43ebdb2) chore:Merge branch 'main' into feat/appflowy_tauri_2 - [`53cc058`](https://github.com/AppFlowy-IO/AppFlowy/commit/53cc058ce54e5c4fe2541bdef02eb6a85ae4a98e) chore: subscribe callback - [`209d53a`](https://github.com/AppFlowy-IO/AppFlowy/commit/209d53a1136c43b0285fa0cf69710b61293407ce) chore: nav items persist, board layout (#1879) - [`3ac07f5`](https://github.com/AppFlowy-IO/AppFlowy/commit/3ac07f54b74525f92d38b9ceb55aaae9cf3559ab) chore: Merge branch 'main' into feat/appflowy_tauri_2 - [`c6bc497`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6bc4972c7117026461be275a5ac8215de2c7f17) chore: fix compile errors - [`8c46bf7`](https://github.com/AppFlowy-IO/AppFlowy/commit/8c46bf74af22f570ef27badea3dcc7ef152eb8e8) Merge branch 'AppFlowy-IO:feat/appflowy_tauri_2' into feat/appflowy_tauri_2 ### 📊 Changes **37 files changed** (+547 additions, -478 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/package.json` (+2 -0) 📝 `frontend/appflowy_tauri/src-tauri/src/init.rs` (+16 -16) 📝 `frontend/appflowy_tauri/src/appflowy_app/App.tsx` (+16 -15) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/GroupBySvg.tsx` (+11 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/Login/Login.hooks.ts` (+8 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/Login/Login.tsx` (+8 -7) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/SignUp/SignUp.hooks.ts` (+8 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/SignUp/SignUp.tsx` (+10 -5) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/error/Error.hooks.ts` (+7 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/error/ErrorHandlerPage.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridAddRow/GridAddRow.hooks.ts` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridAddRow/GridAddRow.tsx` (+0 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTable/GridTable.hooks.tsx` (+93 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTable/GridTable.tsx` (+28 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableCell/GridTableCell.hooks.ts` (+27 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableCell/GridTableCell.tsx` (+17 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableCount/GridTableCount.hooks.ts` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableHeader/GridTableHeader.hooks.tsx` (+9 -9) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableHeader/GridTableHeader.tsx` (+51 -32) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/grid/GridTableRow/GridTableRow.tsx` (+21 -0) _...and 17 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:16:52 +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#5021
No description provided.