@page "/notifications" @using Blazored.Toast @using Microsoft.AspNetCore.Components.QuickGrid @rendermode RenderMode.InteractiveServer Notifications | Shop Console
@if (NotificationQueryable == null && IsLoading) {

Initializing Operational Console registers...

}
Operational Inventory
Metric Item Telemetry Node Register
Total Inbound Volume Core-System @TotalCount
Operational Failures Fault-Engine @ErrorCount
Pending Dispatches Queue-Worker @PendingCount
Health Efficiency
@SuccessRate%
@((TotalCount > 0) ? Math.Round(((double)PendingCount / TotalCount) * 100) : 0)%
Telemetry Filters
Operational Load Density Timeline
04/17 04/24 05/01 05/08 05/17
@if (NotificationQueryable == null && IsLoading) {

Syncing system log registers...

} else {
@if (IsLoading) {

Syncing system log registers...

}
@context.Platform @context.Direction
@context.Priority
@(string.IsNullOrWhiteSpace(context.SenderName) ? "System Core" : context.SenderName) @context.SenderAddress
@context.Subject @if (!string.IsNullOrWhiteSpace(context.Message)) { @context.Message }
@context.RecipientName @context.RecipientAddress
@if (context.HasError) { ✕ Error } else if (context.Processed) { ✓ Processed } else { ⚙ Pending } @if (context.HasError) { } else { @((MarkupString)" ") }
}