[PR #4527] [CLOSED] feat(agent): add registration list management and ux #4844

Closed
opened 2026-03-17 02:20:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/4527
Author: @CuriousCorrelation
Created: 11/11/2024
Status: Closed

Base: nextHead: agent/feat/registration-list


📝 Commits (10+)

  • 9632193 feat: all registrations model
  • d8b1f62 feat: main window show utils
  • a8fe936 feat: reuse window instead of closing/reopening
  • de90df8 feat(agent): route for listing registrations
  • 7f0ef58 feat(agent|wip): registrations list modal plumbing
  • 697f191 ref: mask auth on app side instead
  • 36e4006 feat(agent|wip): ability to remove selected registration
  • b9e0f3a feat: agent interceptor registration list impl
  • c8d95b6 fix(agent): interference from prior registration
  • 94610ab fix: deleting one's own registration 💀

📊 Changes

16 files changed (+418 additions, -71 deletions)

View changed files

📝 packages/hoppscotch-agent/src-tauri/capabilities/default.json (+1 -0)
📝 packages/hoppscotch-agent/src-tauri/src/controller.rs (+56 -6)
📝 packages/hoppscotch-agent/src-tauri/src/error.rs (+4 -0)
📝 packages/hoppscotch-agent/src-tauri/src/lib.rs (+51 -18)
📝 packages/hoppscotch-agent/src-tauri/src/model.rs (+18 -0)
📝 packages/hoppscotch-agent/src-tauri/src/route.rs (+6 -1)
📝 packages/hoppscotch-agent/src-tauri/src/state.rs (+7 -14)
📝 packages/hoppscotch-agent/src-tauri/src/tray.rs (+6 -5)
📝 packages/hoppscotch-agent/src/App.vue (+34 -23)
📝 packages/hoppscotch-common/locales/en.json (+2 -0)
📝 packages/hoppscotch-common/src/components.d.ts (+1 -2)
📝 packages/hoppscotch-common/src/components/interceptors/agent/ModalNativeClientCertificates.vue (+0 -1)
packages/hoppscotch-common/src/components/interceptors/agent/ModalRegistrations.vue (+165 -0)
📝 packages/hoppscotch-common/src/components/interceptors/agent/RegistrationModal.vue (+0 -1)
📝 packages/hoppscotch-common/src/components/settings/Agent.vue (+14 -0)
📝 packages/hoppscotch-common/src/platform/std/interceptors/agent/index.ts (+53 -0)

📄 Description

This PR implements a registration management system for the Hoppscotch Agent, allowing users to view and manage their registered clients with some UX improvements.

Closes HFE-649

  • New registration management UI in Agent settings
  • Automatic registration list refresh after operations
  • Prevent registration interference between sessions
  • Fixed registration interference issues by clearing active registration state
  • Improved window management with show/hide instead of recreate/destroy

image


🔄 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/hoppscotch/hoppscotch/pull/4527 **Author:** [@CuriousCorrelation](https://github.com/CuriousCorrelation) **Created:** 11/11/2024 **Status:** ❌ Closed **Base:** `next` ← **Head:** `agent/feat/registration-list` --- ### 📝 Commits (10+) - [`9632193`](https://github.com/hoppscotch/hoppscotch/commit/9632193724ef7abe738129c4ac723fbca393b2dc) feat: all registrations model - [`d8b1f62`](https://github.com/hoppscotch/hoppscotch/commit/d8b1f622aa93ab8f5c8b103796946a6e5d50c8f7) feat: main window show utils - [`a8fe936`](https://github.com/hoppscotch/hoppscotch/commit/a8fe936d98374c6c3b637da99d3dd7b27449948f) feat: reuse window instead of closing/reopening - [`de90df8`](https://github.com/hoppscotch/hoppscotch/commit/de90df8c6fd1b96debbc6486dd60fad776db75a8) feat(agent): route for listing registrations - [`7f0ef58`](https://github.com/hoppscotch/hoppscotch/commit/7f0ef583f165c2a6dedd9f3561d8d5cc76d758a9) feat(agent|wip): registrations list modal plumbing - [`697f191`](https://github.com/hoppscotch/hoppscotch/commit/697f19180e93afbf513be6edad6ebb22c477c01f) ref: mask auth on app side instead - [`36e4006`](https://github.com/hoppscotch/hoppscotch/commit/36e4006291307a5b674987e3b2c7dcc1d58621a6) feat(agent|wip): ability to remove selected registration - [`b9e0f3a`](https://github.com/hoppscotch/hoppscotch/commit/b9e0f3a7d131557f29e945cbf78b9fa3f242637e) feat: agent interceptor registration list impl - [`c8d95b6`](https://github.com/hoppscotch/hoppscotch/commit/c8d95b6d0f704ddde8a9b7e8f02de56f0e51bf3a) fix(agent): interference from prior registration - [`94610ab`](https://github.com/hoppscotch/hoppscotch/commit/94610abe43992cb3348a87c97cca43271517fd9a) fix: deleting one's own registration 💀 ### 📊 Changes **16 files changed** (+418 additions, -71 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-agent/src-tauri/capabilities/default.json` (+1 -0) 📝 `packages/hoppscotch-agent/src-tauri/src/controller.rs` (+56 -6) 📝 `packages/hoppscotch-agent/src-tauri/src/error.rs` (+4 -0) 📝 `packages/hoppscotch-agent/src-tauri/src/lib.rs` (+51 -18) 📝 `packages/hoppscotch-agent/src-tauri/src/model.rs` (+18 -0) 📝 `packages/hoppscotch-agent/src-tauri/src/route.rs` (+6 -1) 📝 `packages/hoppscotch-agent/src-tauri/src/state.rs` (+7 -14) 📝 `packages/hoppscotch-agent/src-tauri/src/tray.rs` (+6 -5) 📝 `packages/hoppscotch-agent/src/App.vue` (+34 -23) 📝 `packages/hoppscotch-common/locales/en.json` (+2 -0) 📝 `packages/hoppscotch-common/src/components.d.ts` (+1 -2) 📝 `packages/hoppscotch-common/src/components/interceptors/agent/ModalNativeClientCertificates.vue` (+0 -1) ➕ `packages/hoppscotch-common/src/components/interceptors/agent/ModalRegistrations.vue` (+165 -0) 📝 `packages/hoppscotch-common/src/components/interceptors/agent/RegistrationModal.vue` (+0 -1) 📝 `packages/hoppscotch-common/src/components/settings/Agent.vue` (+14 -0) 📝 `packages/hoppscotch-common/src/platform/std/interceptors/agent/index.ts` (+53 -0) </details> ### 📄 Description This PR implements a registration management system for the Hoppscotch Agent, allowing users to view and manage their registered clients with some UX improvements. Closes HFE-649 - New registration management UI in Agent settings - Automatic registration list refresh after operations - Prevent registration interference between sessions - Fixed registration interference issues by clearing active registration state - Improved window management with show/hide instead of recreate/destroy ![image](https://github.com/user-attachments/assets/713778ea-f714-4241-b456-0831b4a97808) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 02:20:35 +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/hoppscotch#4844
No description provided.