2025-03-25 18:24:21 +00:00
|
|
|
@using AIStudio.Tools.PluginSystem
|
2025-03-23 14:51:56 +00:00
|
|
|
@attribute [Route(Routes.PLUGINS)]
|
|
|
|
|
|
|
|
<div class="inner-scrolling-context">
|
2025-03-25 19:50:57 +00:00
|
|
|
<MudText Typo="Typo.h3" Class="mb-2">
|
2025-03-25 18:24:21 +00:00
|
|
|
Plugins
|
|
|
|
</MudText>
|
2025-03-25 19:50:57 +00:00
|
|
|
<PreviewExperimental ApplyInnerScrollingFix="true"/>
|
2025-03-25 18:24:21 +00:00
|
|
|
|
2025-03-23 14:51:56 +00:00
|
|
|
<InnerScrolling>
|
2025-03-25 18:24:21 +00:00
|
|
|
<MudList T="string">
|
|
|
|
@foreach (var plugin in PluginFactory.AvailablePlugins)
|
|
|
|
{
|
|
|
|
<MudListItem>
|
|
|
|
<AvatarContent>
|
|
|
|
<MudAvatar Size="Size.Large" Class="align-content-stretch me-4">
|
|
|
|
<div class="plugin-icon-container">
|
|
|
|
@((MarkupString)plugin.IconSVG)
|
|
|
|
</div>
|
|
|
|
</MudAvatar>
|
|
|
|
</AvatarContent>
|
|
|
|
<ChildContent>
|
|
|
|
<MudText Typo="Typo.h6">
|
|
|
|
@plugin.Name
|
|
|
|
</MudText>
|
|
|
|
<MudJustifiedText Typo="Typo.body1">
|
|
|
|
@plugin.Description
|
|
|
|
</MudJustifiedText>
|
|
|
|
</ChildContent>
|
|
|
|
</MudListItem>
|
|
|
|
}
|
|
|
|
</MudList>
|
2025-03-23 14:51:56 +00:00
|
|
|
</InnerScrolling>
|
|
|
|
</div>
|