2025-12-30 17:30:32 +00:00
|
|
|
|
using AIStudio.Chat;
|
|
|
|
|
|
using AIStudio.Components;
|
2025-12-05 19:48:54 +00:00
|
|
|
|
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; }
|
2025-12-05 19:48:54 +00:00
|
|
|
|
|
|
|
|
|
|
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!;
|
2025-12-05 19:48:54 +00:00
|
|
|
|
|
|
|
|
|
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
|
|
|
|
|
{
|
2025-12-30 17:30:32 +00:00
|
|
|
|
if (firstRender && this.Document is not null)
|
2025-12-05 19:48:54 +00:00
|
|
|
|
{
|
2025-12-08 20:15:45 +00:00
|
|
|
|
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;
|
|
|
|
|
|
}
|
2025-12-08 20:15:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
|
{
|
2025-12-30 17:30:32 +00:00
|
|
|
|
this.Logger.LogError(ex, "Failed to load file content from '{FilePath}'", this.Document);
|
2025-12-08 20:15:45 +00:00
|
|
|
|
this.FileContent = string.Empty;
|
|
|
|
|
|
}
|
2025-12-30 17:30:32 +00:00
|
|
|
|
|
|
|
|
|
|
this.StateHasChanged();
|
2025-12-05 19:48:54 +00:00
|
|
|
|
}
|
2025-12-08 20:15:45 +00:00
|
|
|
|
else if (firstRender)
|
2025-12-30 17:30:32 +00:00
|
|
|
|
this.Logger.LogWarning("Document check dialog opened without a valid file path.");
|
2025-12-05 19:48:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private CodeBlockTheme CodeColorPalette => this.SettingsManager.IsDarkMode ? CodeBlockTheme.Dark : CodeBlockTheme.Default;
|
|
|
|
|
|
|
|
|
|
|
|
private MudMarkdownStyling MarkdownStyling => new()
|
|
|
|
|
|
{
|
|
|
|
|
|
CodeBlock = { Theme = this.CodeColorPalette },
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|