[PR #349] [MERGED] 342 subtask fetch data from search bar and save into store #393

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

📋 Pull Request Information

Original PR: https://github.com/EddieTheCubeHead/Stagnum/pull/349
Author: @EddieTheCubeHead
Created: 6/24/2024
Status: Merged
Merged: 6/24/2024
Merged by: @EddieTheCubeHead

Base: masterHead: 342-subtask-fetch-data-from-search-bar-and-save-into-store


📝 Commits (10+)

  • 603cb6c #342 Work towards presenting search results
  • c433204 #342 Working towards displaying search data
  • 83711cc #342 Visual side works. Should optimize queries next
  • 9e59799 #342 First part of query optimization - fetch all general data on same query
  • 71e7f70 #342 Implement debounce
  • d9075ff Merge branch 'master' into 342-subtask-fetch-data-from-search-bar-and-save-into-store
  • 0a1ca6a #342 Icon reworks and better spacing
  • b7a91c4 #342 Loads of tests and minor functionality improvements
  • a3f8e66 #342 Add skeleton, minor test improvements
  • f908238 #342 Fix lint and typecheck errors

📊 Changes

63 files changed (+2026 additions, -50 deletions)

View changed files

📝 client/.eslintrc.json (+3 -3)
📝 clientRewrite/setup-vitest.ts (+1 -1)
📝 clientRewrite/src/App.tsx (+1 -1)
clientRewrite/src/api/fetchSpotifyGeneralSearch.ts (+14 -0)
📝 clientRewrite/src/common/components/TopBar.tsx (+2 -2)
clientRewrite/src/common/components/cards/CardBase.tsx (+13 -0)
clientRewrite/src/common/components/cards/NameWithLink.tsx (+13 -0)
clientRewrite/src/common/components/cards/ResourceWithArtistNameField.tsx (+20 -0)
📝 clientRewrite/src/common/components/toolbar/ToolBar.tsx (+1 -1)
📝 clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearch.tsx (+1 -1)
📝 clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearchCloseButton.tsx (+6 -3)
📝 clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearchInput.tsx (+6 -0)
📝 clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearchOpenButton.tsx (+5 -3)
clientRewrite/src/common/hooks/useDebounce.ts (+13 -0)
📝 clientRewrite/src/common/hooks/useMeQuery.ts (+5 -1)
clientRewrite/src/common/icons/Icon.tsx (+13 -0)
clientRewrite/src/common/icons/IconButton.tsx (+15 -0)
clientRewrite/src/common/icons/svgs/AlbumIconSvg.tsx (+7 -0)
clientRewrite/src/common/icons/svgs/ArtistIconSvg.tsx (+16 -0)
📝 clientRewrite/src/common/icons/svgs/CloseIconSvg.tsx (+1 -1)

...and 43 more files

📄 Description

Went a bit overboard here, should've kept it in scope...


🔄 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/EddieTheCubeHead/Stagnum/pull/349 **Author:** [@EddieTheCubeHead](https://github.com/EddieTheCubeHead) **Created:** 6/24/2024 **Status:** ✅ Merged **Merged:** 6/24/2024 **Merged by:** [@EddieTheCubeHead](https://github.com/EddieTheCubeHead) **Base:** `master` ← **Head:** `342-subtask-fetch-data-from-search-bar-and-save-into-store` --- ### 📝 Commits (10+) - [`603cb6c`](https://github.com/EddieTheCubeHead/Stagnum/commit/603cb6cfebc6046d9aa98a44af80b6699f3ec063) #342 Work towards presenting search results - [`c433204`](https://github.com/EddieTheCubeHead/Stagnum/commit/c43320486d6cf84a985d537b8af3021c89b53356) #342 Working towards displaying search data - [`83711cc`](https://github.com/EddieTheCubeHead/Stagnum/commit/83711cc55fc8cbeb0653dd8dc82ff20c20cb3337) #342 Visual side works. Should optimize queries next - [`9e59799`](https://github.com/EddieTheCubeHead/Stagnum/commit/9e59799a4b0755c93441feb7a25cd8a766c5f7a5) #342 First part of query optimization - fetch all general data on same query - [`71e7f70`](https://github.com/EddieTheCubeHead/Stagnum/commit/71e7f70277ec57dc6cdd7e3480288793e07b318c) #342 Implement debounce - [`d9075ff`](https://github.com/EddieTheCubeHead/Stagnum/commit/d9075ff6f6c4fe3a1fae593cd1140517507ad0f2) Merge branch 'master' into 342-subtask-fetch-data-from-search-bar-and-save-into-store - [`0a1ca6a`](https://github.com/EddieTheCubeHead/Stagnum/commit/0a1ca6ac47ad6a6834f144f898b58a07a895c4e5) #342 Icon reworks and better spacing - [`b7a91c4`](https://github.com/EddieTheCubeHead/Stagnum/commit/b7a91c458344f5b56064510e3867395118cdeda0) #342 Loads of tests and minor functionality improvements - [`a3f8e66`](https://github.com/EddieTheCubeHead/Stagnum/commit/a3f8e66c8a8664bb177dd96b4243643333c5cc0a) #342 Add skeleton, minor test improvements - [`f908238`](https://github.com/EddieTheCubeHead/Stagnum/commit/f908238a0a91a0f2efb64d62a216767ef28cc286) #342 Fix lint and typecheck errors ### 📊 Changes **63 files changed** (+2026 additions, -50 deletions) <details> <summary>View changed files</summary> 📝 `client/.eslintrc.json` (+3 -3) 📝 `clientRewrite/setup-vitest.ts` (+1 -1) 📝 `clientRewrite/src/App.tsx` (+1 -1) ➕ `clientRewrite/src/api/fetchSpotifyGeneralSearch.ts` (+14 -0) 📝 `clientRewrite/src/common/components/TopBar.tsx` (+2 -2) ➕ `clientRewrite/src/common/components/cards/CardBase.tsx` (+13 -0) ➕ `clientRewrite/src/common/components/cards/NameWithLink.tsx` (+13 -0) ➕ `clientRewrite/src/common/components/cards/ResourceWithArtistNameField.tsx` (+20 -0) 📝 `clientRewrite/src/common/components/toolbar/ToolBar.tsx` (+1 -1) 📝 `clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearch.tsx` (+1 -1) 📝 `clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearchCloseButton.tsx` (+6 -3) 📝 `clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearchInput.tsx` (+6 -0) 📝 `clientRewrite/src/common/components/toolbar/toolbarSearch/ToolBarSearchOpenButton.tsx` (+5 -3) ➕ `clientRewrite/src/common/hooks/useDebounce.ts` (+13 -0) 📝 `clientRewrite/src/common/hooks/useMeQuery.ts` (+5 -1) ➕ `clientRewrite/src/common/icons/Icon.tsx` (+13 -0) ➕ `clientRewrite/src/common/icons/IconButton.tsx` (+15 -0) ➕ `clientRewrite/src/common/icons/svgs/AlbumIconSvg.tsx` (+7 -0) ➕ `clientRewrite/src/common/icons/svgs/ArtistIconSvg.tsx` (+16 -0) 📝 `clientRewrite/src/common/icons/svgs/CloseIconSvg.tsx` (+1 -1) _...and 43 more files_ </details> ### 📄 Description Went a bit overboard here, should've kept it in scope... --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 19:18:01 +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/Stagnum#393
No description provided.