[PR #2678] [MERGED] Fix/tauri board events #5361

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2678
Author: @Ascarbek
Created: 6/1/2023
Status: Merged
Merged: 6/5/2023
Merged by: @qinluhe

Base: developHead: fix/tauri-board-events


📝 Commits (10+)

  • 786563d chore: focus name input on field edit
  • bebdf7a fix: remove random id for duplicated view
  • e86d0a3 fix: use alias for imports
  • f8ff51b fix: folder, grid, board bugs
  • f033dc2 chore: remove log
  • 7895868 fix: update options list on add
  • ddff904 chore: close on delete option
  • 832b3ea chore: show and hide field
  • 7186354 chore: add field with specific type
  • 7736493 chore: small cleanup

📊 Changes

26 files changed (+254 additions, -116 deletions)

View changed files

📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/EditCheckListPopup.tsx (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditFieldPopup.tsx (+15 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditRow.tsx (+20 -15)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/Options/EditCellOptionPopup.tsx (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/PropertiesPanel.tsx (+57 -12)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts (+10 -6)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts (+33 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useDatabase.ts (+7 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useRow.ts (+7 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/Board.tsx (+1 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCard.tsx (+5 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/BoardGroup.tsx (+20 -7)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/FolderItem.hooks.ts (+12 -12)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.hooks.ts (+3 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.tsx (+4 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationResizer.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NewFolderButton.hooks.ts (+3 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/PageItem.hooks.ts (+1 -5)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/PageItem.tsx (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/Screen.tsx (+1 -1)

...and 6 more files

📄 Description

This PR fixes: [2401] [2406]


🔄 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/2678 **Author:** [@Ascarbek](https://github.com/Ascarbek) **Created:** 6/1/2023 **Status:** ✅ Merged **Merged:** 6/5/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `develop` ← **Head:** `fix/tauri-board-events` --- ### 📝 Commits (10+) - [`786563d`](https://github.com/AppFlowy-IO/AppFlowy/commit/786563d04ae7f9b9256a0e5652b849e782016644) chore: focus name input on field edit - [`bebdf7a`](https://github.com/AppFlowy-IO/AppFlowy/commit/bebdf7a6b6f37cf16e37f58f31d070fcfb97aba1) fix: remove random id for duplicated view - [`e86d0a3`](https://github.com/AppFlowy-IO/AppFlowy/commit/e86d0a378ef9e15ee6265ce2f420d156e100d663) fix: use alias for imports - [`f8ff51b`](https://github.com/AppFlowy-IO/AppFlowy/commit/f8ff51bb8ddda0e806d2c6b10ce8ee6c40c3587a) fix: folder, grid, board bugs - [`f033dc2`](https://github.com/AppFlowy-IO/AppFlowy/commit/f033dc24518fb95fb40ed764f9b3bf8dd94af503) chore: remove log - [`7895868`](https://github.com/AppFlowy-IO/AppFlowy/commit/789586849fecdb7cf7e46b15fa71092dd4bcfff9) fix: update options list on add - [`ddff904`](https://github.com/AppFlowy-IO/AppFlowy/commit/ddff9041237e1ae381f471caed3bf862549eb38d) chore: close on delete option - [`832b3ea`](https://github.com/AppFlowy-IO/AppFlowy/commit/832b3ea22115307e483ff432dbdc93657907eeca) chore: show and hide field - [`7186354`](https://github.com/AppFlowy-IO/AppFlowy/commit/7186354f0d5f2a80f82f15213cce243b45f0b7b7) chore: add field with specific type - [`7736493`](https://github.com/AppFlowy-IO/AppFlowy/commit/7736493d84697da696aa09acec63b1a63966a4dc) chore: small cleanup ### 📊 Changes **26 files changed** (+254 additions, -116 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CheckList/EditCheckListPopup.tsx` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditFieldPopup.tsx` (+15 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditRow.tsx` (+20 -15) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/Options/EditCellOptionPopup.tsx` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/PropertiesPanel.tsx` (+57 -12) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts` (+10 -6) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts` (+33 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useDatabase.ts` (+7 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useRow.ts` (+7 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/Board.tsx` (+1 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCard.tsx` (+5 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardGroup.tsx` (+20 -7) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/FolderItem.hooks.ts` (+12 -12) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.hooks.ts` (+3 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationPanel.tsx` (+4 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NavigationResizer.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/NewFolderButton.hooks.ts` (+3 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/PageItem.hooks.ts` (+1 -5) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel/PageItem.tsx` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/Screen.tsx` (+1 -1) _...and 6 more files_ </details> ### 📄 Description This PR fixes: [2401] [2406] --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:18:24 +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#5361
No description provided.