1
0
mirror of synced 2024-11-28 16:40:57 +01:00
TaikoLocalServer/TaikoWebUI/Pages/SongList.razor

139 lines
7.1 KiB
Plaintext
Raw Normal View History

2022-09-11 18:28:12 +02:00
@inject IGameDataService GameDataService
@inject HttpClient Client
2024-05-17 00:32:46 +02:00
@inject AuthService AuthService
@inject IJSRuntime JsRuntime
2024-03-09 20:13:56 +01:00
@inject NavigationManager NavigationManager
2024-03-14 05:38:26 +01:00
@using TaikoWebUI.Utilities;
@using TaikoWebUI.Shared.Models;
2024-03-10 04:48:26 +01:00
@page "/Users/{baid:int}/Songs"
2024-03-09 20:13:56 +01:00
<MudBreadcrumbs Items="breadcrumbs" Class="p-0 mb-2"></MudBreadcrumbs>
<MudText Typo="Typo.h4">@Localizer["Song List"]</MudText>
<MudGrid Class="my-8">
@if (response is null)
{
2024-03-14 03:27:55 +01:00
<MudContainer Style="display:flex;margin:50px 0;align-items:center;justify-content:center;">
<MudProgressCircular Indeterminate="true" Size="Size.Large" Color="Color.Primary" />
</MudContainer>
}
else
{
2024-05-17 00:32:46 +02:00
@if (AuthService.LoginRequired && (!AuthService.IsLoggedIn || (AuthService.GetLoggedInBaid() != Baid && !AuthService.IsAdmin)))
2023-10-16 11:38:27 +02:00
{
2024-05-17 00:32:46 +02:00
NavigationManager.NavigateTo(AuthService.IsLoggedIn ? "/" : "/Login");
2023-10-16 11:38:27 +02:00
}
else
{
<MudItem xs="12">
2024-03-17 20:46:47 +01:00
<MudTable Items="musicMap" Elevation="0" Outlined="true" Filter="@FilterSongs">
2024-03-14 05:38:26 +01:00
<ToolBarContent>
<MudGrid Spacing="2">
<MudItem xs="12" md="8">
<MudTextField @bind-Value="Search"
Placeholder="@Localizer["Search by Title or Artist"]"
Variant="Variant.Outlined"
2024-03-27 04:51:32 +01:00
Clearable="true"
Immediate="true"
2024-03-14 05:38:26 +01:00
Margin="Margin.Dense"
Adornment="Adornment.Start"
AdornmentIcon="@Icons.Material.Filled.Search"
IconSize="Size.Medium" />
</MudItem>
<MudItem xs="12" md="4">
<MudSelect @bind-Value="GenreFilter" T="string" Label="@Localizer["Filter by Genre"]" Variant="Variant.Outlined" Margin="Margin.Dense" Clearable="true">
@foreach (var genre in Enum.GetValues(typeof(SongGenre)))
{
var genreValue = (SongGenre)genre;
<MudSelectItem Value="@genreValue.ToString()" Label="@Localizer[$"Key_{genreValue}"]">
@ScoreUtils.GetGenreTitle(genreValue)
2024-03-17 20:46:47 +01:00
</MudSelectItem>
2024-03-14 05:38:26 +01:00
}
</MudSelect>
</MudItem>
</MudGrid>
</ToolBarContent>
2024-03-14 03:27:55 +01:00
<HeaderContent>
2024-03-14 05:38:26 +01:00
<MudTh>
<MudTableSortLabel T="MusicDetail" SortBy="context => GameDataService.GetMusicNameBySongId(context.SongId, CurrentLanguage)">
@Localizer["Song Title / Artist"]
2024-03-14 05:38:26 +01:00
</MudTableSortLabel>
</MudTh>
<MudTh>
<MudTableSortLabel T="MusicDetail" SortBy="context => context.Genre">
@Localizer["Genre"]
</MudTableSortLabel>
</MudTh>
2024-03-27 04:48:41 +01:00
@foreach (var difficulty in Enum.GetValues<Difficulty>())
{
@if (difficulty is not Difficulty.None)
{
<MudTh>
<MudTableSortLabel T="MusicDetail" SortBy="context => GameDataService.GetMusicStarLevel(context.SongId, difficulty)">
<img src="@ScoreUtils.GetDifficultyIcon(difficulty)" alt="@ScoreUtils.GetDifficultyTitle(difficulty)" style="@Constants.ICON_STYLE" />
</MudTableSortLabel>
</MudTh>
}
}
2024-03-14 03:27:55 +01:00
</HeaderContent>
<RowTemplate>
<MudTd Style="width:400px">
2024-03-17 20:46:47 +01:00
<MudStack Row="true" Justify="Justify.SpaceBetween" AlignItems="AlignItems.Center">
<div>
<a href="@($"/Users/{Baid}/Songs/{context.SongId}")">
2024-03-27 04:48:41 +01:00
<MudText Typo="Typo.body2" Style="font-weight:bold">
2024-03-17 20:46:47 +01:00
@GameDataService.GetMusicNameBySongId(context.SongId, CurrentLanguage)
</MudText>
<MudText Typo="Typo.caption">
@GameDataService.GetMusicArtistBySongId(context.SongId, CurrentLanguage)
</MudText>
</a>
</div>
<div>
<MudToggleIconButton
Icon="@Icons.Material.Filled.FavoriteBorder" Color="@Color.Secondary"
ToggledIcon="@Icons.Material.Filled.Favorite" ToggledColor="@Color.Secondary"
Size="Size.Small"
ToggledSize="Size.Small"
Title="Add to favorites"
ToggledTitle="Remove from favorites" />
</div>
</MudStack>
2024-03-14 05:38:26 +01:00
</MudTd>
<MudTd>
<MudChip Style="@ScoreUtils.GetGenreStyle(context.Genre)" Size="Size.Small">
@ScoreUtils.GetGenreTitle(context.Genre)
</MudChip>
</MudTd>
2024-03-27 04:48:41 +01:00
@foreach (var difficulty in Enum.GetValues<Difficulty>())
{
@if (difficulty is not Difficulty.None)
{
var starLevel = GameDataService.GetMusicStarLevel(context.SongId, difficulty);
<MudTd>
@if (starLevel > 0)
{
<MudStack Row="true" Spacing="1" AlignItems="AlignItems.Center">
<MudIcon Icon="@Icons.Material.Filled.Star" Size="Size.Small" />
<MudText Typo="Typo.caption" Style="line-height:1;margin-top:2px;margin-right:2px;">@starLevel</MudText>
</MudStack>
}
else
{
<MudText Typo="Typo.body2" Style="font-weight:bold">
-
</MudText>
}
</MudTd>
}
}
2024-03-14 03:27:55 +01:00
</RowTemplate>
2024-03-14 05:38:26 +01:00
<PagerContent>
<MudTablePager RowsPerPageString=@Localizer["Rows Per Page"] />
2024-03-14 05:38:26 +01:00
</PagerContent>
2024-03-14 03:27:55 +01:00
</MudTable>
2023-10-16 11:38:27 +02:00
</MudItem>
}
}
2022-09-11 18:28:12 +02:00
</MudGrid>