mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 07:22:56 +00:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using AIStudio.Dialogs.Settings;
|
|
using AIStudio.Settings;
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
using DialogOptions = AIStudio.Dialogs.DialogOptions;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class ChatTemplateSelection : MSGComponentBase
|
|
{
|
|
[Parameter]
|
|
public ChatTemplate CurrentChatTemplate { get; set; } = ChatTemplate.NO_CHAT_TEMPLATE;
|
|
|
|
[Parameter]
|
|
public EventCallback<ChatTemplate> CurrentChatTemplateChanged { get; set; }
|
|
|
|
[Parameter]
|
|
public string MarginLeft { get; set; } = "ml-1";
|
|
|
|
[Parameter]
|
|
public string MarginRight { get; set; } = string.Empty;
|
|
|
|
[Inject]
|
|
private IDialogService DialogService { get; init; } = null!;
|
|
|
|
private string MarginClass => $"{this.MarginLeft} {this.MarginRight}";
|
|
|
|
private async Task SelectionChanged(ChatTemplate chatTemplate)
|
|
{
|
|
this.CurrentChatTemplate = chatTemplate;
|
|
await this.CurrentChatTemplateChanged.InvokeAsync(chatTemplate);
|
|
}
|
|
|
|
private async Task OpenSettingsDialog()
|
|
{
|
|
var dialogParameters = new DialogParameters();
|
|
await this.DialogService.ShowAsync<SettingsDialogChatTemplate>(T("Open Chat Template Options"), dialogParameters, DialogOptions.FULLSCREEN);
|
|
}
|
|
} |