528f09d96a
Lift the WaveformVisualizer + control popover out of the 120px NowPlayingCard box into NowPlaying as a full-panel background layer; migrate the hero-right wrapper and its scoped styles from Home into NowPlaying.
15 lines
543 B
Plaintext
15 lines
543 B
Plaintext
@using DeepDrftPublic.Client.Services
|
|
<div class="now-playing">
|
|
<div class="np-label"><span class="np-dot"></span>Now Playing</div>
|
|
<div class="np-title">@(Player?.CurrentTrack?.TrackName ?? "Nothing playing")</div>
|
|
<div class="np-sub">
|
|
@(Player?.CurrentTrack != null
|
|
? $"{Player.CurrentTrack.Release?.Artist} · {Player.CurrentTrack.Release?.Title ?? "Single"}"
|
|
: "Select a track to begin")
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@code {
|
|
[CascadingParameter] public IStreamingPlayerService? Player { get; set; }
|
|
} |