[PR #1937] [MERGED] Feat/appflowy tauri 3 #5026

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1937
Author: @appflowy
Created: 3/8/2023
Status: Merged
Merged: 3/8/2023
Merged by: @appflowy

Base: mainHead: feat/appflowy_tauri_3


📝 Commits (3)

  • cb2caf0 feat: using controllers in react hooks WIP (#1915)
  • 8675196 chore: Merge branch 'main' into feat/appflowy_tauri_3
  • 947baa4 ci: fix wanrings

📊 Changes

34 files changed (+616 additions, -342 deletions)

View changed files

📝 frontend/appflowy_tauri/package.json (+2 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/Database.hooks.ts (+8 -5)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts (+108 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts (+32 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useDatabase.ts (+68 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useRow.ts (+43 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/ProtectedRoutes.tsx (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/Board.hooks.ts (+7 -17)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/Board.tsx (+8 -9)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/BoardBlock.tsx (+14 -15)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCard.tsx (+27 -31)
frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCell.tsx (+43 -0)
frontend/appflowy_tauri/src/appflowy_app/components/board/BoardDateCell.tsx (+18 -0)
frontend/appflowy_tauri/src/appflowy_app/components/board/BoardOptionsCell.tsx (+25 -0)
frontend/appflowy_tauri/src/appflowy_app/components/board/BoardTextCell.tsx (+18 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/Breadcrumbs.tsx (+9 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/HeaderPanel.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/MainPanel.tsx (+33 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.hooks.ts (+17 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.tsx (+18 -6)

...and 14 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/1937 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 3/8/2023 **Status:** ✅ Merged **Merged:** 3/8/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/appflowy_tauri_3` --- ### 📝 Commits (3) - [`cb2caf0`](https://github.com/AppFlowy-IO/AppFlowy/commit/cb2caf06d7ac00632adcaf03df1e536402763c9d) feat: using controllers in react hooks WIP (#1915) - [`8675196`](https://github.com/AppFlowy-IO/AppFlowy/commit/8675196f7d3f9bcea41933cde1d76d3b7b0a7ffb) chore: Merge branch 'main' into feat/appflowy_tauri_3 - [`947baa4`](https://github.com/AppFlowy-IO/AppFlowy/commit/947baa4d309d2a3ecf35ec567f375ffbeb17344f) ci: fix wanrings ### 📊 Changes **34 files changed** (+616 additions, -342 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/package.json` (+2 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Database.hooks.ts` (+8 -5) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts` (+108 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts` (+32 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useDatabase.ts` (+68 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useRow.ts` (+43 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/ProtectedRoutes.tsx` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/Board.hooks.ts` (+7 -17) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/Board.tsx` (+8 -9) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardBlock.tsx` (+14 -15) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCard.tsx` (+27 -31) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCell.tsx` (+43 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardDateCell.tsx` (+18 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardOptionsCell.tsx` (+25 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardTextCell.tsx` (+18 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/Breadcrumbs.tsx` (+9 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/HeaderPanel.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/MainPanel.tsx` (+33 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.hooks.ts` (+17 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.tsx` (+18 -6) _...and 14 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:53 +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#5026
No description provided.