[PR #75] [MERGED] Side nav #542

Closed
opened 2026-03-03 00:22:04 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/75
Author: @Rokt33r
Created: 10/13/2019
Status: Merged
Merged: 10/13/2019
Merged by: @Rokt33r

Base: masterHead: side-nav


📝 Commits (10+)

  • 058e4f1 Implement Split editor
  • fe7def5 Disable user-select for NoteItem
  • e7957d5 Fix toolbar button group border radius style
  • d5313e6 Add ToolbarIconInput for search input
  • 23f0bb1 Add notebook icon to StorageItem
  • d28f091 Implement trashNote
  • a57badd Improve Link component
  • 7bc1a82 Introduce tree view to sideNav
  • 43c6de4 Enable side nav context menu
  • b7aa28f Apply active style for sidenav items

📊 Changes

22 files changed (+1255 additions, -366 deletions)

View changed files

📝 package-lock.json (+555 -5)
📝 package.json (+4 -2)
📝 src/components/App.tsx (+6 -4)
📝 src/components/NotePage/NoteDetail/NoteDetail.tsx (+34 -10)
📝 src/components/NotePage/NoteList/NoteItem.tsx (+1 -0)
📝 src/components/NotePage/NoteList/NoteList.tsx (+11 -1)
📝 src/components/NotePage/NotePage.tsx (+2 -1)
📝 src/components/SideNavigator/SideNavigator.tsx (+129 -27)
src/components/SideNavigator/SideNavigatorItem.tsx (+100 -0)
src/components/SideNavigator/StorageItem/FolderItem.tsx (+0 -87)
src/components/SideNavigator/StorageItem/StorageItem.tsx (+0 -167)
src/components/SideNavigator/StorageItem/styled.tsx (+0 -43)
src/components/SideNavigator/StorageNavigatorItem.tsx (+265 -0)
📝 src/components/atoms/CodeEditor.tsx (+4 -0)
📝 src/components/atoms/Icon.tsx (+3 -2)
📝 src/components/atoms/ToolbarButtonGroup.tsx (+6 -0)
src/components/atoms/ToolbarIconInput.tsx (+48 -0)
📝 src/components/atoms/TwoPaneLayout.tsx (+28 -5)
📝 src/lib/db/store.ts (+25 -1)
📝 src/lib/router/Link.tsx (+21 -5)

...and 2 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/BoostIO/BoostNote-App/pull/75 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 10/13/2019 **Status:** ✅ Merged **Merged:** 10/13/2019 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `side-nav` --- ### 📝 Commits (10+) - [`058e4f1`](https://github.com/BoostIO/BoostNote-App/commit/058e4f1d619afb74d107bd0e0b6460ab4b56fe74) Implement Split editor - [`fe7def5`](https://github.com/BoostIO/BoostNote-App/commit/fe7def5410f1ffa5ce891ec6ede264d88cd9e3df) Disable user-select for NoteItem - [`e7957d5`](https://github.com/BoostIO/BoostNote-App/commit/e7957d50f8594bf1acb19a46d94482c21e2346b9) Fix toolbar button group border radius style - [`d5313e6`](https://github.com/BoostIO/BoostNote-App/commit/d5313e66889306b5ce3cd5f18f58b1caccfbfbf8) Add ToolbarIconInput for search input - [`23f0bb1`](https://github.com/BoostIO/BoostNote-App/commit/23f0bb185c9d882dfcea78bad79d21e8140fd8ce) Add notebook icon to StorageItem - [`d28f091`](https://github.com/BoostIO/BoostNote-App/commit/d28f0916e3df53206f8491c238389a252ed557f0) Implement trashNote - [`a57badd`](https://github.com/BoostIO/BoostNote-App/commit/a57baddae5b35492bd2795bde44d035a6cfd0d79) Improve Link component - [`7bc1a82`](https://github.com/BoostIO/BoostNote-App/commit/7bc1a82fad866e2b623f55ff98edd534aa3f7844) Introduce tree view to sideNav - [`43c6de4`](https://github.com/BoostIO/BoostNote-App/commit/43c6de4995eb229bca8fa9f22249f3ee922475a3) Enable side nav context menu - [`b7aa28f`](https://github.com/BoostIO/BoostNote-App/commit/b7aa28f58bde3e543ed68ecfe8b0a96cf1489448) Apply active style for sidenav items ### 📊 Changes **22 files changed** (+1255 additions, -366 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+555 -5) 📝 `package.json` (+4 -2) 📝 `src/components/App.tsx` (+6 -4) 📝 `src/components/NotePage/NoteDetail/NoteDetail.tsx` (+34 -10) 📝 `src/components/NotePage/NoteList/NoteItem.tsx` (+1 -0) 📝 `src/components/NotePage/NoteList/NoteList.tsx` (+11 -1) 📝 `src/components/NotePage/NotePage.tsx` (+2 -1) 📝 `src/components/SideNavigator/SideNavigator.tsx` (+129 -27) ➕ `src/components/SideNavigator/SideNavigatorItem.tsx` (+100 -0) ➖ `src/components/SideNavigator/StorageItem/FolderItem.tsx` (+0 -87) ➖ `src/components/SideNavigator/StorageItem/StorageItem.tsx` (+0 -167) ➖ `src/components/SideNavigator/StorageItem/styled.tsx` (+0 -43) ➕ `src/components/SideNavigator/StorageNavigatorItem.tsx` (+265 -0) 📝 `src/components/atoms/CodeEditor.tsx` (+4 -0) 📝 `src/components/atoms/Icon.tsx` (+3 -2) 📝 `src/components/atoms/ToolbarButtonGroup.tsx` (+6 -0) ➕ `src/components/atoms/ToolbarIconInput.tsx` (+48 -0) 📝 `src/components/atoms/TwoPaneLayout.tsx` (+28 -5) 📝 `src/lib/db/store.ts` (+25 -1) 📝 `src/lib/router/Link.tsx` (+21 -5) _...and 2 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>
kerem 2026-03-03 00:22:04 +03: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
starred/BoostNote-App#542
No description provided.