[PR #1775] [MERGED] Skeleton task #4937

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/1775
Author: @Ascarbek
Created: 2/1/2023
Status: Merged
Merged: 2/1/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

39 files changed (+985 additions, -81 deletions)

View changed files

frontend/appflowy_tauri/.eslintignore (+2 -0)
frontend/appflowy_tauri/.eslintrc.cjs (+54 -0)
frontend/appflowy_tauri/.prettierignore (+19 -0)
frontend/appflowy_tauri/.prettierrc (+20 -0)
📝 frontend/appflowy_tauri/package.json (+10 -1)
frontend/appflowy_tauri/src/appflowy_app/App.css (+0 -7)
📝 frontend/appflowy_tauri/src/appflowy_app/App.tsx (+21 -44)
frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx (+137 -0)
frontend/appflowy_tauri/src/appflowy_app/components/TestColors/TestColors.tsx (+44 -0)
frontend/appflowy_tauri/src/appflowy_app/components/TestFonts/TestFonts.tsx (+30 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/AddSvg.tsx (+8 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/grid/application/notifications/parser.ts (+3 -3)
frontend/appflowy_tauri/src/appflowy_app/components/layout/Breadcrumbs.tsx (+19 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/FooterPanel.tsx (+12 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel.tsx (+11 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/MainPanel.tsx (+13 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.hooks.ts (+74 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.tsx (+114 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/PageOptions.tsx (+10 -0)
frontend/appflowy_tauri/src/appflowy_app/components/layout/Screen.tsx (+12 -0)

...and 19 more files

📄 Description

This PR is intended to prepare "AppFlowy Tauri" project for development.

Features:

  • code format using Prettier
  • code style check using ESLint
  • setup Vite to serve assets from another folder (app_flowy flutter)
  • import Poppins font
  • setup tailwind colors to use palette from Figma UI Kit
  • install redux/toolkit for typed states and typed action dispatch
  • basic layout components
  • Navigation component UI using special react hook

🔄 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/1775 **Author:** [@Ascarbek](https://github.com/Ascarbek) **Created:** 2/1/2023 **Status:** ✅ Merged **Merged:** 2/1/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 **39 files changed** (+985 additions, -81 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_tauri/.eslintignore` (+2 -0) ➕ `frontend/appflowy_tauri/.eslintrc.cjs` (+54 -0) ➕ `frontend/appflowy_tauri/.prettierignore` (+19 -0) ➕ `frontend/appflowy_tauri/.prettierrc` (+20 -0) 📝 `frontend/appflowy_tauri/package.json` (+10 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/App.css` (+0 -7) 📝 `frontend/appflowy_tauri/src/appflowy_app/App.tsx` (+21 -44) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx` (+137 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestColors/TestColors.tsx` (+44 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/TestFonts/TestFonts.tsx` (+30 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/AddSvg.tsx` (+8 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/grid/application/notifications/parser.ts` (+3 -3) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/Breadcrumbs.tsx` (+19 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/FooterPanel.tsx` (+12 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/HeaderPanel.tsx` (+11 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/MainPanel.tsx` (+13 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.hooks.ts` (+74 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/NavigationPanel.tsx` (+114 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/PageOptions.tsx` (+10 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/layout/Screen.tsx` (+12 -0) _...and 19 more files_ </details> ### 📄 Description This PR is intended to prepare "AppFlowy Tauri" project for development. Features: - code format using Prettier - code style check using ESLint - setup Vite to serve assets from another folder (app_flowy flutter) - import Poppins font - setup tailwind colors to use palette from Figma UI Kit - install redux/toolkit for typed states and typed action dispatch - basic layout components - Navigation component UI using special react hook --- <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#4937
No description provided.