2025-03-29 17:40:17 +00:00
|
|
|
using AIStudio.Settings;
|
|
|
|
using AIStudio.Tools.PluginSystem;
|
|
|
|
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
|
|
|
namespace AIStudio.Pages;
|
|
|
|
|
2025-03-30 18:34:30 +00:00
|
|
|
public partial class Plugins : ComponentBase, IMessageBusReceiver
|
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";
|
|
|
|
|
|
|
|
[Inject]
|
|
|
|
private MessageBus MessageBus { get; init; } = null!;
|
|
|
|
|
|
|
|
[Inject]
|
|
|
|
private SettingsManager SettingsManager { get; init; } = null!;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2025-03-30 18:34:30 +00:00
|
|
|
|
|
|
|
#region Implementation of IMessageBusReceiver
|
|
|
|
|
|
|
|
public string ComponentName => nameof(Plugins);
|
|
|
|
|
|
|
|
public Task ProcessMessage<T>(ComponentBase? sendingComponent, Event triggeredEvent, T? data)
|
|
|
|
{
|
|
|
|
switch (triggeredEvent)
|
|
|
|
{
|
|
|
|
case Event.PLUGINS_RELOADED:
|
|
|
|
this.InvokeAsync(this.StateHasChanged);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Task<TResult?> ProcessMessageWithResult<TPayload, TResult>(ComponentBase? sendingComponent, Event triggeredEvent, TPayload? data)
|
|
|
|
{
|
|
|
|
return Task.FromResult<TResult?>(default);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
2025-03-29 17:40:17 +00:00
|
|
|
}
|