feature: Track Meta Labels on Player

This commit is contained in:
daniel-c-harvey
2026-06-06 16:05:45 -04:00
parent c83b132522
commit 1bb6e29e47
9 changed files with 123 additions and 23 deletions
@@ -0,0 +1,14 @@
using DeepDrftModels.DTOs;
using Microsoft.AspNetCore.Components;
namespace DeepDrftPublic.Client.Controls.AudioPlayerBar;
/// <summary>
/// The now-playing metadata row beneath the <see cref="WaveformSeeker"/>: track title + artist on
/// the left, genre chip + release year on the right. Reads nothing from the player service itself —
/// the current <see cref="TrackDto"/> is passed in by <see cref="PlayerSeekZone"/>.
/// </summary>
public partial class TrackMetaLabel : ComponentBase
{
[Parameter] public TrackDto? Track { get; set; }
}