using Microsoft.AspNetCore.Mvc; using PlotLine.Services; using PlotLine.ViewModels; namespace PlotLine.Controllers; public sealed class CharactersController(ICharacterService characters) : Controller { public async Task Index(int projectId) { var model = await characters.GetCharactersAsync(projectId); return model is null ? NotFound() : View(model); } public async Task Create(int projectId) { var model = await characters.GetCreateCharacterAsync(projectId); return model is null ? NotFound() : View("Edit", model); } public async Task Edit(int id) { var model = await characters.GetEditCharacterAsync(id); return model is null ? NotFound() : View(model); } public async Task Details(int id) { var model = await characters.GetCharacterDetailAsync(id); return model is null ? NotFound() : View(model); } [HttpPost] [ValidateAntiForgeryToken] public async Task Save(CharacterEditViewModel model) { if (!ModelState.IsValid) { return View("Edit", model); } var characterId = await characters.SaveCharacterAsync(model); return RedirectToAction(nameof(Details), new { id = characterId }); } [HttpPost] [ValidateAntiForgeryToken] public async Task Archive(int id, int projectId) { await characters.ArchiveCharacterAsync(id); return RedirectToAction(nameof(Index), new { projectId }); } }