2024-03-16 10:46:06 +01:00
|
|
|
|
namespace TaikoWebUI.Pages;
|
2022-09-11 18:33:58 +02:00
|
|
|
|
|
2023-11-11 22:04:11 +01:00
|
|
|
|
public partial class Users
|
2022-09-11 18:33:58 +02:00
|
|
|
|
{
|
2024-06-05 17:33:37 +02:00
|
|
|
|
private UsersResponse? response = new();
|
|
|
|
|
|
|
|
|
|
private int TotalPages { get; set; } = 0;
|
|
|
|
|
private bool isLoading = true;
|
|
|
|
|
private int currentPage = 1;
|
2024-06-06 02:38:52 +02:00
|
|
|
|
private readonly int pageSize = 12;
|
|
|
|
|
private string? searchTerm = null;
|
2024-06-05 17:33:37 +02:00
|
|
|
|
|
|
|
|
|
private async Task GetUsersData()
|
|
|
|
|
{
|
|
|
|
|
isLoading = true;
|
2024-06-06 02:38:52 +02:00
|
|
|
|
response = await Client.GetFromJsonAsync<UsersResponse>($"api/Users?page={currentPage}&limit={pageSize}&searchTerm={searchTerm}");
|
2024-06-05 17:33:37 +02:00
|
|
|
|
response.ThrowIfNull();
|
|
|
|
|
|
|
|
|
|
TotalPages = response.TotalPages;
|
|
|
|
|
isLoading = false;
|
|
|
|
|
}
|
2022-09-11 18:33:58 +02:00
|
|
|
|
|
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
|
|
|
{
|
|
|
|
|
await base.OnInitializedAsync();
|
2024-05-25 19:12:30 +02:00
|
|
|
|
if (AuthService.LoginRequired && !AuthService.IsLoggedIn)
|
|
|
|
|
{
|
|
|
|
|
await AuthService.LoginWithAuthToken();
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-17 00:32:46 +02:00
|
|
|
|
if (AuthService.IsAdmin || !AuthService.LoginRequired)
|
|
|
|
|
{
|
2024-06-05 17:33:37 +02:00
|
|
|
|
await GetUsersData();
|
2024-05-17 00:32:46 +02:00
|
|
|
|
}
|
2022-09-11 18:33:58 +02:00
|
|
|
|
}
|
2024-06-05 17:33:37 +02:00
|
|
|
|
|
|
|
|
|
private async Task OnPageChange(int page)
|
|
|
|
|
{
|
|
|
|
|
currentPage = page;
|
|
|
|
|
await GetUsersData();
|
|
|
|
|
}
|
2024-06-06 02:38:52 +02:00
|
|
|
|
|
|
|
|
|
private async Task OnSearch(string search)
|
|
|
|
|
{
|
|
|
|
|
searchTerm = search;
|
|
|
|
|
currentPage = 1;
|
|
|
|
|
await GetUsersData();
|
|
|
|
|
}
|
2022-09-11 18:33:58 +02:00
|
|
|
|
}
|