[PR #107] [MERGED] Folder manage #571

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

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/107
Author: @Rokt33r
Created: 12/8/2019
Status: Merged
Merged: 12/8/2019
Merged by: @Rokt33r

Base: masterHead: folder-manage


📝 Commits (10+)

  • 753f376 Implement untrash and purge
  • ddaaab3 Discard types of styled-components
  • 7826209 Fix contextMenu style
  • cd6b044 Add sideNavOpenedItemList prop to GeneralStatus
  • a412080 Use set for openedItem
  • 92d106e Improve sc types
  • 04536b7 Improve disabled text color
  • 403749b Renew SideNav component structure
  • ef09455 Fix folderMap update after updating note's pathname
  • 9f2889e Impelemnt moving a note via drag and drop(Same storage)

📊 Changes

27 files changed (+1144 additions, -546 deletions)

View changed files

📝 package-lock.json (+9 -30)
📝 package.json (+0 -1)
📝 src/components/ContextMenu/styled.ts (+3 -0)
📝 src/components/Dialog/styled.ts (+2 -2)
📝 src/components/GlobalStyle.tsx (+2 -1)
📝 src/components/NotePage/NoteDetail/NoteDetail.tsx (+56 -4)
📝 src/components/NotePage/NoteList/NoteItem.tsx (+16 -5)
📝 src/components/NotePage/NotePage.tsx (+34 -21)
src/components/SideNavigator/ControlButton.tsx (+34 -0)
src/components/SideNavigator/FolderListFragment.tsx (+271 -0)
📝 src/components/SideNavigator/SideNavigator.tsx (+147 -67)
📝 src/components/SideNavigator/SideNavigatorItem.tsx (+114 -85)
src/components/SideNavigator/StorageNavigatorItem.tsx (+0 -285)
src/components/SideNavigator/TagListFragment.tsx (+90 -0)
📝 src/lib/db/NoteDb.ts (+5 -1)
📝 src/lib/db/store.ts (+208 -34)
src/lib/dnd.ts (+38 -0)
📝 src/lib/generalStatus/store.ts (+59 -3)
📝 src/lib/generalStatus/types.ts (+1 -0)
src/lib/nav.ts (+7 -0)

...and 7 more files

📄 Description

  • Restructure side nav
  • Implement dnd note to folder

🔄 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/107 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 12/8/2019 **Status:** ✅ Merged **Merged:** 12/8/2019 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `folder-manage` --- ### 📝 Commits (10+) - [`753f376`](https://github.com/BoostIO/BoostNote-App/commit/753f3763199a56e03befcf377c4745851a9f1060) Implement untrash and purge - [`ddaaab3`](https://github.com/BoostIO/BoostNote-App/commit/ddaaab3e839c2eee4e167d608f169aa0622e0639) Discard types of styled-components - [`7826209`](https://github.com/BoostIO/BoostNote-App/commit/782620921317e3195fe09e2f2dce8bf0a58ab0c9) Fix contextMenu style - [`cd6b044`](https://github.com/BoostIO/BoostNote-App/commit/cd6b044bc7225c720e6d077381288c208fa38f29) Add sideNavOpenedItemList prop to GeneralStatus - [`a412080`](https://github.com/BoostIO/BoostNote-App/commit/a41208017cebce2f9900f15ab1270a2538350ebd) Use set for openedItem - [`92d106e`](https://github.com/BoostIO/BoostNote-App/commit/92d106eb09b1967b6a8b75b54e6d3ebc426eccf4) Improve sc types - [`04536b7`](https://github.com/BoostIO/BoostNote-App/commit/04536b76159769d3fc741b9e9f79c7e65f8a3b79) Improve disabled text color - [`403749b`](https://github.com/BoostIO/BoostNote-App/commit/403749b9d3caa7de5db442e726607bc882d0ffe9) Renew SideNav component structure - [`ef09455`](https://github.com/BoostIO/BoostNote-App/commit/ef094559304886cdfb8595be17546020206d76aa) Fix folderMap update after updating note's pathname - [`9f2889e`](https://github.com/BoostIO/BoostNote-App/commit/9f2889e0634a6e3c351ce0b947c352fc69cf3c98) Impelemnt moving a note via drag and drop(Same storage) ### 📊 Changes **27 files changed** (+1144 additions, -546 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+9 -30) 📝 `package.json` (+0 -1) 📝 `src/components/ContextMenu/styled.ts` (+3 -0) 📝 `src/components/Dialog/styled.ts` (+2 -2) 📝 `src/components/GlobalStyle.tsx` (+2 -1) 📝 `src/components/NotePage/NoteDetail/NoteDetail.tsx` (+56 -4) 📝 `src/components/NotePage/NoteList/NoteItem.tsx` (+16 -5) 📝 `src/components/NotePage/NotePage.tsx` (+34 -21) ➕ `src/components/SideNavigator/ControlButton.tsx` (+34 -0) ➕ `src/components/SideNavigator/FolderListFragment.tsx` (+271 -0) 📝 `src/components/SideNavigator/SideNavigator.tsx` (+147 -67) 📝 `src/components/SideNavigator/SideNavigatorItem.tsx` (+114 -85) ➖ `src/components/SideNavigator/StorageNavigatorItem.tsx` (+0 -285) ➕ `src/components/SideNavigator/TagListFragment.tsx` (+90 -0) 📝 `src/lib/db/NoteDb.ts` (+5 -1) 📝 `src/lib/db/store.ts` (+208 -34) ➕ `src/lib/dnd.ts` (+38 -0) 📝 `src/lib/generalStatus/store.ts` (+59 -3) 📝 `src/lib/generalStatus/types.ts` (+1 -0) ➕ `src/lib/nav.ts` (+7 -0) _...and 7 more files_ </details> ### 📄 Description - Restructure side nav - Implement dnd note to folder --- <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:12 +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#571
No description provided.