AI-Studio/app/MindWork AI Studio/Assistants/VisualBriefing/VisualBriefingAssistant.razor.cs

275 lines
11 KiB
C#
Raw Normal View History

using AIStudio.Components;
using AIStudio.Dialogs;
using AIStudio.Dialogs.Settings;
using AIStudio.Tools.AssistantSessions;
using AIStudio.Tools.Services;
using Microsoft.AspNetCore.Components;
using DialogOptions = AIStudio.Dialogs.DialogOptions;
using ComponentKind = AIStudio.Tools.Components;
namespace AIStudio.Assistants.VisualBriefing;
/// <summary>
/// Defines <c>VisualBriefingAssistant</c> for the visual briefing feature.
/// </summary>
public partial class VisualBriefingAssistant : MSGComponentBase
{
/// <summary>
/// Defines <c>Store</c> for the visual briefing feature.
/// </summary>
[Inject]
private VisualBriefingStore Store { get; init; } = null!;
/// <summary>
/// Defines <c>BuildOrchestrator</c> for the visual briefing feature.
/// </summary>
[Inject]
private VisualBriefingBuildOrchestrator BuildOrchestrator { get; init; } = null!;
/// <summary>
/// Defines <c>BuildProgressService</c> for the visual briefing feature.
/// </summary>
[Inject]
private VisualBriefingBuildProgressService BuildProgressService { get; init; } = null!;
/// <summary>
/// Defines <c>PreviewTokenService</c> for the visual briefing feature.
/// </summary>
[Inject]
private VisualBriefingPreviewTokenService PreviewTokenService { get; init; } = null!;
/// <summary>
/// Defines <c>RustService</c> for the visual briefing feature.
/// </summary>
[Inject]
private RustService RustService { get; init; } = null!;
/// <summary>
/// Defines <c>MediaTranscriptionService</c> for the visual briefing feature.
/// </summary>
[Inject]
private MediaTranscriptionService MediaTranscriptionService { get; init; } = null!;
/// <summary>
/// Defines <c>DialogService</c> for the visual briefing feature.
/// </summary>
[Inject]
private IDialogService DialogService { get; init; } = null!;
/// <summary>
/// Defines <c>AssistantSessionService</c> for the visual briefing feature.
/// </summary>
[Inject]
private AssistantSessionService AssistantSessionService { get; init; } = null!;
/// <summary>
/// Defines <c>NavigationManager</c> for the visual briefing feature.
/// </summary>
[Inject]
private NavigationManager NavigationManager { get; init; } = null!;
/// <summary>
/// Defines <c>Logger</c> for the visual briefing feature.
/// </summary>
[Inject]
private ILogger<VisualBriefingAssistant> Logger { get; init; } = null!;
/// <summary>Tracks briefing projects with an active generation.</summary>
private readonly HashSet<Guid> generatingBriefings = [];
/// <summary>Stops the background source-status monitor.</summary>
private readonly CancellationTokenSource sourceMonitorCancellation = new();
/// <summary>Stores available and recoverable projects ordered by most recent modification.</summary>
private IReadOnlyList<VisualBriefingProjectEntry> projects = [];
/// <summary>Stores the project entry currently selected in the list.</summary>
private VisualBriefingProjectEntry? selectedProject;
/// <summary>Stores the project currently displayed by the editor.</summary>
private VisualBriefingManifest? selectedBriefing;
/// <summary>Stores every editable value of the selected briefing.</summary>
private VisualBriefingEditorState editor = new();
/// <summary>Stores the selected immutable revision.</summary>
private Guid selectedRevisionId;
/// <summary>Stores the preview viewport preset.</summary>
private VisualBriefingPreviewDevice previewDevice = VisualBriefingPreviewDevice.DESKTOP;
/// <summary>Stores the current tokenized preview URL.</summary>
private string previewUrl = string.Empty;
/// <summary>Stores the last auto-saved UI fingerprint.</summary>
private string lastPersistedState = string.Empty;
/// <summary>Stores clipboard-safe diagnostics for the latest operation.</summary>
private VisualBriefingOperationDiagnostics? lastBuildDiagnostics;
/// <summary>Stores the latest persistent or live build shown in the stepper.</summary>
private VisualBriefingBuildRecord? latestBuild;
/// <summary>Stores incompatible validated content offered for rebuild continuation.</summary>
private Guid? reusableContentBuildId;
/// <summary>Owns MudBlazor validation for the selected briefing editor.</summary>
private MudForm? visualBriefingForm;
/// <summary>Stores the current MudBlazor validation messages.</summary>
private string[] formIssues = [];
/// <summary>Requests validation after conditional form controls have rendered.</summary>
private bool formValidationPending;
/// <summary>Stores whether this component instance has already left the renderer.</summary>
private bool isDisposed;
/// <summary>
/// Defines <c>IsCurrentBusy</c> for the visual briefing feature.
/// </summary>
private bool IsCurrentBusy => this.selectedBriefing is not null &&
(this.IsGenerating(this.selectedBriefing.BriefingId) ||
this.MediaTranscriptionService.IsBusy(this.CurrentMediaOwner));
/// <summary>
/// Defines <c>OnInitializedAsync</c> for the visual briefing feature.
/// </summary>
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
if (!this.SettingsManager.IsAssistantVisible(
ComponentKind.VISUAL_BRIEFING_ASSISTANT,
assistantName: T("Visual Briefing Assistant"),
requiredPreviewFeature: ComponentKind.VISUAL_BRIEFING_ASSISTANT.RequiredPreviewFeature()))
{
this.NavigationManager.NavigateTo(Routes.ASSISTANTS);
return;
}
this.ApplyFilters([], [Event.SEND_TO_VISUAL_BRIEFING_ASSISTANT, Event.CONFIGURATION_CHANGED]);
this.MediaTranscriptionService.StateChanged += this.MediaStateChanged;
this.BuildProgressService.Changed += this.BuildProgressChanged;
await this.ReloadListAsync();
await this.ConsumePendingMediaOutcomesAsync();
_ = this.MonitorSourceStatusAsync(this.sourceMonitorCancellation.Token);
var deferredInstruction = this.MessageBus.CheckDeferredMessages<string>(Event.SEND_TO_VISUAL_BRIEFING_ASSISTANT).FirstOrDefault();
if (!string.IsNullOrWhiteSpace(deferredInstruction))
{
if (this.selectedBriefing is null)
await this.CreateBriefingAsync();
this.editor.Instruction = deferredInstruction;
await this.SaveCurrentAsync();
}
await this.ResumeSelectedBuildAsync();
}
/// <summary>
/// Defines <c>DisposeResources</c> for the visual briefing feature.
/// </summary>
protected override void DisposeResources()
{
this.isDisposed = true;
this.sourceMonitorCancellation.Cancel();
this.sourceMonitorCancellation.Dispose();
this.MediaTranscriptionService.StateChanged -= this.MediaStateChanged;
this.BuildProgressService.Changed -= this.BuildProgressChanged;
base.DisposeResources();
}
/// <summary>
/// Defines <c>OnAfterRenderAsync</c> for the visual briefing feature.
/// </summary>
protected override async Task OnAfterRenderAsync(bool firstRender)
{
await base.OnAfterRenderAsync(firstRender);
if (this.formValidationPending && this.visualBriefingForm is not null)
{
this.formValidationPending = false;
await this.visualBriefingForm.Validate();
}
if (this.selectedBriefing is null || this.IsCurrentBusy)
return;
var currentState = this.BuildPersistenceFingerprint();
if (string.Equals(currentState, this.lastPersistedState, StringComparison.Ordinal))
return;
this.lastPersistedState = currentState;
try
{
await this.SaveCurrentAsync();
}
catch (Exception exception) when (exception is IOException or UnauthorizedAccessException or InvalidDataException or InvalidOperationException)
{
this.lastPersistedState = string.Empty;
this.Logger.LogWarning(
"Could not auto-save visual briefing. BriefingId={BriefingId} ExceptionType={ExceptionType}",
this.selectedBriefing.BriefingId,
exception.GetType().Name);
await this.MessageBus.SendError(new(Icons.Material.Filled.SaveAs, T("The visual briefing settings could not be saved.")));
}
}
/// <summary>
/// Defines <c>T</c> for the visual briefing feature.
/// </summary>
protected override async Task ProcessIncomingMessage<T>(ComponentBase? sendingComponent, Event triggeredEvent, T? data) where T : default
{
if (triggeredEvent is Event.SEND_TO_VISUAL_BRIEFING_ASSISTANT && data is string text)
{
if (this.selectedBriefing is null)
await this.CreateBriefingAsync();
this.editor.Instruction = text;
await this.SaveCurrentAsync();
this.StateHasChanged();
return;
}
if (triggeredEvent is Event.CONFIGURATION_CHANGED)
this.StateHasChanged();
await base.ProcessIncomingMessage(sendingComponent, triggeredEvent, data);
}
/// <summary>
/// Defines <c>ConfirmLargeFileAsync</c> for the visual briefing feature.
/// </summary>
private async Task<bool> ConfirmLargeFileAsync(string path, string operation)
{
if (new FileInfo(path).Length < 50L * 1_024 * 1_024)
return true;
var parameters = new DialogParameters<ConfirmDialog>
{
{ dialog => dialog.Message, string.Format(T("This briefing is larger than 50 MB. Continue with the {0}?"), operation) },
};
var reference = await this.DialogService.ShowAsync<ConfirmDialog>(T("Large visual briefing"), parameters, DialogOptions.FULLSCREEN);
var result = await reference.Result;
return result is not null && !result.Canceled;
}
/// <summary>
/// Opens the visual briefing settings.
/// </summary>
/// <remarks>
/// Every assistant derived from <see cref="AssistantBaseCore{TSettings}"/> offers this next to its
/// title. This one has to wire it up itself, because it does not use that base component.
/// </remarks>
private async Task OpenSettingsDialogAsync() => await this.DialogService.ShowAsync<SettingsDialogVisualBriefing>(null, new DialogParameters(), DialogOptions.FULLSCREEN);
/// <summary>
/// Defines <c>PathComparer</c> for the visual briefing feature.
/// </summary>
private static StringComparer PathComparer() => OperatingSystem.IsWindows()
? StringComparer.OrdinalIgnoreCase
: StringComparer.Ordinal;
}