add "stopped" playback state and event handlers

This commit is contained in:
jeffvli
2026-06-29 20:23:46 -07:00
parent a221a84792
commit 37ada07ee2
14 changed files with 147 additions and 40 deletions
@@ -213,7 +213,7 @@ export const MobilePlayerbar = () => {
/>
<MainPlayButton
disabled={currentSong?.id === undefined}
isPaused={status === PlayerStatus.PAUSED}
isPaused={status !== PlayerStatus.PLAYING}
onClick={(e) => {
e.stopPropagation();
mediaTogglePlayPause();