37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
@namespace DeepDrftPublic.Client.Controls.AudioPlayerBar
|
|
|
|
@if (Track is not null)
|
|
{
|
|
<div class="track-meta-row">
|
|
<div class="track-meta-identity">
|
|
<MudText Typo="Typo.subtitle2" Class="track-meta-title text-truncate">
|
|
@Track.TrackName
|
|
</MudText>
|
|
<MudText Typo="Typo.subtitle2" Class="track-meta-sep"> - </MudText>
|
|
<MudText Typo="Typo.caption" Class="track-meta-artist text-truncate">
|
|
@Track.Artist
|
|
</MudText>
|
|
</div>
|
|
|
|
<div class="track-meta-accents">
|
|
@if (!string.IsNullOrEmpty(Track.Genre))
|
|
{
|
|
<MudChip T="string"
|
|
Size="Size.Small"
|
|
Variant="Variant.Outlined"
|
|
Color="Color.Tertiary"
|
|
Class="deepdrft-genre-chip">
|
|
@Track.Genre
|
|
</MudChip>
|
|
}
|
|
|
|
@if (Track.ReleaseDate.HasValue)
|
|
{
|
|
<MudText Typo="Typo.caption" Class="track-meta-year">
|
|
@Track.ReleaseDate.Value.Year
|
|
</MudText>
|
|
}
|
|
</div>
|
|
</div>
|
|
}
|