9ce2631bf4
Deploy DeepDrftAPI / Build, Publish & Bundle (push) Successful in 1m59s
Deploy DeepDrftManager / Build & Publish (push) Successful in 59s
Deploy DeepDrftPublic / Build & Publish (push) Successful in 3m30s
Deploy DeepDrftAPI / Deploy (push) Successful in 1m33s
Deploy DeepDrftManager / Deploy (push) Successful in 1m27s
Deploy DeepDrftPublic / Deploy (push) Successful in 1m28s
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
@namespace DeepDrftPublic.Client.Controls.AudioPlayerBar
|
|
|
|
|
|
|
|
@if (Track is not null)
|
|
{
|
|
<div class="track-meta-row">
|
|
<div class="track-meta-identity">
|
|
<a href="@($"/track/{Track.EntryKey}")" style="text-decoration: none;">
|
|
<MudText Typo="Typo.subtitle2" Class="track-meta-title text-truncate">
|
|
@Track.TrackName
|
|
</MudText>
|
|
</a>
|
|
<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>
|
|
}
|