| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- using SharedKernel.Extensions;
- using SharedKernel.Helpers;
- using MediatR;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Mvc.RazorPages;
- using Microsoft.AspNetCore.Mvc.Rendering;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Admin.Pages.Forum.Posts.List
- {
- public class IndexModel(IMediator mediator) : PageModel
- {
- [BindProperty(SupportsGet = true)]
- public QueryParams Query { get; set; } = new();
- public sealed class QueryParams
- {
- public int? BoardID { get; set; }
- public int? BoardPrefixID { get; set; }
- public int? Search { get; set; }
- public string? Keyword { get; set; }
- public string? StartAt { get; set; }
- public string? EndAt { get; set; }
- public int? Sort { get; set; }
- public bool? IsNotice { get; set; }
- public bool? IsSecret { get; set; }
- public bool? IsReply { get; set; }
- public bool? IsDeleted { get; set; }
- public bool? IsQnA { get; set; }
- [Range(1, int.MaxValue)]
- [DisplayName("페이지 번호")]
- public int PageNum { get; set; } = 1;
- [Range(1, 100)]
- [DisplayName("페이지 목록 수")]
- public ushort PerPage { get; set; } = 20;
- }
- public int Total { get; set; }
- public List<SelectListItem> BoardList { get; set; } = [];
- public List<(
- int No,
- int ID,
- int BoardID,
- string BoardName,
- string? BoardPrefixName,
- int? BoardPrefixID,
- string Subject,
- string? Thumbnail,
- string? Name,
- string? SID,
- bool IsNotice,
- bool IsSecret,
- bool IsQnA,
- bool IsReply,
- bool IsSpeaker,
- bool IsAnonymous,
- bool IsActive,
- bool IsDeleted,
- int Views,
- int Likes,
- int Dislikes,
- int Comments,
- byte Images,
- byte Medias,
- byte Files,
- byte Tags,
- string? UpdatedAt,
- string CreatedAt,
- string ViewURL
- )> Data { get; set; } = [];
- public Pagination? Pagination { get; set; }
- public async Task OnGetAsync(CancellationToken ct)
- {
- if (!ModelState.IsValid)
- {
- return;
- }
- // 게시판 목록 조회
- var boards = await mediator.Send(new SearchBoards.Query(null, null, 1, 500), ct);
- BoardList = [..boards.List.Select(c => new SelectListItem
- {
- Value = c.ID.ToString(),
- Text = $"[{c.BoardGroupName}] {c.Name}"
- })];
- var result = await mediator.Send(new SearchPosts.Query(
- Query.BoardID,
- Query.BoardPrefixID,
- Query.Search,
- Query.Keyword,
- Query.StartAt,
- Query.EndAt,
- Query.Sort,
- Query.IsNotice,
- Query.IsSecret,
- Query.IsReply,
- Query.IsDeleted,
- Query.IsQnA,
- Query.PageNum,
- Query.PerPage
- ), ct);
- Total = result.Total;
- Data = [..result.List.Select(c => (
- c.Num,
- c.ID,
- c.BoardID,
- c.BoardName,
- c.BoardPrefixName,
- c.BoardPrefixID,
- c.Subject,
- c.Thumbnail,
- c.Name,
- c.SID,
- c.IsNotice,
- c.IsSecret,
- c.IsQnA,
- c.IsReply,
- c.IsSpeaker,
- c.IsAnonymous,
- IsActive: !c.IsDeleted,
- c.IsDeleted,
- c.Views,
- c.Likes,
- c.Dislikes,
- c.Comments,
- c.Images,
- c.Medias,
- c.Files,
- c.Tags,
- c.UpdatedAt.GetDateAt() ?? "-",
- c.CreatedAt.GetDateAt(),
- ViewURL: $"/Forum/Posts/List/View/{c.ID}{Request.QueryString}"
- ))];
- Pagination = new Pagination(result.Total, Query.PageNum, Query.PerPage);
- }
- public async Task<IActionResult> OnPostDeleteAsync(int[] ids, CancellationToken ct)
- {
- try
- {
- await mediator.Send(new DeletePost.Command(ids), ct);
- TempData["SuccessMessage"] = $"{ids.Length}건이 삭제되었습니다.";
- }
- catch (Exception e)
- {
- TempData["ErrorMessages"] = e.Message;
- }
- return RedirectToPage("/Forum/Posts/List/Index", Query);
- }
- }
- }
|