| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- using SharedKernel.Helpers;
- using Application.Abstractions.Messaging;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Mvc.RazorPages;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Admin.Pages.Payments.Toss.Cancel;
- public class IndexModel(IMediator mediator) : PageModel
- {
- [BindProperty(SupportsGet = true)]
- public QueryParams Query { get; set; } = new();
- public sealed class QueryParams
- {
- [Range(1, int.MaxValue)]
- [DisplayName("페이지 번호")]
- public int PageNum { get; set; } = 1;
- [Range(1, 100)]
- [DisplayName("페이지 목록 수")]
- public ushort PerPage { get; set; } = 10;
- [DisplayName("검색 조건")]
- [Range(1, 5, ErrorMessage = "{0}이(가) 올바르지 않습니다.")]
- public int? Search { get; set; }
- [DisplayName("검색어")]
- [MaxLength(100, ErrorMessage = "{0}은(는) {1}자 이하로 입력하세요.")]
- public string? Keyword { get; set; }
- [DisplayName("시작일")]
- public string? StartAt { get; set; }
- [DisplayName("종료일")]
- public string? EndAt { get; set; }
- [DisplayName("처리 상태")]
- [Range(1, 3, ErrorMessage = "{0}이(가) 올바르지 않습니다.")]
- public int? State { get; set; }
- }
- public int Total { get; set; } = 0;
- public SearchTossCancels.Response.StateCounts Counts { get; set; } = new();
- public List<SearchTossCancels.Response.Row> List { get; set; } = [];
- public Pagination? Pagination { get; set; }
- public async Task OnGetAsync(CancellationToken ct)
- {
- if (!ModelState.IsValid)
- {
- return;
- }
- var result = await mediator.Send(new SearchTossCancels.Query(
- Query.PageNum,
- Query.PerPage,
- Query.Search,
- Query.Keyword,
- Query.StartAt,
- Query.EndAt,
- Query.State
- ), ct);
- Total = result.Total;
- Counts = result.Counts;
- List = [.. result.List];
- Pagination = new Pagination(result.Total, Query.PageNum, Query.PerPage, Request.QueryString.ToString());
- }
- public async Task<IActionResult> OnPostDeleteAsync(int[] ids, CancellationToken ct)
- {
- try
- {
- if (ids is null || ids.Length == 0)
- {
- throw new Exception("삭제할 항목을 선택해주세요.");
- }
- await mediator.Send(new DeleteTossCancels.Command(ids), ct);
- TempData["SuccessMessage"] = $"{ids.Length}건이 삭제되었습니다.";
- }
- catch (Exception e)
- {
- TempData["ErrorMessages"] = e.Message;
- }
- return Redirect($"{Request.Path}{Request.QueryString}");
- }
- }
|