1
0
mirror of synced 2024-12-04 19:07:58 +01:00
TaikoLocalServer/TaikoWebUI/Components/Song/PlayHistoryCard.razor

105 lines
4.6 KiB
Plaintext
Raw Normal View History

2024-03-13 16:23:22 +01:00
@using TaikoWebUI.Utilities;
<MudCard Outlined="true" Elevation="0">
<MudCardHeader>
<MudGrid Spacing="2">
2024-06-03 01:55:44 +02:00
<MudItem xs="12">
<MudText Typo="Typo.h6">@Localizer["Play History"]</MudText>
</MudItem>
</MudGrid>
2024-03-13 16:23:22 +01:00
</MudCardHeader>
@if (Items.Count > 0)
2024-03-13 16:23:22 +01:00
{
<MudCardContent Class="pa-0">
2024-03-13 16:23:22 +01:00
<MudTable Items="Items" Elevation="0" Striped="true">
<HeaderContent>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel InitialDirection="SortDirection.Descending" T="SongHistoryData" SortBy="x => x.PlayTime">
@Localizer["Play Time"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.Difficulty">
@Localizer["Difficulty"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.Crown">
@Localizer["Crown"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.ScoreRank">
@Localizer["Rank"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.Score">
@Localizer["Score"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.GoodCount">
@Localizer["Good"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.OkCount">
@Localizer["OK"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.MissCount">
@Localizer["Bad"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.DrumrollCount">
@Localizer["Drumroll"]
</MudTableSortLabel>
</MudTh>
<MudTh>
2024-05-17 00:32:46 +02:00
<MudTableSortLabel T="SongHistoryData" SortBy="x => x.ComboCount">
@Localizer["MAX Combo"]
</MudTableSortLabel>
</MudTh>
2024-03-13 16:23:22 +01:00
</HeaderContent>
<RowTemplate>
2024-03-13 16:36:06 +01:00
<MudTd>@context.PlayTime.ToString(Localizer["DateFormat"])</MudTd>
<MudTd>
<img src="@ScoreUtils.GetDifficultyIcon(context.Difficulty)" alt="@context.Difficulty" title="@context.Difficulty" style="@IconStyle"/>
2024-03-13 16:36:06 +01:00
</MudTd>
<MudTd>
<img src="@($"/images/crown_{context.Crown}.png")" alt="@(ScoreUtils.GetCrownText(context.Crown))" title="@(ScoreUtils.GetCrownText(context.Crown))" style="@IconStyle"/>
2024-03-13 16:36:06 +01:00
</MudTd>
<MudTd>
@if (context.ScoreRank is not ScoreRank.None)
{
<img src="@($"/images/rank_{context.ScoreRank}.png")" alt="@(ScoreUtils.GetRankText(context.ScoreRank))" title="@(ScoreUtils.GetRankText(context.ScoreRank))" style="@IconStyle"/>
}
2024-03-13 16:36:06 +01:00
</MudTd>
<MudTd>@context.Score</MudTd>
<MudTd>@context.GoodCount</MudTd>
<MudTd>@context.OkCount</MudTd>
<MudTd>@context.MissCount</MudTd>
<MudTd>@context.DrumrollCount</MudTd>
<MudTd>@context.ComboCount</MudTd>
</RowTemplate>
</MudTable>
</MudCardContent>
2024-03-13 16:23:22 +01:00
}
else
{
<MudCardContent Class="pa-0">
2024-03-13 16:23:22 +01:00
<MudText Typo="Typo.body2" Class="pt-4 pb-8" Color="Color.Surface" Align="Align.Center">
@Localizer["No Play History Found"]
2024-03-13 16:23:22 +01:00
</MudText>
</MudCardContent>
}
</MudCard>
@code {
2024-05-17 00:32:46 +02:00
[Parameter] public List<SongHistoryData> Items { get; set; } = new();
2024-03-13 16:23:22 +01:00
private const string IconStyle = "width:25px; height:25px;";
}