mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #72] Queue track #20
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#20
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bartlibert on GitHub (Aug 11, 2022).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/72
Originally assigned to: @aome510 on GitHub.
One thing I really miss is the possibility to add a track or album to the queue.
Rspotify has support for this: documentation, so I guess it should be possible?
It would be nice to just be able to press a key (spotify-tui uses 'z' for example, but anything else would be fine) and add the currently selected item to the queue. To be honest, to me this only makes sense for tracks or albums, but maybe you have some other ideas?
@aome510 commented on GitHub (Aug 13, 2022):
Yeah, given the already supported API, adding a "add-to-queue" command should be easy.
I remembered that back then, I didn't implement queue-related features because spotify doesn't provide an API to get items in queue.
@aome510 commented on GitHub (Aug 20, 2022):
@bartlibert sorry for the delay. I have implemented "add-track-to-queue" support in #73. You can initiate the action by calling either
ShowActionsOnSelectedItem(on track) orShowActionsOnCurrentTrackthen findingAddToQueueaction.Currently, it only supports track as the official API only supports track/episode, but this feature can be extended to album, artist, etc. Before supporting more items, I'm looking into a good way to implement/integrate a
Queuepage to show queued tracks.For now, I'll close this issue. Feel free to re-open if you encounter any issues or have any questions.
@bartlibert commented on GitHub (Aug 22, 2022):
@aome510 No need to apologize, the work you're doing here is high quality and always quick, thanks a lot!