[PR #3255] [MERGED] feat: add spotlight definition #4303

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

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/3255
Author: @anwarulislam
Created: 8/12/2023
Status: Merged
Merged: 8/21/2023
Merged by: @AndrewBastin

Base: release/2023.8.0Head: feat/spotlight-defination


📝 Commits (10+)

  • 2449ad7 feat: miscellaneous defination added
  • f946e14 feat: tab defination added
  • 72fc84e feat: general defination added
  • 686cc26 feat: general searcher
  • e35d77b feat: response definition added
  • 2d64843 feat: request definition added
  • 29268e1 feat: environment searcher added
  • ecd1abe feat: environments definiation added
  • 27cc3be feat: environments definiation added
  • cda44a3 feat: environments definiation added

📊 Changes

23 files changed (+1633 additions, -25 deletions)

View changed files

📝 packages/hoppscotch-common/locales/en.json (+60 -3)
📝 packages/hoppscotch-common/src/components.d.ts (+10 -5)
📝 packages/hoppscotch-common/src/components/app/ActionHandler.vue (+54 -1)
📝 packages/hoppscotch-common/src/components/app/Header.vue (+16 -0)
📝 packages/hoppscotch-common/src/components/app/Options.vue (+3 -9)
packages/hoppscotch-common/src/components/app/Social.vue (+135 -0)
📝 packages/hoppscotch-common/src/components/app/spotlight/index.vue (+23 -0)
📝 packages/hoppscotch-common/src/components/environments/index.vue (+5 -0)
📝 packages/hoppscotch-common/src/components/environments/my/Environment.vue (+2 -0)
📝 packages/hoppscotch-common/src/components/environments/teams/Environment.vue (+1 -1)
📝 packages/hoppscotch-common/src/components/http/Request.vue (+7 -0)
📝 packages/hoppscotch-common/src/components/http/RequestOptions.vue (+10 -3)
📝 packages/hoppscotch-common/src/components/workspace/Selector.vue (+11 -0)
📝 packages/hoppscotch-common/src/helpers/actions.ts (+21 -0)
📝 packages/hoppscotch-common/src/pages/index.vue (+7 -0)
packages/hoppscotch-common/src/services/spotlight/searchers/environment.searcher.ts (+356 -0)
packages/hoppscotch-common/src/services/spotlight/searchers/general.searcher.ts (+114 -0)
packages/hoppscotch-common/src/services/spotlight/searchers/miscellaneous.searcher.ts (+69 -0)
packages/hoppscotch-common/src/services/spotlight/searchers/request.searcher.ts (+259 -0)
packages/hoppscotch-common/src/services/spotlight/searchers/response.searcher.ts (+101 -0)

...and 3 more files

📄 Description

Closes HFE-117 HFE-119 HFE-120 HFE-122 HFE-124 HFE-126 HFE-128

Description

This PR aims to add Spotlight Definition for General, Request, Response, Environments, Miscellaneous, etc.


🔄 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/3255 **Author:** [@anwarulislam](https://github.com/anwarulislam) **Created:** 8/12/2023 **Status:** ✅ Merged **Merged:** 8/21/2023 **Merged by:** [@AndrewBastin](https://github.com/AndrewBastin) **Base:** `release/2023.8.0` ← **Head:** `feat/spotlight-defination` --- ### 📝 Commits (10+) - [`2449ad7`](https://github.com/hoppscotch/hoppscotch/commit/2449ad704228e66268b639c440354310d62695c4) feat: miscellaneous defination added - [`f946e14`](https://github.com/hoppscotch/hoppscotch/commit/f946e149194556223fae5a4b60105b89a49d991d) feat: tab defination added - [`72fc84e`](https://github.com/hoppscotch/hoppscotch/commit/72fc84e1e7461342c2c17e62b738eb8f0771189f) feat: general defination added - [`686cc26`](https://github.com/hoppscotch/hoppscotch/commit/686cc26752896cb9086bc99786a38cdcfd2cc835) feat: general searcher - [`e35d77b`](https://github.com/hoppscotch/hoppscotch/commit/e35d77b9f7b7529cfb1c80a8f7da8d5377bfccbb) feat: response definition added - [`2d64843`](https://github.com/hoppscotch/hoppscotch/commit/2d64843485f134f77fb7d1e923d0eaaa952f553d) feat: request definition added - [`29268e1`](https://github.com/hoppscotch/hoppscotch/commit/29268e1d92aa8a341d3ce76168eb0bc8b2f28be1) feat: environment searcher added - [`ecd1abe`](https://github.com/hoppscotch/hoppscotch/commit/ecd1abe7832abe287dc53a284d135fa71c8bb2a6) feat: environments definiation added - [`27cc3be`](https://github.com/hoppscotch/hoppscotch/commit/27cc3be442bf3f1be507011836970b7b09263a05) feat: environments definiation added - [`cda44a3`](https://github.com/hoppscotch/hoppscotch/commit/cda44a3e63ec50b3b74667ed36fc69ef15a5ed9f) feat: environments definiation added ### 📊 Changes **23 files changed** (+1633 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-common/locales/en.json` (+60 -3) 📝 `packages/hoppscotch-common/src/components.d.ts` (+10 -5) 📝 `packages/hoppscotch-common/src/components/app/ActionHandler.vue` (+54 -1) 📝 `packages/hoppscotch-common/src/components/app/Header.vue` (+16 -0) 📝 `packages/hoppscotch-common/src/components/app/Options.vue` (+3 -9) ➕ `packages/hoppscotch-common/src/components/app/Social.vue` (+135 -0) 📝 `packages/hoppscotch-common/src/components/app/spotlight/index.vue` (+23 -0) 📝 `packages/hoppscotch-common/src/components/environments/index.vue` (+5 -0) 📝 `packages/hoppscotch-common/src/components/environments/my/Environment.vue` (+2 -0) 📝 `packages/hoppscotch-common/src/components/environments/teams/Environment.vue` (+1 -1) 📝 `packages/hoppscotch-common/src/components/http/Request.vue` (+7 -0) 📝 `packages/hoppscotch-common/src/components/http/RequestOptions.vue` (+10 -3) 📝 `packages/hoppscotch-common/src/components/workspace/Selector.vue` (+11 -0) 📝 `packages/hoppscotch-common/src/helpers/actions.ts` (+21 -0) 📝 `packages/hoppscotch-common/src/pages/index.vue` (+7 -0) ➕ `packages/hoppscotch-common/src/services/spotlight/searchers/environment.searcher.ts` (+356 -0) ➕ `packages/hoppscotch-common/src/services/spotlight/searchers/general.searcher.ts` (+114 -0) ➕ `packages/hoppscotch-common/src/services/spotlight/searchers/miscellaneous.searcher.ts` (+69 -0) ➕ `packages/hoppscotch-common/src/services/spotlight/searchers/request.searcher.ts` (+259 -0) ➕ `packages/hoppscotch-common/src/services/spotlight/searchers/response.searcher.ts` (+101 -0) _...and 3 more files_ </details> ### 📄 Description Closes HFE-117 HFE-119 HFE-120 HFE-122 HFE-124 HFE-126 HFE-128 ### Description <!-- Add a brief description of the pull request --> This PR aims to add Spotlight Definition for General, Request, Response, Environments, Miscellaneous, etc. <!-- You can also choose to add a list of changes and if they have been completed or not by using the markdown to-do list syntax - [ ] Not Completed - [ ] Completed --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:51:07 +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#4303
No description provided.