LANCommander/LANCommander.Server/UI/Pages/Servers/Edit/Scripts.razor

24 lines
No EOL
829 B
Text

@page "/Servers/{id:guid}/Scripts"
@using LANCommander.SDK.Enums
@using LANCommander.Server.UI.Pages.Servers.Components
<ServerEditView Id="Id" Title="Scripts">
<TitleExtraTemplate>
@if (context != null && context.Id != Guid.Empty)
{
<Flex Align="FlexAlign.Center" Justify="FlexJustify.End" Wrap="FlexWrap.NoWrap" Gap="FlexGap.Small">
<ServerControl ServerId="context.Id" />
</Flex>
}
</TitleExtraTemplate>
<ChildContent>
<CascadingValue Name="ServerId" Value="context.Id">
<ScriptEditor AllowedTypes="new[] { ScriptType.BeforeStart, ScriptType.AfterStop, ScriptType.GameStarted, ScriptType.GameStopped }"/>
</CascadingValue>
</ChildContent>
</ServerEditView>
@code {
[Parameter] public Guid Id { get; set; }
}