[PR #273] [MERGED] 170 subtask use websocket to update current playback information in client #357

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

📋 Pull Request Information

Original PR: https://github.com/EddieTheCubeHead/Stagnum/pull/273
Author: @tuomasmustakallio
Created: 4/15/2024
Status: Merged
Merged: 4/15/2024
Merged by: @tuomasmustakallio

Base: masterHead: 170-subtask-use-websocket-to-update-current-playback-information-in-client


📝 Commits (10+)

  • 2d9d3ab Merge remote-tracking branch 'origin/164-subtask-create-websocket-for-updating-currently-playing-song-information' into 170-subtask-use-websocket-to-update-current-playback-information-in-client
  • 9d26fda Merge remote-tracking branch 'origin/164-subtask-create-websocket-for-updating-currently-playing-song-information' into 170-subtask-use-websocket-to-update-current-playback-information-in-client
  • b60aebd Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client
  • 24ce0d4 initial ws
  • 0e2187d Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client
  • 0fd6570 Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client
  • 9592644 Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client
  • a69d226 initial socket not working
  • c179d98 Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client
  • f917846 tried new library for websocket

📊 Changes

15 files changed (+291 additions, -232 deletions)

View changed files

📝 client/app/page.tsx (+53 -2)
📝 client/components/layout/footer.tsx (+64 -37)
📝 client/components/poolmanagerComponents/poolManager.tsx (+0 -1)
📝 client/components/types.ts (+1 -0)
client/public/logo.png (+0 -0)
📝 server/src/api/application.py (+1 -0)
📝 server/src/api/pool/__init__.py (+1 -0)
📝 server/src/api/pool/dependencies.py (+28 -53)
📝 server/src/api/pool/routes.py (+14 -30)
📝 server/src/api/pool/tasks.py (+2 -2)
server/src/api/pool/websocket.py (+22 -0)
📝 server/test/pool_features/conftest.py (+2 -2)
server/test/pool_features/playback_websocket_features.py (+0 -62)
server/test/pool_features/pool_websocket_features.py (+0 -43)
server/test/pool_features/websocket_features.py (+103 -0)

📄 Description

Websocket that takes in info from playback and pool and stuff.


🔄 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/273 **Author:** [@tuomasmustakallio](https://github.com/tuomasmustakallio) **Created:** 4/15/2024 **Status:** ✅ Merged **Merged:** 4/15/2024 **Merged by:** [@tuomasmustakallio](https://github.com/tuomasmustakallio) **Base:** `master` ← **Head:** `170-subtask-use-websocket-to-update-current-playback-information-in-client` --- ### 📝 Commits (10+) - [`2d9d3ab`](https://github.com/EddieTheCubeHead/Stagnum/commit/2d9d3abd0cba43b5c2516e49a11353f1a07b24a6) Merge remote-tracking branch 'origin/164-subtask-create-websocket-for-updating-currently-playing-song-information' into 170-subtask-use-websocket-to-update-current-playback-information-in-client - [`9d26fda`](https://github.com/EddieTheCubeHead/Stagnum/commit/9d26fdaac69d61c963c550592daee8e6e8904686) Merge remote-tracking branch 'origin/164-subtask-create-websocket-for-updating-currently-playing-song-information' into 170-subtask-use-websocket-to-update-current-playback-information-in-client - [`b60aebd`](https://github.com/EddieTheCubeHead/Stagnum/commit/b60aebd89d5c29eee99d475a855109658daa9fdd) Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client - [`24ce0d4`](https://github.com/EddieTheCubeHead/Stagnum/commit/24ce0d4eb6966d5b52b38a2a8152f3e6ef9a52e7) initial ws - [`0e2187d`](https://github.com/EddieTheCubeHead/Stagnum/commit/0e2187d3d841c096701dcf18ab9446ce3a256a66) Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client - [`0fd6570`](https://github.com/EddieTheCubeHead/Stagnum/commit/0fd6570fed368edca83ecd35711e8f45e50214ef) Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client - [`9592644`](https://github.com/EddieTheCubeHead/Stagnum/commit/9592644010149a4a0612979a279475bab9b1ec87) Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client - [`a69d226`](https://github.com/EddieTheCubeHead/Stagnum/commit/a69d22649d07e46d6b7644c2f178455154a27dd3) initial socket not working - [`c179d98`](https://github.com/EddieTheCubeHead/Stagnum/commit/c179d981d348aaf679f7dd35b5c8e6d0a620409e) Merge branch 'master' into 170-subtask-use-websocket-to-update-current-playback-information-in-client - [`f917846`](https://github.com/EddieTheCubeHead/Stagnum/commit/f9178469a5587f8787fe3ae798b55d9585866632) tried new library for websocket ### 📊 Changes **15 files changed** (+291 additions, -232 deletions) <details> <summary>View changed files</summary> 📝 `client/app/page.tsx` (+53 -2) 📝 `client/components/layout/footer.tsx` (+64 -37) 📝 `client/components/poolmanagerComponents/poolManager.tsx` (+0 -1) 📝 `client/components/types.ts` (+1 -0) ➕ `client/public/logo.png` (+0 -0) 📝 `server/src/api/application.py` (+1 -0) 📝 `server/src/api/pool/__init__.py` (+1 -0) 📝 `server/src/api/pool/dependencies.py` (+28 -53) 📝 `server/src/api/pool/routes.py` (+14 -30) 📝 `server/src/api/pool/tasks.py` (+2 -2) ➕ `server/src/api/pool/websocket.py` (+22 -0) 📝 `server/test/pool_features/conftest.py` (+2 -2) ➖ `server/test/pool_features/playback_websocket_features.py` (+0 -62) ➖ `server/test/pool_features/pool_websocket_features.py` (+0 -43) ➕ `server/test/pool_features/websocket_features.py` (+103 -0) </details> ### 📄 Description Websocket that takes in info from playback and pool and stuff. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 19:17:53 +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#357
No description provided.