Added configuration text component

This commit is contained in:
Thorsten Sommer 2024-07-27 22:31:13 +02:00
parent 08ac5ca654
commit 4abb237d5e
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,18 @@
@inherits ConfigurationBase
<MudTextField
T="string"
Text="@this.Text()"
TextChanged="@this.OptionChanged"
Label="@this.OptionDescription"
Disabled="@this.Disabled()"
Class="mb-3"
Adornment="Adornment.Start"
AdornmentIcon="@this.Icon"
AdornmentColor="@this.IconColor"
UserAttributes="@SPELLCHECK_ATTRIBUTES"
Lines="1"
Immediate="@false"
DebounceInterval="500"
Variant="Variant.Outlined"
/>

View File

@ -0,0 +1,37 @@
using Microsoft.AspNetCore.Components;
namespace AIStudio.Components.Blocks;
public partial class ConfigurationText : ConfigurationBase
{
/// <summary>
/// The text used for the textfield.
/// </summary>
[Parameter]
public Func<string> Text { get; set; } = () => string.Empty;
/// <summary>
/// An action which is called when the option is changed.
/// </summary>
[Parameter]
public Action<string> TextUpdate { get; set; } = _ => { };
/// <summary>
/// The icon to display next to the textfield.
/// </summary>
[Parameter]
public string Icon { get; set; } = Icons.Material.Filled.Info;
/// <summary>
/// The color of the icon to use.
/// </summary>
[Parameter]
public Color IconColor { get; set; } = Color.Default;
private async Task OptionChanged(string updatedText)
{
this.TextUpdate(updatedText);
await this.SettingsManager.StoreSettings();
await this.InformAboutChange();
}
}