2025-04-12 19:13:33 +00:00
|
|
|
using AIStudio.Components;
|
2025-03-29 17:40:17 +00:00
|
|
|
using AIStudio.Tools.PluginSystem;
|
|
|
|
|
|
|
|
namespace AIStudio.Pages;
|
|
|
|
|
2025-04-12 19:13:33 +00:00
|
|
|
public partial class Plugins : MSGComponentBase
|
2025-03-29 17:40:17 +00:00
|
|
|
{
|
|
|
|
private const string GROUP_ENABLED = "Enabled";
|
|
|
|
private const string GROUP_DISABLED = "Disabled";
|
|
|
|
private const string GROUP_INTERNAL = "Internal";
|
|
|
|
|
|
|
|
private TableGroupDefinition<IPluginMetadata> groupConfig = null!;
|
|
|
|
|
|
|
|
#region Overrides of ComponentBase
|
|
|
|
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
|
|
{
|
2025-03-30 18:34:30 +00:00
|
|
|
this.MessageBus.RegisterComponent(this);
|
|
|
|
this.MessageBus.ApplyFilters(this, [], [ Event.PLUGINS_RELOADED ]);
|
|
|
|
|
2025-03-29 17:40:17 +00:00
|
|
|
this.groupConfig = new TableGroupDefinition<IPluginMetadata>
|
|
|
|
{
|
|
|
|
Expandable = true,
|
|
|
|
IsInitiallyExpanded = true,
|
|
|
|
Selector = pluginMeta =>
|
|
|
|
{
|
|
|
|
if (pluginMeta.IsInternal)
|
|
|
|
return GROUP_INTERNAL;
|
|
|
|
|
|
|
|
return this.SettingsManager.IsPluginEnabled(pluginMeta)
|
|
|
|
? GROUP_ENABLED
|
|
|
|
: GROUP_DISABLED;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
await base.OnInitializedAsync();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
2025-04-12 19:13:33 +00:00
|
|
|
|
|
|
|
#region Overrides of MSGComponentBase
|
|
|
|
|
|
|
|
public override string ComponentName => nameof(Plugins);
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2025-03-29 17:40:17 +00:00
|
|
|
private async Task PluginActivationStateChanged(IPluginMetadata pluginMeta)
|
|
|
|
{
|
|
|
|
if (this.SettingsManager.IsPluginEnabled(pluginMeta))
|
|
|
|
this.SettingsManager.ConfigurationData.EnabledPlugins.Remove(pluginMeta.Id);
|
|
|
|
else
|
|
|
|
this.SettingsManager.ConfigurationData.EnabledPlugins.Add(pluginMeta.Id);
|
|
|
|
|
|
|
|
await this.SettingsManager.StoreSettings();
|
|
|
|
await this.MessageBus.SendMessage<bool>(this, Event.CONFIGURATION_CHANGED);
|
|
|
|
}
|
|
|
|
}
|