[PR #2321] [CLOSED] feat: Shortcodes UI implementation #3735

Closed
opened 2026-03-17 01:19:19 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2321
Author: @nivedin
Created: 5/4/2022
Status: Closed

Base: mainHead: feat/shortcodes-ui-implementation


📝 Commits (10+)

  • 88de301 feat: implemented shortcode fetching and revoking qraphQl methods
  • b6b317a feat: added view all shortcodes cta link
  • 0022027 feat: added shortcodes table to list all user created shortcodes and method to revoke them
  • a7e055f fix: removed console statement
  • 45e05e2 chore: improve ui consistency
  • 7afa050 chore: improve ui consistency
  • e30cbd1 fix: rest session not updating when the request is renamed from the sidebar (fixes #2297)
  • 4e5b800 fix : save request popup bug (#2324)
  • 8e9f383 fix: improve indentation on GQL editors
  • 84934bc refactor: realtime log entry revamp (#2240)

📊 Changes

65 files changed (+3523 additions, -508 deletions)

View changed files

📝 packages/codemirror-lang-graphql/src/syntax.grammar (+11 -7)
packages/hoppscotch-app/assets/icons/arrow-down-left.svg (+4 -0)
packages/hoppscotch-app/assets/icons/arrow-down.svg (+4 -0)
packages/hoppscotch-app/assets/icons/arrow-up-right.svg (+4 -0)
packages/hoppscotch-app/assets/icons/arrow-up.svg (+4 -0)
packages/hoppscotch-app/assets/icons/chevrons-down.svg (+4 -0)
packages/hoppscotch-app/assets/icons/chevrons-up.svg (+4 -0)
packages/hoppscotch-app/assets/icons/info-disconnect.svg (+5 -0)
packages/hoppscotch-app/assets/icons/info-realtime.svg (+5 -0)
📝 packages/hoppscotch-app/components/collections/SaveRequest.vue (+6 -0)
📝 packages/hoppscotch-app/components/collections/index.vue (+32 -1)
📝 packages/hoppscotch-app/components/http/Headers.vue (+88 -3)
📝 packages/hoppscotch-app/components/http/Request.vue (+51 -26)
📝 packages/hoppscotch-app/components/http/RequestOptions.vue (+1 -1)
packages/hoppscotch-app/components/profile/Shortcode.vue (+132 -0)
📝 packages/hoppscotch-app/components/realtime/Log.vue (+97 -46)
packages/hoppscotch-app/components/realtime/LogEntry.vue (+388 -0)
📝 packages/hoppscotch-app/components/realtime/Mqtt.vue (+29 -22)
📝 packages/hoppscotch-app/components/realtime/Socketio.vue (+22 -14)
📝 packages/hoppscotch-app/components/realtime/Sse.vue (+25 -17)

...and 45 more files

📄 Description

Description

This PR introduces a feature in which authenticated user can view their created shortcodes and can delete or copy them.

Checks

  • My pull request adheres to the code style of this project
  • My code requires changes to the documentation
  • I have updated the documentation as required
  • All the tests have passed

🔄 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/2321 **Author:** [@nivedin](https://github.com/nivedin) **Created:** 5/4/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/shortcodes-ui-implementation` --- ### 📝 Commits (10+) - [`88de301`](https://github.com/hoppscotch/hoppscotch/commit/88de30179abce30c7fc7a4b1688399e7d3adb47e) feat: implemented shortcode fetching and revoking qraphQl methods - [`b6b317a`](https://github.com/hoppscotch/hoppscotch/commit/b6b317a062f6e8e4a1e8784bdfb3f8a27359f6a6) feat: added view all shortcodes cta link - [`0022027`](https://github.com/hoppscotch/hoppscotch/commit/00220279a0445a95c098c7bf1cbd16b946170df1) feat: added shortcodes table to list all user created shortcodes and method to revoke them - [`a7e055f`](https://github.com/hoppscotch/hoppscotch/commit/a7e055f4d74256137bf688bc41df2828f32df255) fix: removed console statement - [`45e05e2`](https://github.com/hoppscotch/hoppscotch/commit/45e05e2c40d737c310e94f04234b699113952be5) chore: improve ui consistency - [`7afa050`](https://github.com/hoppscotch/hoppscotch/commit/7afa0500b8a095c0288a60e00d830f17bacb1bd0) chore: improve ui consistency - [`e30cbd1`](https://github.com/hoppscotch/hoppscotch/commit/e30cbd100311676ea0eb963940bb6e0a653fbe91) fix: rest session not updating when the request is renamed from the sidebar (fixes #2297) - [`4e5b800`](https://github.com/hoppscotch/hoppscotch/commit/4e5b800955dbae3d1df15584d564c12518287be6) fix : save request popup bug (#2324) - [`8e9f383`](https://github.com/hoppscotch/hoppscotch/commit/8e9f383c4e644afd5ceacc55022ad8286acc6cd1) fix: improve indentation on GQL editors - [`84934bc`](https://github.com/hoppscotch/hoppscotch/commit/84934bc8ee5ce2f587d855e59470e7002f7a47af) refactor: realtime log entry revamp (#2240) ### 📊 Changes **65 files changed** (+3523 additions, -508 deletions) <details> <summary>View changed files</summary> 📝 `packages/codemirror-lang-graphql/src/syntax.grammar` (+11 -7) ➕ `packages/hoppscotch-app/assets/icons/arrow-down-left.svg` (+4 -0) ➕ `packages/hoppscotch-app/assets/icons/arrow-down.svg` (+4 -0) ➕ `packages/hoppscotch-app/assets/icons/arrow-up-right.svg` (+4 -0) ➕ `packages/hoppscotch-app/assets/icons/arrow-up.svg` (+4 -0) ➕ `packages/hoppscotch-app/assets/icons/chevrons-down.svg` (+4 -0) ➕ `packages/hoppscotch-app/assets/icons/chevrons-up.svg` (+4 -0) ➕ `packages/hoppscotch-app/assets/icons/info-disconnect.svg` (+5 -0) ➕ `packages/hoppscotch-app/assets/icons/info-realtime.svg` (+5 -0) 📝 `packages/hoppscotch-app/components/collections/SaveRequest.vue` (+6 -0) 📝 `packages/hoppscotch-app/components/collections/index.vue` (+32 -1) 📝 `packages/hoppscotch-app/components/http/Headers.vue` (+88 -3) 📝 `packages/hoppscotch-app/components/http/Request.vue` (+51 -26) 📝 `packages/hoppscotch-app/components/http/RequestOptions.vue` (+1 -1) ➕ `packages/hoppscotch-app/components/profile/Shortcode.vue` (+132 -0) 📝 `packages/hoppscotch-app/components/realtime/Log.vue` (+97 -46) ➕ `packages/hoppscotch-app/components/realtime/LogEntry.vue` (+388 -0) 📝 `packages/hoppscotch-app/components/realtime/Mqtt.vue` (+29 -22) 📝 `packages/hoppscotch-app/components/realtime/Socketio.vue` (+22 -14) 📝 `packages/hoppscotch-app/components/realtime/Sse.vue` (+25 -17) _...and 45 more files_ </details> ### 📄 Description ### Description This PR introduces a feature in which authenticated user can view their created shortcodes and can delete or copy them. ### Checks - [x] My pull request adheres to the code style of this project - [ ] My code requires changes to the documentation - [ ] I have updated the documentation as required - [x] All the tests have passed --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:19:19 +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#3735
No description provided.