| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using MediatR;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Mvc.RazorPages;
- namespace Admin.Pages.Config
- {
- public class ExternalModel(IMediator mediator) : PageModel
- {
- [BindProperty]
- public InputModel Input { get; set; } = new();
- public async Task OnGetAsync(CancellationToken ct)
- {
- var config = await mediator.Send(new GetConfig.Query(), ct);
- if (config is not null)
- {
- Input = InputModel.From(config);
- }
- }
- public async Task<IActionResult> OnPostAsync(CancellationToken ct)
- {
- if (!ModelState.IsValid)
- {
- return Page();
- }
- await mediator.Send(Input.ToCommand(), ct);
- TempData["SuccessMessage"] = "저장되었습니다.";
- return RedirectToPage();
- }
- public sealed class InputModel
- {
- public UpdateConfig.Request.ExternalApiConfigDto External { get; set; } = new();
- public static InputModel From(GetConfig.Response config)
- {
- var req = UpdateConfig.Request.From(config);
- return new()
- {
- External = req.External
- };
- }
- public UpdateConfig.Command ToCommand()
- {
- return new(
- External: External
- );
- }
- }
- }
- }
|