feat: added alternative queue display
Publish Metadata Agent Image / build-and-push-image (push) Successful in 3m58s
Publish Web Player Image / build-and-push-image (push) Successful in 4m16s

This commit is contained in:
Boris Cherepanov
2026-04-04 18:49:29 +03:00
parent daaa3b0814
commit 3199c12af5
6 changed files with 249 additions and 2 deletions
+14 -1
View File
@@ -563,7 +563,20 @@ export function FurumiPlayer() {
}
/>
<PlayerBar track={nowPlayingTrack} />
<PlayerBar
track={nowPlayingTrack}
queue={queueItemsView}
order={queueOrderView}
playingOrigIdx={queuePlayingOrigIdxView}
scrollSignal={queueScrollSignal}
onQueuePlay={(origIdx) => queueActionsRef.current?.playIndex(origIdx)}
onQueueRemove={(origIdx) =>
queueActionsRef.current?.removeFromQueue(origIdx)
}
onQueueMove={(fromPos, toPos) =>
queueActionsRef.current?.moveQueueItem(fromPos, toPos)
}
/>
<div className="toast" id="toast" />
<audio ref={audioRef} />