mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 20:09:06 +00:00
43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using AIStudio.Settings;
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Dialogs;
|
|
|
|
public partial class SingleInputDialog : ComponentBase
|
|
{
|
|
[CascadingParameter]
|
|
private MudDialogInstance MudDialog { get; set; } = null!;
|
|
|
|
[Parameter]
|
|
public string Message { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string UserInput { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string ConfirmText { get; set; } = "OK";
|
|
|
|
[Parameter]
|
|
public Color ConfirmColor { get; set; } = Color.Error;
|
|
|
|
[Inject]
|
|
private SettingsManager SettingsManager { get; set; } = null!;
|
|
|
|
private static readonly Dictionary<string, object?> USER_INPUT_ATTRIBUTES = new();
|
|
|
|
#region Overrides of ComponentBase
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
// Configure the spellchecking for the user input:
|
|
this.SettingsManager.InjectSpellchecking(USER_INPUT_ATTRIBUTES);
|
|
await base.OnInitializedAsync();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private void Cancel() => this.MudDialog.Cancel();
|
|
|
|
private void Confirm() => this.MudDialog.Close(DialogResult.Ok(this.UserInput));
|
|
} |