[PR #1915] [MERGED] using controllers in react hooks WIP #5010

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

📋 Pull Request Information

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

Base: feat/appflowy_tauri_3Head: feat/appflowy_tauri_3


📝 Commits (10+)

  • 3619fad chore: add edit / create field test
  • a3f4dfa chore: add delete field test
  • e5a1bd2 chore: change log class arguments
  • c743089 chore: delete/create row
  • fd135fb chore: set tracing log to debug level
  • f58c91f fix: filter notification with id
  • 2e4df44 chore: add get single select type option data
  • 08bb4e4 Merge remote-tracking branch 'origin/feat/appflowy_tauri_3' into feat/appflowy_tauri_3
  • c35db5c fix: high cpu usage
  • dcf8fd5 chore: format code

📊 Changes

37 files changed (+619 additions, -344 deletions)

View changed files

📝 frontend/appflowy_tauri/package.json (+2 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/DatabaseTestHelper.ts (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestGrid.tsx (+1 -1)
📝 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)

...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/1915 **Author:** [@Ascarbek](https://github.com/Ascarbek) **Created:** 3/3/2023 **Status:** ✅ Merged **Merged:** 3/8/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `feat/appflowy_tauri_3` ← **Head:** `feat/appflowy_tauri_3` --- ### 📝 Commits (10+) - [`3619fad`](https://github.com/AppFlowy-IO/AppFlowy/commit/3619fadf572c20bd4680da9bd6cd79e88832422a) chore: add edit / create field test - [`a3f4dfa`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3f4dfacba302d3344fb343c40beca83a8579838) chore: add delete field test - [`e5a1bd2`](https://github.com/AppFlowy-IO/AppFlowy/commit/e5a1bd2c525ae7bc60a4d98fa7dde13274b027bf) chore: change log class arguments - [`c743089`](https://github.com/AppFlowy-IO/AppFlowy/commit/c74308999d9410a60f1ff2e368bb839e3f000766) chore: delete/create row - [`fd135fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/fd135fb664de23e18d1f7c0cb588ab9fccc97f28) chore: set tracing log to debug level - [`f58c91f`](https://github.com/AppFlowy-IO/AppFlowy/commit/f58c91fb3fd9c200d1cf7576884a37c7a0f2686c) fix: filter notification with id - [`2e4df44`](https://github.com/AppFlowy-IO/AppFlowy/commit/2e4df44c292c9aacac3ee95fb7f168567d0f0dd1) chore: add get single select type option data - [`08bb4e4`](https://github.com/AppFlowy-IO/AppFlowy/commit/08bb4e411697522d95a36ee1e33a841d081db44a) Merge remote-tracking branch 'origin/feat/appflowy_tauri_3' into feat/appflowy_tauri_3 - [`c35db5c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c35db5c2a232b0855b455739e6d87ae02fa7126d) fix: high cpu usage - [`dcf8fd5`](https://github.com/AppFlowy-IO/AppFlowy/commit/dcf8fd538dfcdfff91136a8ca773df8d31fda2ea) chore: format code ### 📊 Changes **37 files changed** (+619 additions, -344 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/package.json` (+2 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/DatabaseTestHelper.ts` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestGrid.tsx` (+1 -1) 📝 `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) _...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:49 +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#5010
No description provided.