diff --git a/apps/mukke/apps/web/src/lib/components/FullPlayer.svelte b/apps/mukke/apps/web/src/lib/components/FullPlayer.svelte index 96ecfc68a..652bef728 100644 --- a/apps/mukke/apps/web/src/lib/components/FullPlayer.svelte +++ b/apps/mukke/apps/web/src/lib/components/FullPlayer.svelte @@ -1,6 +1,9 @@ + + {#if playerStore.showFullPlayer && playerStore.currentSong} -
- -
- -
Now Playing
-
+
+ +
+
- -
- -
- - - -
+ +
- -
- -
- - -
-
- {playerStore.currentSong.title} -
-
- {playerStore.currentSong.artist || 'Unknown Artist'} -
- {#if playerStore.currentSong.album} -
- {playerStore.currentSong.album} -
- {/if} -
- - -
+ +
+ +
-
- {formatTime(playerStore.currentTime)} - {formatTime(playerStore.duration)} -
-
- - -
- - - - - - - - -
- - -
- - - - -
+ +
+ {#each visualizerStore.all as viz} + + {viz.name} + + {/each} +
+
- -
- +
+ + +
+ +
+
+ {playerStore.currentSong.title} +
+
+ {playerStore.currentSong.artist || 'Unknown Artist'} +
+ {#if playerStore.currentSong.album} +
+ {playerStore.currentSong.album} +
+ {/if} +
+ + +
+ +
+ {formatTime(playerStore.currentTime)} + {formatTime(playerStore.duration)} +
+
+ + +
+ + + + + + + + + + + + + + +
+ + +
+ @@ -201,25 +208,105 @@ step="0.01" value={playerStore.volume} oninput={handleVolumeInput} - class="w-20 h-1.5 bg-border rounded-lg appearance-none cursor-pointer" + class="volume-slider" /> +
- - -
{/if} + +