1
0
mirror of synced 2025-01-30 03:47:28 +01:00

37 lines
1017 B
Plaintext
Raw Normal View History

2024-03-09 22:48:26 -05:00
@page "/Users/{baid:int}/Songs/{songId:int}"
@inject IGameDataService GameDataService
@inject HttpClient Client
@inject LoginService LoginService
@inject NavigationManager NavigationManager
@inject IJSRuntime JSRuntime
2024-03-13 11:00:18 -04:00
@using TaikoWebUI.Utilities;
2024-03-13 11:23:22 -04:00
@using TaikoWebUI.Pages.Components.Song;
2024-03-13 11:00:18 -04:00
2024-03-09 22:48:26 -05:00
@if (LoginService.LoginRequired && (!LoginService.IsLoggedIn || (LoginService.GetLoggedInUser().Baid != Baid && !LoginService.IsAdmin)))
{
if (!LoginService.IsLoggedIn)
{
NavigationManager.NavigateTo("/Login");
}
else
{
NavigationManager.NavigateTo("/");
}
}
else
{
if (response is not null)
{
<MudBreadcrumbs Items="breadcrumbs" Class="p-0 mb-3"></MudBreadcrumbs>
<MudText Typo="Typo.h5">@SongTitle</MudText>
<MudText Typo="Typo.body2">@SongArtist</MudText>
<MudGrid Class="my-4 pb-10">
2024-03-09 23:49:47 -05:00
<MudItem xs="12">
2024-03-13 11:23:22 -04:00
<PlayHistoryCard Items="@SongBestData?.RecentPlayData" />
2024-03-09 23:49:47 -05:00
</MudItem>
2024-03-09 22:48:26 -05:00
</MudGrid>
}
}