[PR #1784] [MERGED] chore: navigation items events #4939

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

📋 Pull Request Information

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

Base: feat/appflowy_tauriHead: feat/appflowy_tauri


📝 Commits (10+)

  • d8ce91a chore: change tauri dev npm script
  • dfff22e chore: setup prettier
  • a82eb2d chore: add protobuf type
  • 2948d7a chore: move test calls to separate component
  • 3373fac chore: serve assets from app_flowy folder
  • 732ff71 chore: import poppins font
  • af96dda chore: install eslint, remove errors
  • 803e0a3 placeholder components
  • 251bf78 chore: import colors from UI kit, footer panel
  • cfe08e9 chore: reorganise components

📊 Changes

41 files changed (+940 additions, -196 deletions)

View changed files

📝 frontend/appflowy_tauri/src/appflowy_app/App.tsx (+6 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/AddSvg.tsx (+1 -1)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/BoardSvg.tsx (+20 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/Button.tsx (+40 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/CopySvg.tsx (+18 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/Details2Svg.tsx (+8 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/DocumentSvg.tsx (+18 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditSvg.tsx (+13 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/GridSvg.tsx (+30 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/Popup.tsx (+41 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/TrashSvg.tsx (+34 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/useOutsideClick.ts (+28 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/useResizer.ts (+27 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/AppLogo.tsx (+8 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/Breadcrumbs.tsx (+0 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/HeaderPanel.tsx (+0 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/PageOptions.tsx (+6 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/MainPanel.tsx (+1 -1)
frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.hooks.ts (+0 -74)
frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.tsx (+0 -114)

...and 21 more files

📄 Description

This PR includes:

  • rename, delete and duplicate folders
  • rename, delete and duplicate pages
  • add board, grid and document pages option
  • page routes for document, board and grid

🔄 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/1784 **Author:** [@Ascarbek](https://github.com/Ascarbek) **Created:** 2/2/2023 **Status:** ✅ Merged **Merged:** 2/3/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `feat/appflowy_tauri` ← **Head:** `feat/appflowy_tauri` --- ### 📝 Commits (10+) - [`d8ce91a`](https://github.com/AppFlowy-IO/AppFlowy/commit/d8ce91a73bb354c477c20f7c144653ab5aee3a16) chore: change tauri dev npm script - [`dfff22e`](https://github.com/AppFlowy-IO/AppFlowy/commit/dfff22e35886fcdcafbd8d6257579e2f01a77364) chore: setup prettier - [`a82eb2d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a82eb2d581937a3233f212e6c247a40e80d25599) chore: add protobuf type - [`2948d7a`](https://github.com/AppFlowy-IO/AppFlowy/commit/2948d7a38cb334c243e7f98cddd8fe0b10a83279) chore: move test calls to separate component - [`3373fac`](https://github.com/AppFlowy-IO/AppFlowy/commit/3373faca36780f1c909380f74177178386e05dfe) chore: serve assets from app_flowy folder - [`732ff71`](https://github.com/AppFlowy-IO/AppFlowy/commit/732ff714364143b0d72321344df3842a48714921) chore: import poppins font - [`af96dda`](https://github.com/AppFlowy-IO/AppFlowy/commit/af96ddab28507ea3ced150ac284623d5c8906a66) chore: install eslint, remove errors - [`803e0a3`](https://github.com/AppFlowy-IO/AppFlowy/commit/803e0a3e2a34c2114dd2444e0c7656c97acd16c8) placeholder components - [`251bf78`](https://github.com/AppFlowy-IO/AppFlowy/commit/251bf7813818fa452b1864cab5576fc6cca3cb75) chore: import colors from UI kit, footer panel - [`cfe08e9`](https://github.com/AppFlowy-IO/AppFlowy/commit/cfe08e90a6d1f4e03efecbc6b44f9308807250ed) chore: reorganise components ### 📊 Changes **41 files changed** (+940 additions, -196 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src/appflowy_app/App.tsx` (+6 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/AddSvg.tsx` (+1 -1) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/BoardSvg.tsx` (+20 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Button.tsx` (+40 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/CopySvg.tsx` (+18 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Details2Svg.tsx` (+8 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/DocumentSvg.tsx` (+18 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditSvg.tsx` (+13 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/GridSvg.tsx` (+30 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/Popup.tsx` (+41 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/TrashSvg.tsx` (+34 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/useOutsideClick.ts` (+28 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/useResizer.ts` (+27 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/AppLogo.tsx` (+8 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/Breadcrumbs.tsx` (+0 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/HeaderPanel.tsx` (+0 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel/PageOptions.tsx` (+6 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/MainPanel.tsx` (+1 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.hooks.ts` (+0 -74) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.tsx` (+0 -114) _...and 21 more files_ </details> ### 📄 Description This PR includes: - rename, delete and duplicate folders - rename, delete and duplicate pages - add board, grid and document pages option - page routes for document, board and grid --- <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: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#4939
No description provided.