using FoodsharingSiegen.Contracts.Entity; using FoodsharingSiegen.Contracts.Enums; using FoodsharingSiegen.Server.Data.Service; using FoodsharingSiegen.Server.Dialogs; using FoodsharingSiegen.Shared.Helper; using Microsoft.AspNetCore.Components; namespace FoodsharingSiegen.Server.Controls { public partial class ProspectContainer { #region Dependencies /// /// Gets or sets the value of the prospect service (ab) /// [Inject] public ProspectService ProspectService { get; set; } = null!; #endregion #region Parameters [Parameter] public string? CssClass { get; set; } [Parameter] public Func? OnDataChanged { get; set; } [Parameter] public Prospect? Prospect { get; set; } [Parameter] public ProspectStateFilter StateFilter { get; set; } #endregion #region Private Method AddInteraction private async Task AddInteraction(InteractionType type) { if (Prospect != null && OnDataChanged != null) { var headerText = $"{type.Translate(AppSettings)} für {Prospect.Name} eintragen"; await InteractionDialog.ShowAsync(ModalService, new(type, Prospect.Id, headerText, OnDataChanged)); } } #endregion #region Private Method DeleteProspectAsync /// /// Deletes the currently selected prospect after user confirmation. This action is irreversible and will update the record state to "Deleted". /// /// A task that represents the asynchronous delete operation. private async Task DeleteProspectAsync() { if (Prospect == null) return; await ConfirmDialog.ShowAsync(ModalService, $"⚠️ {Prospect.Name} löschen", $"Soll {Prospect.Name} mit der FS-ID {Prospect.FsId} wirklich gelöscht werden? Das kann nicht rückgängig gemacht werden!!", async () => { Prospect.RecordState = RecordState.Deleted; var updateR = await ProspectService.UpdateAsync(Prospect); if (updateR.Success && OnDataChanged != null) await OnDataChanged(); }); } #endregion #region Private Method EditProspectAsync private async Task EditProspectAsync() { await EditProspectDialog.ShowAsync(ModalService, OnDataChanged ?? (async () => await Task.CompletedTask), Prospect); } #endregion #region Private Method GetTyped private List GetTyped(InteractionType type) { return Prospect?.Interactions?.Where(x => x.Type == type).ToList() ?? []; } #endregion #region Private Method RemoveInteraction /// /// Removes a specified interaction by its identifier. Displays a confirmation dialog to the user before performing the removal. /// /// The unique identifier of the interaction to be removed. /// A task that represents the asynchronous operation. private async Task RemoveInteraction(Guid arg) { var type = Prospect?.Interactions.FirstOrDefault(x => x.Id == arg)?.Type; var typeName = type != null ? type.Value.Translate(AppSettings) : "Interaktion"; await ConfirmDialog.ShowAsync(ModalService, "Bestätigen", $"{typeName} wirklich entfernen?", async () => { var removeR = await ProspectService.RemoveInteraction(arg); if (removeR.Success && OnDataChanged != null) await OnDataChanged(); }); } #endregion #region Private Method RestoreProspectAsync /// /// Restores the currently selected prospect after user confirmation. This action will update the record state to "Default". /// /// A task that represents the asynchronous restore operation. private async Task RestoreProspectAsync() { if (Prospect == null) return; await ConfirmDialog.ShowAsync(ModalService, $"{Prospect.Name} wiederherstellen", $"Soll {Prospect.Name} mit der FS-ID {Prospect.FsId} wiederhergestellt werden?", async () => { Prospect.RecordState = RecordState.Default; var updateR = await ProspectService.UpdateAsync(Prospect); if (updateR.Success && OnDataChanged != null) await OnDataChanged(); }); } #endregion } }