AI-Studio/app/MindWork AI Studio/Dialogs/DocumentCheckDialog.razor.cs

63 lines
1.9 KiB
C#
Raw Permalink Normal View History

2025-12-30 17:30:32 +00:00
using AIStudio.Chat;
using AIStudio.Components;
using AIStudio.Tools.Services;
using Microsoft.AspNetCore.Components;
namespace AIStudio.Dialogs;
/// <summary>
/// Check how your file will be loaded.
/// </summary>
public partial class DocumentCheckDialog : MSGComponentBase
{
[CascadingParameter]
private IMudDialogInstance MudDialog { get; set; } = null!;
[Parameter]
2025-12-30 17:30:32 +00:00
public FileAttachment? Document { get; set; }
private void Close() => this.MudDialog.Cancel();
[Parameter]
public string FileContent { get; set; } = string.Empty;
[Inject]
private RustService RustService { get; init; } = null!;
[Inject]
private IDialogService DialogService { get; init; } = null!;
[Inject]
2025-12-30 17:30:32 +00:00
private ILogger<DocumentCheckDialog> Logger { get; init; } = null!;
protected override async Task OnAfterRenderAsync(bool firstRender)
{
2025-12-30 17:30:32 +00:00
if (firstRender && this.Document is not null)
{
try
{
2025-12-30 17:30:32 +00:00
if (!this.Document.IsImage)
{
var fileContent = await UserFile.LoadFileData(this.Document.FilePath, this.RustService, this.DialogService);
this.FileContent = fileContent;
}
}
catch (Exception ex)
{
2025-12-30 17:30:32 +00:00
this.Logger.LogError(ex, "Failed to load file content from '{FilePath}'", this.Document);
this.FileContent = string.Empty;
}
2025-12-30 17:30:32 +00:00
this.StateHasChanged();
}
else if (firstRender)
2025-12-30 17:30:32 +00:00
this.Logger.LogWarning("Document check dialog opened without a valid file path.");
}
private CodeBlockTheme CodeColorPalette => this.SettingsManager.IsDarkMode ? CodeBlockTheme.Dark : CodeBlockTheme.Default;
private MudMarkdownStyling MarkdownStyling => new()
{
CodeBlock = { Theme = this.CodeColorPalette },
};
}