178 lines
5.7 KiB
C#
178 lines
5.7 KiB
C#
using Netina.Domain.Entities.Brands;
|
|
|
|
namespace Netina.AdminPanel.PWA.Pages;
|
|
|
|
public class BrandsPageViewModel : BaseViewModel<List<BrandSDto>>
|
|
{
|
|
private readonly NavigationManager _navigationManager;
|
|
private readonly ISnackbar _snackbar;
|
|
private readonly IUserUtility _userUtility;
|
|
private readonly IDialogService _dialogService;
|
|
private readonly IRestWrapper _restWrapper;
|
|
public string Search = string.Empty;
|
|
public int CurrentPage = 0;
|
|
public int PageCount = 1;
|
|
|
|
public BrandsPageViewModel(NavigationManager navigationManager, ISnackbar snackbar, IUserUtility userUtility, IRestWrapper restWrapper, IDialogService dialogService) : base(userUtility)
|
|
{
|
|
_navigationManager = navigationManager;
|
|
_snackbar = snackbar;
|
|
_userUtility = userUtility;
|
|
_restWrapper = restWrapper;
|
|
_dialogService = dialogService;
|
|
}
|
|
|
|
public override async Task InitializeAsync()
|
|
{
|
|
try
|
|
{
|
|
IsProcessing = true;
|
|
var dto = await _restWrapper.CrudDtoApiRest<Brand, BrandSDto, Guid>(Address.BrandController)
|
|
.ReadAll(0);
|
|
PageDto = dto;
|
|
}
|
|
catch (ApiException ex)
|
|
{
|
|
var exe = await ex.GetContentAsAsync<ApiResult>();
|
|
_snackbar.Add(exe != null ? exe.Message : ex.Content, Severity.Error);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_snackbar.Add(e.Message, Severity.Error);
|
|
}
|
|
finally
|
|
{
|
|
|
|
IsProcessing = false;
|
|
}
|
|
await base.InitializeAsync();
|
|
}
|
|
|
|
public async Task AddBrandClicked()
|
|
{
|
|
DialogOptions maxWidth = new DialogOptions() { MaxWidth = MaxWidth.Medium, FullWidth = true, DisableBackdropClick = true };
|
|
await _dialogService.ShowAsync<BrandActionDialogBox>("افزودن برند جدید", maxWidth);
|
|
}
|
|
|
|
public async Task EditBrandAsync(BrandSDto brand)
|
|
{
|
|
DialogOptions maxWidth = new DialogOptions() { MaxWidth = MaxWidth.Medium, FullWidth = true, DisableBackdropClick = true };
|
|
var parameters = new DialogParameters<BrandActionDialogBox> { { x => x.Brand, brand } };
|
|
await _dialogService.ShowAsync<BrandActionDialogBox>($"ویرایش برند {brand.PersianName}", parameters, maxWidth);
|
|
}
|
|
public async Task DeleteBrandAsync(Guid selectedCategoryId)
|
|
{
|
|
var reference = await _dialogService.ShowQuestionDialog($"آیا از حذف برند اطمینان دارید ?");
|
|
var result = await reference.Result;
|
|
if (!result.Canceled)
|
|
{
|
|
|
|
try
|
|
{
|
|
|
|
IsProcessing = true;
|
|
var token = await _userUtility.GetBearerTokenAsync();
|
|
await _restWrapper.CrudDtoApiRest<Brand, BrandSDto, Guid>(Address.BrandController)
|
|
.Delete(selectedCategoryId, token);
|
|
_snackbar.Add("حذف برند با موفقیت انجام شد", Severity.Success);
|
|
await InitializeAsync();
|
|
|
|
}
|
|
catch (ApiException ex)
|
|
{
|
|
var exe = await ex.GetContentAsAsync<ApiResult>();
|
|
_snackbar.Add(exe != null ? exe.Message : ex.Content, Severity.Error);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_snackbar.Add(e.Message, Severity.Error);
|
|
}
|
|
finally
|
|
{
|
|
|
|
IsProcessing = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public async Task SearchChanged(string search)
|
|
{
|
|
if (search.IsNullOrEmpty() && !Search.IsNullOrEmpty())
|
|
await InitializeAsync();
|
|
Search = search;
|
|
}
|
|
public async Task SearchAsync()
|
|
{
|
|
try
|
|
{
|
|
if (Search.IsNullOrEmpty())
|
|
throw new AppException("نام برند برای جست جو وارد نشده است");
|
|
IsProcessing = true;
|
|
CurrentPage = 0;
|
|
PageCount = 1;
|
|
PageDto.Clear();
|
|
var dto = await _restWrapper.BrandRestApi.ReadAll(CurrentPage, Search);
|
|
dto.ForEach(d => PageDto.Add(d));
|
|
if (PageDto.Count == 20)
|
|
PageCount = 2;
|
|
}
|
|
catch (ApiException ex)
|
|
{
|
|
var exe = await ex.GetContentAsAsync<ApiResult>();
|
|
_snackbar.Add(exe != null ? exe.Message : ex.Content, Severity.Error);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_snackbar.Add(e.Message, Severity.Error);
|
|
}
|
|
finally
|
|
{
|
|
|
|
IsProcessing = false;
|
|
}
|
|
}
|
|
|
|
public async Task ChangePageAsync(int page)
|
|
{
|
|
CurrentPage = page - 1;
|
|
if (CurrentPage > PageCount - 2)
|
|
{
|
|
|
|
try
|
|
{
|
|
IsProcessing = true;
|
|
|
|
List<BrandSDto> dto = new List<BrandSDto>();
|
|
if (Search.IsNullOrEmpty())
|
|
{
|
|
dto = await _restWrapper.CrudDtoApiRest<Brand, BrandSDto, Guid>(Address.BrandController)
|
|
.ReadAll(CurrentPage);
|
|
}
|
|
else
|
|
{
|
|
dto = await _restWrapper.BrandRestApi.ReadAll(CurrentPage, Search);
|
|
}
|
|
|
|
dto.ForEach(d => PageDto.Add(d));
|
|
if (PageDto.Count % 20 == 0)
|
|
PageCount = CurrentPage + 2;
|
|
|
|
}
|
|
catch (ApiException ex)
|
|
{
|
|
var exe = await ex.GetContentAsAsync<ApiResult>();
|
|
_snackbar.Add(exe != null ? exe.Message : ex.Content, Severity.Error);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_snackbar.Add(e.Message, Severity.Error);
|
|
}
|
|
finally
|
|
{
|
|
|
|
IsProcessing = false;
|
|
}
|
|
}
|
|
}
|
|
} |