Adopt the technical-light design system across the Admin web UI: - Vendor theme.css + IBM Plex woff2 fonts into wwwroot; include theme.css globally after Bootstrap. - Rebuild MainLayout: top app-bar (brand mark, breadcrumb, connection pill) + hairline-ruled side rail with accent-bordered active link. - Convert all 33 pages to the component catalog — tables to panel + data-table (num/mono columns), KPI cards to agg-grid, detail blocks to metric-card/kv rows, badges to chips, alerts to panel notice, headings to page-title/panel-head, .rise reveals. - Buttons/forms stay on Bootstrap; theme.css restyles them via --bs-* overrides. View-specific layout lives in app.css; all colour/type comes from theme.css tokens. Also fix a pre-existing /fleet 500: the node-state query ordered on a property of a constructed FleetNodeRow record, which EF Core cannot translate. Order the join's columns before projecting. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
@using Microsoft.AspNetCore.Components.Web
|
|
@inject IJSRuntime JS
|
|
|
|
@*
|
|
Monaco-backed C# code editor (Phase 7 Stream F). Progressive enhancement:
|
|
textarea renders immediately, Monaco mounts via JS interop after first render.
|
|
Monaco script tags are loaded once from the parent layout (wwwroot/js/monaco-loader.js
|
|
pulls the CDN bundle).
|
|
|
|
Stream F keeps the interop surface small — bind `Source` two-way, and the parent
|
|
tab re-renders on change for the dependency preview. The test-harness button
|
|
lives in the parent so one editor can drive multiple script types.
|
|
*@
|
|
|
|
<div class="script-editor">
|
|
<textarea class="form-control mono" rows="14" spellcheck="false"
|
|
@bind="Source" @bind:event="oninput" id="@_editorId">@Source</textarea>
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter] public string Source { get; set; } = string.Empty;
|
|
[Parameter] public EventCallback<string> SourceChanged { get; set; }
|
|
|
|
private readonly string _editorId = $"script-editor-{Guid.NewGuid():N}";
|
|
|
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
|
{
|
|
if (firstRender)
|
|
{
|
|
try
|
|
{
|
|
await JS.InvokeVoidAsync("otOpcUaScriptEditor.attach", _editorId);
|
|
}
|
|
catch (JSException)
|
|
{
|
|
// Monaco bundle not yet loaded on this page — textarea fallback is
|
|
// still functional.
|
|
}
|
|
}
|
|
}
|
|
}
|