Restructure redistributable panels to fix initially-empty archive table
parent
4393c8fdff
commit
2d86ff2518
|
@ -22,13 +22,24 @@
|
||||||
|
|
||||||
<Content>
|
<Content>
|
||||||
<PageHeader>
|
<PageHeader>
|
||||||
<PageHeaderTitle>@Panel</PageHeaderTitle>
|
<PageHeaderTitle>
|
||||||
|
@if (Panel == null)
|
||||||
|
{
|
||||||
|
<Text>Add New Redistributable</Text>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@Panel
|
||||||
|
}
|
||||||
|
</PageHeaderTitle>
|
||||||
|
<PageHeaderExtra>
|
||||||
|
<Button Type="@ButtonType.Primary" OnClick="Save">Save</Button>
|
||||||
|
</PageHeaderExtra>
|
||||||
</PageHeader>
|
</PageHeader>
|
||||||
|
|
||||||
|
|
||||||
<div class="panel-layout-content">
|
<div class="panel-layout-content">
|
||||||
@if (Panel == "General" || String.IsNullOrWhiteSpace(Panel))
|
<div data-panel="General">
|
||||||
{
|
|
||||||
<Form Model="@Redistributable" Layout="@FormLayout.Vertical">
|
<Form Model="@Redistributable" Layout="@FormLayout.Vertical">
|
||||||
<FormItem Label="Name">
|
<FormItem Label="Name">
|
||||||
<Input @bind-Value="@context.Name" />
|
<Input @bind-Value="@context.Name" />
|
||||||
|
@ -39,26 +50,40 @@
|
||||||
<FormItem Label="Description">
|
<FormItem Label="Description">
|
||||||
<TextArea @bind-Value="@context.Description" MaxLength=500 ShowCount />
|
<TextArea @bind-Value="@context.Description" MaxLength=500 ShowCount />
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|
||||||
<FormItem>
|
|
||||||
<Button Type="@ButtonType.Primary" OnClick="Save" Icon="@IconType.Fill.Save">Save</Button>
|
|
||||||
</FormItem>
|
|
||||||
</Form>
|
</Form>
|
||||||
}
|
</div>
|
||||||
|
|
||||||
@if (Panel == "Scripts")
|
@if (Redistributable != null && Redistributable.Id != Guid.Empty)
|
||||||
{
|
{
|
||||||
<ScriptEditor @bind-Scripts="Redistributable.Scripts" RedistributableId="Redistributable.Id" ArchiveId="@LatestArchiveId" AllowedTypes="new ScriptType[] { ScriptType.Install, ScriptType.DetectInstall }" />
|
<div data-panel="Scripts">
|
||||||
}
|
<ScriptEditor @bind-Scripts="Redistributable.Scripts" RedistributableId="Redistributable.Id" ArchiveId="@LatestArchiveId" AllowedTypes="new ScriptType[] { ScriptType.Install, ScriptType.DetectInstall }" />
|
||||||
|
</div>
|
||||||
|
|
||||||
@if (Panel == "Archives")
|
<div data-panel="Archives">
|
||||||
{
|
<ArchiveEditor @bind-Archives="Redistributable.Archives" RedistributableId="Redistributable.Id" />
|
||||||
<ArchiveEditor @bind-Archives="Redistributable.Archives" RedistributableId="Redistributable.Id" />
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</Content>
|
</Content>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
||||||
|
@if (!String.IsNullOrWhiteSpace(Panel))
|
||||||
|
{
|
||||||
|
<style>
|
||||||
|
.panel-layout [data-panel="@Panel"] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<style>
|
||||||
|
.panel-layout [data-panel="General"] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
}
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
[Parameter] public Guid Id { get; set; }
|
[Parameter] public Guid Id { get; set; }
|
||||||
[Parameter] public string Panel { get; set; }
|
[Parameter] public string Panel { get; set; }
|
||||||
|
|
Loading…
Reference in New Issue