[PR #263] [MERGED] New sidebar and folder view #187

Closed
opened 2025-12-29 08:31:58 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/263
Author: @gschier
Created: 10/8/2025
Status: Merged
Merged: 10/15/2025
Merged by: @gschier

Base: mainHead: new-sidebar-nav


📝 Commits (10+)

  • 59bdd2a Better sidebar nav and added folder route
  • ad279d9 Quick nav with shift+arrows
  • 4a8bcda Checkpoint
  • ac56a62 Merge branch 'main' into new-sidebar-nav
  • 3bcf9f1 Got react-dnd working (no persistence)
  • da5cbd8 Better drag styles
  • 2fda609 Arrow keys sort of working
  • fd058f6 Start of context menu
  • d65a9cf Ordering mostly working now
  • f5b40a0 Kinda hooked up to main app

📊 Changes

80 files changed (+2958 additions, -1434 deletions)

View changed files

📝 package-lock.json (+45 -4)
📝 src-tauri/src/lib.rs (+40 -7)
📝 src-tauri/src/window.rs (+4 -5)
📝 src-tauri/yaak-models/guest-js/store.ts (+6 -3)
📝 src-tauri/yaak-models/src/queries/http_requests.rs (+15 -1)
📝 src-tauri/yaak-templates/index.ts (+9 -1)
src-tauri/yaak-templates/src/escape.rs (+166 -0)
📝 src-tauri/yaak-templates/src/lib.rs (+2 -1)
📝 src-tauri/yaak-templates/src/parser.rs (+40 -1)
📝 src-tauri/yaak-templates/src/wasm.rs (+14 -2)
src-web/commands/moveToWorkspace.tsx (+28 -0)
📝 src-web/commands/openFolderSettings.tsx (+11 -1)
📝 src-web/components/CommandPaletteDialog.tsx (+19 -16)
📝 src-web/components/ErrorBoundary.tsx (+1 -1)
src-web/components/FolderLayout.tsx (+192 -0)
📝 src-web/components/FolderSettingsDialog.tsx (+6 -5)
📝 src-web/components/GlobalHooks.tsx (+2 -0)
📝 src-web/components/GrpcConnectionLayout.tsx (+1 -1)
📝 src-web/components/GrpcRequestPane.tsx (+2 -2)
📝 src-web/components/GrpcResponsePane.tsx (+1 -1)

...and 60 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/mountain-loop/yaak/pull/263 **Author:** [@gschier](https://github.com/gschier) **Created:** 10/8/2025 **Status:** ✅ Merged **Merged:** 10/15/2025 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `main` ← **Head:** `new-sidebar-nav` --- ### 📝 Commits (10+) - [`59bdd2a`](https://github.com/mountain-loop/yaak/commit/59bdd2a8a049ba0b6866354186c1f97d9212e5fc) Better sidebar nav and added folder route - [`ad279d9`](https://github.com/mountain-loop/yaak/commit/ad279d91d84764666db6aafaa43dfdfff9eafdcf) Quick nav with shift+arrows - [`4a8bcda`](https://github.com/mountain-loop/yaak/commit/4a8bcdae53e5b99e94685c5618450ce20532a6d0) Checkpoint - [`ac56a62`](https://github.com/mountain-loop/yaak/commit/ac56a62c4e66a4bbdee5c3eb76cde46e0a671608) Merge branch 'main' into new-sidebar-nav - [`3bcf9f1`](https://github.com/mountain-loop/yaak/commit/3bcf9f158375201956f6479e324be865f1b3f697) Got react-dnd working (no persistence) - [`da5cbd8`](https://github.com/mountain-loop/yaak/commit/da5cbd8d5a3e0b3e31c1b87801fcfa476d8595a6) Better drag styles - [`2fda609`](https://github.com/mountain-loop/yaak/commit/2fda609dbf41f04e21ccf526e29c0ce6a0cab983) Arrow keys sort of working - [`fd058f6`](https://github.com/mountain-loop/yaak/commit/fd058f63b05fb9bb67f1440fb2c21fb93effde3b) Start of context menu - [`d65a9cf`](https://github.com/mountain-loop/yaak/commit/d65a9cfce836da6858eaa6bb9539d635937d91c7) Ordering mostly working now - [`f5b40a0`](https://github.com/mountain-loop/yaak/commit/f5b40a063810acad180581f146bdfc8bed2972b6) Kinda hooked up to main app ### 📊 Changes **80 files changed** (+2958 additions, -1434 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+45 -4) 📝 `src-tauri/src/lib.rs` (+40 -7) 📝 `src-tauri/src/window.rs` (+4 -5) 📝 `src-tauri/yaak-models/guest-js/store.ts` (+6 -3) 📝 `src-tauri/yaak-models/src/queries/http_requests.rs` (+15 -1) 📝 `src-tauri/yaak-templates/index.ts` (+9 -1) ➕ `src-tauri/yaak-templates/src/escape.rs` (+166 -0) 📝 `src-tauri/yaak-templates/src/lib.rs` (+2 -1) 📝 `src-tauri/yaak-templates/src/parser.rs` (+40 -1) 📝 `src-tauri/yaak-templates/src/wasm.rs` (+14 -2) ➕ `src-web/commands/moveToWorkspace.tsx` (+28 -0) 📝 `src-web/commands/openFolderSettings.tsx` (+11 -1) 📝 `src-web/components/CommandPaletteDialog.tsx` (+19 -16) 📝 `src-web/components/ErrorBoundary.tsx` (+1 -1) ➕ `src-web/components/FolderLayout.tsx` (+192 -0) 📝 `src-web/components/FolderSettingsDialog.tsx` (+6 -5) 📝 `src-web/components/GlobalHooks.tsx` (+2 -0) 📝 `src-web/components/GrpcConnectionLayout.tsx` (+1 -1) 📝 `src-web/components/GrpcRequestPane.tsx` (+2 -2) 📝 `src-web/components/GrpcResponsePane.tsx` (+1 -1) _...and 60 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>
adam added the pull-request label 2025-12-29 08:31:58 +01:00
adam closed this issue 2025-12-29 08:31:59 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak-mountain-loop#187