[PR #709] [MERGED] Overhaul editor UI #858

Closed
opened 2026-03-03 00:23:31 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/709
Author: @Rokt33r
Created: 12/3/2020
Status: Merged
Merged: 12/3/2020
Merged by: @Rokt33r

Base: masterHead: new-ui-12


📝 Commits (10+)

  • 3aa20b2 Change toolbar UX
  • 7c0236b Narrow height of NavigatorItem
  • 224e401 Add NoteTitleButton
  • 38efc55 Implement isChildNode
  • 41ab05f Revamp parent folder display
  • 3af5b82 Add missing titles and click handlers
  • 72a0231 Show workspace label on workspace page
  • c9a92ab Extract atoms/FolderTreeListItem
  • 44bc2ba Adjust tag popup vertical location
  • 68e034d Remove deprecated tag state from NoteDetail

📊 Changes

29 files changed (+1295 additions, -525 deletions)

View changed files

src/components/atoms/BottomBarButton.tsx (+36 -0)
📝 src/components/atoms/CodeEditor.tsx (+9 -0)
📝 src/components/atoms/CustomizedCodeEditor.tsx (+3 -0)
src/components/atoms/FolderTreeListItem.tsx (+79 -0)
📝 src/components/atoms/NavigatorItem.tsx (+5 -3)
📝 src/components/atoms/NoteDetailNavigatorItem.tsx (+2 -1)
📝 src/components/atoms/TagNavigatorListItem.tsx (+3 -2)
📝 src/components/atoms/TagNavigatorNewTagPopup.tsx (+1 -1)
src/components/atoms/ToolbarButton.tsx (+82 -0)
📝 src/components/atoms/ToolbarIconButton.tsx (+9 -8)
📝 src/components/atoms/ToolbarSeparator.tsx (+3 -1)
src/components/atoms/ToolbarSlashSeparator.tsx (+24 -0)
src/components/molecules/EditorIndentationStatus.tsx (+69 -0)
src/components/molecules/EditorKeyMapSelect.tsx (+41 -0)
src/components/molecules/EditorSelectionStatus.tsx (+51 -0)
src/components/molecules/EditorThemeSelect.tsx (+57 -0)
📝 src/components/molecules/NoteDetailTagNavigator.tsx (+5 -4)
src/components/molecules/NotePageToolbarFolderHeader.tsx (+70 -0)
src/components/molecules/NotePageToolbarNoteHeader.tsx (+342 -0)
src/components/molecules/NotePathnameNavigator.tsx (+0 -154)

...and 9 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/709 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 12/3/2020 **Status:** ✅ Merged **Merged:** 12/3/2020 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `new-ui-12` --- ### 📝 Commits (10+) - [`3aa20b2`](https://github.com/BoostIO/BoostNote-App/commit/3aa20b2306411d1438378f9d54441736a7a13fef) Change toolbar UX - [`7c0236b`](https://github.com/BoostIO/BoostNote-App/commit/7c0236bd65f2050f9e408a662b857ed1d45761c7) Narrow height of NavigatorItem - [`224e401`](https://github.com/BoostIO/BoostNote-App/commit/224e4010efea1d50fde89536d5820fcde4014378) Add NoteTitleButton - [`38efc55`](https://github.com/BoostIO/BoostNote-App/commit/38efc554de4840cbfd8e69d6d2a80f729d169448) Implement isChildNode - [`41ab05f`](https://github.com/BoostIO/BoostNote-App/commit/41ab05f655893b535a5a3c49641a64b0dda5a884) Revamp parent folder display - [`3af5b82`](https://github.com/BoostIO/BoostNote-App/commit/3af5b822b22485a89caeb2343b4513deaf498905) Add missing titles and click handlers - [`72a0231`](https://github.com/BoostIO/BoostNote-App/commit/72a0231217071753c244e192a50f536c345eb63c) Show workspace label on workspace page - [`c9a92ab`](https://github.com/BoostIO/BoostNote-App/commit/c9a92ab28aef69d42eae232a0785959557573545) Extract atoms/FolderTreeListItem - [`44bc2ba`](https://github.com/BoostIO/BoostNote-App/commit/44bc2bab39691b5ce1f30ba9d7cfeb697bf9bb0e) Adjust tag popup vertical location - [`68e034d`](https://github.com/BoostIO/BoostNote-App/commit/68e034d29742d3961a3eebe86b7940e5755874b0) Remove deprecated tag state from NoteDetail ### 📊 Changes **29 files changed** (+1295 additions, -525 deletions) <details> <summary>View changed files</summary> ➕ `src/components/atoms/BottomBarButton.tsx` (+36 -0) 📝 `src/components/atoms/CodeEditor.tsx` (+9 -0) 📝 `src/components/atoms/CustomizedCodeEditor.tsx` (+3 -0) ➕ `src/components/atoms/FolderTreeListItem.tsx` (+79 -0) 📝 `src/components/atoms/NavigatorItem.tsx` (+5 -3) 📝 `src/components/atoms/NoteDetailNavigatorItem.tsx` (+2 -1) 📝 `src/components/atoms/TagNavigatorListItem.tsx` (+3 -2) 📝 `src/components/atoms/TagNavigatorNewTagPopup.tsx` (+1 -1) ➕ `src/components/atoms/ToolbarButton.tsx` (+82 -0) 📝 `src/components/atoms/ToolbarIconButton.tsx` (+9 -8) 📝 `src/components/atoms/ToolbarSeparator.tsx` (+3 -1) ➕ `src/components/atoms/ToolbarSlashSeparator.tsx` (+24 -0) ➕ `src/components/molecules/EditorIndentationStatus.tsx` (+69 -0) ➕ `src/components/molecules/EditorKeyMapSelect.tsx` (+41 -0) ➕ `src/components/molecules/EditorSelectionStatus.tsx` (+51 -0) ➕ `src/components/molecules/EditorThemeSelect.tsx` (+57 -0) 📝 `src/components/molecules/NoteDetailTagNavigator.tsx` (+5 -4) ➕ `src/components/molecules/NotePageToolbarFolderHeader.tsx` (+70 -0) ➕ `src/components/molecules/NotePageToolbarNoteHeader.tsx` (+342 -0) ➖ `src/components/molecules/NotePathnameNavigator.tsx` (+0 -154) _...and 9 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:23:31 +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#858
No description provided.