[PR #62] [MERGED] Features/update style #539

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/62
Author: @Rokt33r
Created: 1/7/2019
Status: Merged
Merged: 1/30/2019
Merged by: @Rokt33r

Base: masterHead: features/update-style


📝 Commits (10+)

📊 Changes

50 files changed (+1276 additions, -566 deletions)

View changed files

📝 .prettierrc (+2 -1)
📝 package-lock.json (+319 -317)
📝 package.json (+6 -5)
📝 src/main/components/App.tsx (+21 -17)
src/main/components/ContextMenu/ContextMenu.tsx (+86 -0)
src/main/components/ContextMenu/index.ts (+3 -0)
src/main/components/ContextMenu/styled.ts (+43 -0)
src/main/components/Dialog/Dialog.tsx (+53 -0)
src/main/components/Dialog/DialogIcon.tsx (+28 -0)
src/main/components/Dialog/PromptDialogBody.tsx (+90 -0)
src/main/components/Dialog/styled.ts (+84 -0)
📝 src/main/components/GlobalStyle.tsx (+14 -10)
📝 src/main/components/NotePage/NoteList/NoteItem.tsx (+1 -1)
📝 src/main/components/NotePage/NotePage.tsx (+2 -1)
src/main/components/SideNavigator/FolderCreateForm.tsx (+0 -46)
src/main/components/SideNavigator/FolderItem.tsx (+0 -31)
src/main/components/SideNavigator/NavLink.tsx (+0 -16)
📝 src/main/components/SideNavigator/SideNavigator.tsx (+8 -8)
src/main/components/SideNavigator/StorageItem.tsx (+0 -90)
src/main/components/SideNavigator/StorageItem/FolderItem.tsx (+80 -0)

...and 30 more files

📄 Description

  • SideNav
    • Context menu
    • Prompt dialog
    • MessageBox dialog
    • Show dialog when removing a folder with sub folders or notes
    • Show dialog when removing a storage
    • Implement Context for
    • Implement Context for storage
      • New Folder
    • Show Folder name rather than full path
    • Implement Context menu for side nav
      • Add a storage
    • Implement Hover style for Nav items
  • NoteList
  • NoteDetail

Fixes #63.


🔄 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/62 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 1/7/2019 **Status:** ✅ Merged **Merged:** 1/30/2019 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `features/update-style` --- ### 📝 Commits (10+) - [`3e4f9a9`](https://github.com/BoostIO/BoostNote-App/commit/3e4f9a9301134c591c4b968c2d219a22e93ae92a) Extract colors from GlobalStyle - [`080b016`](https://github.com/BoostIO/BoostNote-App/commit/080b0165499f187425e029e66566549f1e366104) Update dependencies - [`9b4389b`](https://github.com/BoostIO/BoostNote-App/commit/9b4389ba612916c5e03c1586e7d6db847de4451a) Discard margin of body element - [`81f6494`](https://github.com/BoostIO/BoostNote-App/commit/81f6494bc36072320063674fbbba465171806655) Implement default theme - [`a6a0c63`](https://github.com/BoostIO/BoostNote-App/commit/a6a0c630ca1979d5c8c58b25b348b513c4be5c27) Use open-color and replace styled-components with emotion - [`424ddbd`](https://github.com/BoostIO/BoostNote-App/commit/424ddbd28572c3d247b6ac44cbbcc9baa788065d) Add themed styled - [`d430d8a`](https://github.com/BoostIO/BoostNote-App/commit/d430d8a18f93ea51a49dd9ef373d072b37257389) Fix global style - [`c6d4731`](https://github.com/BoostIO/BoostNote-App/commit/c6d47312ed9518ee5a23f02c77092c8f59a2b4b7) Fix all components - [`ee64481`](https://github.com/BoostIO/BoostNote-App/commit/ee64481a26943f3a7e3744c50babc908c93bdab0) Discard colors - [`786f1f9`](https://github.com/BoostIO/BoostNote-App/commit/786f1f9e20235fc2393605b6888f8954f7568f02) Move styled to parent dir ### 📊 Changes **50 files changed** (+1276 additions, -566 deletions) <details> <summary>View changed files</summary> 📝 `.prettierrc` (+2 -1) 📝 `package-lock.json` (+319 -317) 📝 `package.json` (+6 -5) 📝 `src/main/components/App.tsx` (+21 -17) ➕ `src/main/components/ContextMenu/ContextMenu.tsx` (+86 -0) ➕ `src/main/components/ContextMenu/index.ts` (+3 -0) ➕ `src/main/components/ContextMenu/styled.ts` (+43 -0) ➕ `src/main/components/Dialog/Dialog.tsx` (+53 -0) ➕ `src/main/components/Dialog/DialogIcon.tsx` (+28 -0) ➕ `src/main/components/Dialog/PromptDialogBody.tsx` (+90 -0) ➕ `src/main/components/Dialog/styled.ts` (+84 -0) 📝 `src/main/components/GlobalStyle.tsx` (+14 -10) 📝 `src/main/components/NotePage/NoteList/NoteItem.tsx` (+1 -1) 📝 `src/main/components/NotePage/NotePage.tsx` (+2 -1) ➖ `src/main/components/SideNavigator/FolderCreateForm.tsx` (+0 -46) ➖ `src/main/components/SideNavigator/FolderItem.tsx` (+0 -31) ➖ `src/main/components/SideNavigator/NavLink.tsx` (+0 -16) 📝 `src/main/components/SideNavigator/SideNavigator.tsx` (+8 -8) ➖ `src/main/components/SideNavigator/StorageItem.tsx` (+0 -90) ➕ `src/main/components/SideNavigator/StorageItem/FolderItem.tsx` (+80 -0) _...and 30 more files_ </details> ### 📄 Description - [ ] SideNav - [x] Context menu - [x] Prompt dialog - [ ] MessageBox dialog - [ ] Show dialog when removing a folder with sub folders or notes - [ ] Show dialog when removing a storage - [ ] Implement Context for - [ ] Implement Context for storage - [ ] New Folder - [ ] Show Folder name rather than full path - [ ] Implement Context menu for side nav - [ ] Add a storage - [ ] Implement Hover style for Nav items - [ ] NoteList - [ ] NoteDetail Fixes #63. --- <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#539
No description provided.