-
Notifications
You must be signed in to change notification settings - Fork 2
Reorder the queue #8
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Activity
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
The queue is play-in-order with no way to change your mind. If someone drops five videos in, anything added after them waits.
Wanted: drag to reorder, or at minimum move-up / move-down buttons on each queue item.
The sync side is straightforward — queue items already carry a stable
qid, so the server can take aqidplus a target index and re-emit the queue. Rendering lives inrenderQueue()(public/script.js:646).Worth deciding before someone builds it: does reordering apply to everyone (it's a shared queue, so probably yes), and can anyone reorder or only the person who added the item? Simplest answer is anyone, matching how skip and clear already work.
Was a bullet in #4; splitting it out so it can be claimed on its own.