-
-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(playlist): Add Playlist Item view #1820
Open
BrianCArnold
wants to merge
1
commit into
jellyfin:master
Choose a base branch
from
BrianCArnold:AddPlaylists
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jellyfin-bot
added
frontend:store
Pull requests or issues that deal with stores
vue
Pull requests that edit or add Vue files
labels
Nov 25, 2022
BrianCArnold
force-pushed
the
AddPlaylists
branch
from
November 25, 2022 22:09
9d1247a
to
ef7e673
Compare
BrianCArnold
changed the title
Add Playlist Item view
feat(playli) Add Playlist Item view
Nov 25, 2022
BrianCArnold
force-pushed
the
AddPlaylists
branch
from
November 25, 2022 22:49
617cb32
to
01caad2
Compare
BrianCArnold
changed the title
feat(playli) Add Playlist Item view
feat(playlist): Add Playlist Item view
Nov 25, 2022
BrianCArnold
force-pushed
the
AddPlaylists
branch
from
November 28, 2022 19:39
e68efea
to
0d6e643
Compare
BrianCArnold
force-pushed
the
AddPlaylists
branch
from
November 30, 2022 15:55
3847f9b
to
e6e3fcd
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
8 tasks
ferferga
force-pushed
the
master
branch
3 times, most recently
from
May 1, 2023 22:03
5e698fd
to
26d3ab7
Compare
ferferga
force-pushed
the
master
branch
2 times, most recently
from
August 16, 2023 19:17
bc856ac
to
7336bfd
Compare
Temporary use of CollectionTabs for playlist for testing. Need to create new component for playlist * Need to display in list * Need to be able to drag/reorder Got playlists working for the most part. (the skeleton display isn't quite right, though.) Remove showing of "loading" skel during moving items. Removed code smells. Fixed some linting issues. Caused an issue while trying to clean things up. Fixed now. Got saving play queue to playlist working. :-) Fixed lint issues.
BrianCArnold
force-pushed
the
AddPlaylists
branch
from
November 7, 2023 13:14
e6e3fcd
to
46ab70b
Compare
Cloudflare Pages deployment
|
SonarCloud Quality Gate failed. 0 Bugs No Coverage information Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
ferferga
force-pushed
the
master
branch
2 times, most recently
from
December 31, 2023 18:39
f598745
to
00c2c75
Compare
ferferga
force-pushed
the
master
branch
15 times, most recently
from
August 11, 2024 11:13
acb6ecf
to
5d6a7c8
Compare
ferferga
force-pushed
the
master
branch
2 times, most recently
from
September 6, 2024 13:57
c360429
to
f3260d9
Compare
ferferga
force-pushed
the
master
branch
9 times, most recently
from
October 3, 2024 23:53
fe041a3
to
3fbf550
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
frontend:store
Pull requests or issues that deal with stores
merge conflict
Something has merge conflicts
vue
Pull requests that edit or add Vue files
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds the feature mentioned in #1819
When opening a playlist, this shows all items in the playlist, and if the currently playing item is in the playlist, it is highlighted.
When clicking on an item in the playlist, the entire playlist is added to the queue, and the clicked item starts playing.
Click-and-drag reorders the playlist, and saves the change on the server instantly.
This also adds the ability to save any current queue to a playlist.