Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 76fe6886f2 | |||
| bbc724957a | |||
| 47418a60ad | |||
| a5f397e388 | |||
| ea77dfa4af | |||
| a002323d69 | |||
| 519ef68ef8 | |||
| 98eefa89b4 | |||
| 3b632a5bc7 | |||
| f19eaa75ae |
@@ -17,7 +17,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<TopBarAuthstateView />
|
<TopBarAuthstateView IsAuthenticated="false" />
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<CascadingAuthenticationState>
|
<CascadingAuthenticationState>
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
@page "/login"
|
@page "/login"
|
||||||
@using Microsoft.AspNetCore.Components.Authorization
|
@using Microsoft.AspNetCore.Components.Authorization
|
||||||
@inject NavigationManager Navigation
|
|
||||||
@rendermode InteractiveServer
|
|
||||||
|
|
||||||
<div class="auth-workspace-canvas">
|
<div class="auth-workspace-canvas">
|
||||||
<div class="tech-background-matrix">
|
<div class="tech-background-matrix">
|
||||||
@@ -69,16 +67,8 @@
|
|||||||
[CascadingParameter]
|
[CascadingParameter]
|
||||||
private Task<AuthenticationState>? AuthState { get; set; }
|
private Task<AuthenticationState>? AuthState { get; set; }
|
||||||
|
|
||||||
protected override async Task OnInitializedAsync()
|
private void HandleLogin()
|
||||||
{
|
{
|
||||||
if (AuthState is not null)
|
// Wire up your OAuth / OpenID Connect Redirect or Auth trigger state here
|
||||||
{
|
|
||||||
var state = await AuthState;
|
|
||||||
|
|
||||||
if (state.User.Identity?.IsAuthenticated ?? false)
|
|
||||||
Navigation.NavigateTo("/", replace: true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void HandleLogin() => Navigation.NavigateTo("/auth/login", forceLoad: true);
|
|
||||||
}
|
}
|
||||||
@@ -62,21 +62,19 @@
|
|||||||
|
|
||||||
<div class="shelf-divider"></div>
|
<div class="shelf-divider"></div>
|
||||||
|
|
||||||
<NavLink class="shelf-link" href="@ProfileUrl" target="_blank" @onclick="CloseShelf">
|
<NavLink class="shelf-link" href="settings" @onclick="CloseShelf">
|
||||||
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
|
||||||
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
|
<span>Settings</span>
|
||||||
<circle cx="12" cy="7" r="4"></circle>
|
|
||||||
</svg>
|
|
||||||
<span>Profile</span>
|
|
||||||
</NavLink>
|
</NavLink>
|
||||||
|
|
||||||
<NavLink class="shelf-link" href="auth/logout" ForceLoad="true" @onclick="CloseShelf">
|
<NavLink class="shelf-link" href="policies" @onclick="CloseShelf">
|
||||||
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>
|
||||||
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path>
|
<span>Policies</span>
|
||||||
<polyline points="16 17 21 12 16 7"></polyline>
|
</NavLink>
|
||||||
<line x1="21" y1="12" x2="9" y2="12"></line>
|
|
||||||
</svg>
|
<NavLink class="shelf-link" href="profile" @onclick="CloseShelf">
|
||||||
<span>Logout</span>
|
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
|
||||||
|
<span>Profile</span>
|
||||||
</NavLink>
|
</NavLink>
|
||||||
</nav>
|
</nav>
|
||||||
</aside>
|
</aside>
|
||||||
@@ -85,24 +83,6 @@
|
|||||||
[Parameter] public bool IsOpen { get; set; } = false;
|
[Parameter] public bool IsOpen { get; set; } = false;
|
||||||
[Parameter] public EventCallback<bool> IsOpenChanged { get; set; }
|
[Parameter] public EventCallback<bool> IsOpenChanged { get; set; }
|
||||||
|
|
||||||
[Inject] private IConfiguration? Configuration { get; set; }
|
|
||||||
|
|
||||||
private string? ProfileUrl { get; set; }
|
|
||||||
|
|
||||||
protected override void OnInitialized()
|
|
||||||
{
|
|
||||||
if (Configuration is null) return;
|
|
||||||
|
|
||||||
var authority = Configuration["IdKongisa:Authority"];
|
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(authority))
|
|
||||||
{
|
|
||||||
var uri = new Uri(authority);
|
|
||||||
|
|
||||||
ProfileUrl = $"{uri.Scheme}://{uri.Host}/if/user/#/settings";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task ToggleShelf()
|
private async Task ToggleShelf()
|
||||||
{
|
{
|
||||||
IsOpen = !IsOpen;
|
IsOpen = !IsOpen;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/* --- 1. The Flyout Side Panel --- */
|
/* --- 1. The Flyout Side Panel --- */
|
||||||
.nav-shelf-panel {
|
.nav-shelf-panel {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: var(--header-height);
|
top: var(--header-height); /* Drops clean below your top-bar */
|
||||||
right: -300px;
|
right: -300px; /* Hidden by default */
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: calc(100vh - var(--header-height));
|
height: calc(100vh - var(--header-height));
|
||||||
background-color: var(--shelf-bg);
|
background-color: var(--shelf-bg);
|
||||||
@@ -10,8 +10,7 @@
|
|||||||
z-index: 2000;
|
z-index: 2000;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
/* MODIFIED: Reduce padding-bottom so items don't clip raw against the bottom line window frame */
|
padding: 2rem 1.5rem;
|
||||||
padding: 2rem 1.5rem 1rem 1.5rem;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
|
transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
|
||||||
box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
|
box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
|
||||||
@@ -69,7 +68,6 @@
|
|||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
border-bottom: 1px solid rgba(144, 224, 239, 0.1);
|
border-bottom: 1px solid rgba(144, 224, 239, 0.1);
|
||||||
flex-shrink: 0; /* CRITICAL: Prevents the header text from squishing up on small screens */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.shelf-header h3 {
|
.shelf-header h3 {
|
||||||
@@ -94,14 +92,6 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
/* NEW RULES: Absorb all available viewport height and isolate scrolling bounds */
|
|
||||||
flex: 1;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
/* Optional: Adds smooth mobile elastic touch responses on iOS devices */
|
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
/* Clean up spacing so bottom-most links have breathing room when fully scrolled down */
|
|
||||||
padding-bottom: 2rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Deep selection matching Blazor's active class matching system */
|
/* Deep selection matching Blazor's active class matching system */
|
||||||
|
|||||||
@@ -1,256 +0,0 @@
|
|||||||
@page "/notifications"
|
|
||||||
@using Blazored.Toast
|
|
||||||
@using Microsoft.AspNetCore.Components.QuickGrid
|
|
||||||
@rendermode RenderMode.InteractiveServer
|
|
||||||
|
|
||||||
<PageTitle>Notifications | Shop Console</PageTitle>
|
|
||||||
|
|
||||||
@if (NotificationQueryable == null && IsLoading)
|
|
||||||
{
|
|
||||||
<div class="initial-page-fullscreen-loader">
|
|
||||||
<div class="loader-content">
|
|
||||||
<span class="spinner"></span>
|
|
||||||
<p>Initializing Operational Console registers...</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
|
|
||||||
<div class="console-workspace">
|
|
||||||
|
|
||||||
<div class="page-header">
|
|
||||||
<div>
|
|
||||||
<h2>System Logs & Notifications</h2>
|
|
||||||
<p class="text-muted">Inbound and outbound communication engine event log tracking.</p>
|
|
||||||
</div>
|
|
||||||
<button class="btn-refresh" @onclick="HandleRefreshClickAsync" disabled="@IsLoading">
|
|
||||||
<svg class="refresh-icon @(IsLoading ? "spinning" : "")" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
||||||
<path d="M21.5 2v6h-6M21.34 15.57a10 10 0 1 1-.57-8.38l5.67-5.67" />
|
|
||||||
</svg>
|
|
||||||
Sync Console
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="dashboard-control-deck">
|
|
||||||
|
|
||||||
<div class="top-row-panels">
|
|
||||||
<div class="mini-table-card shadow-card">
|
|
||||||
<span class="panel-title-lbl">Operational Inventory</span>
|
|
||||||
<table class="dashboard-mini-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Metric Item</th>
|
|
||||||
<th>Telemetry Node</th>
|
|
||||||
<th style="text-align: right;">Register</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Total Inbound Volume</td>
|
|
||||||
<td class="node-dim">Core-System</td>
|
|
||||||
<td class="text-cyan text-mono">@TotalCount</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Operational Failures</td>
|
|
||||||
<td class="node-dim">Fault-Engine</td>
|
|
||||||
<td class="text-red text-mono">@ErrorCount</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Pending Dispatches</td>
|
|
||||||
<td class="node-dim">Queue-Worker</td>
|
|
||||||
<td class="text-yellow text-mono">@PendingCount</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="radial-gauge-card shadow-card">
|
|
||||||
<span class="panel-title-lbl">Health Efficiency</span>
|
|
||||||
<div class="gauge-presentation-box">
|
|
||||||
<div class="svg-gauge-container">
|
|
||||||
<svg class="gauge-ring-matrix" viewBox="0 0 36 36">
|
|
||||||
<path class="gauge-bg-track" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" />
|
|
||||||
<path class="gauge-active-fill text-purple" stroke-dasharray="@SuccessRate, 100" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" />
|
|
||||||
</svg>
|
|
||||||
<div class="gauge-center-text text-purple">@SuccessRate%</div>
|
|
||||||
</div>
|
|
||||||
<div class="svg-gauge-container">
|
|
||||||
<svg class="gauge-ring-matrix" viewBox="0 0 36 36">
|
|
||||||
<path class="gauge-bg-track" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" />
|
|
||||||
<path class="gauge-active-fill text-cyan" stroke-dasharray="@(TotalCount > 0 ? Math.Round(((double)PendingCount / TotalCount) * 100) : 0), 100" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" />
|
|
||||||
</svg>
|
|
||||||
<div class="gauge-center-text text-cyan">@((TotalCount > 0) ? Math.Round(((double)PendingCount / TotalCount) * 100) : 0)%</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="filter-panel shadow-card">
|
|
||||||
<span class="panel-title-lbl" style="margin-bottom:1.25rem; display:block;">Telemetry Filters</span>
|
|
||||||
|
|
||||||
<div class="filter-grid-form">
|
|
||||||
<div class="input-wrapper full-width">
|
|
||||||
<label>Search Text</label>
|
|
||||||
<input type="text" placeholder="Search subject, sender or recipient..." @bind="SearchFilter" @bind:event="oninput" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="input-wrapper">
|
|
||||||
<label>From Date</label>
|
|
||||||
<div class="themed-date-picker-box">
|
|
||||||
<input type="date" @bind="FromDate" @bind:after="LoadNotificationDataAsync" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="input-wrapper">
|
|
||||||
<label>To Date</label>
|
|
||||||
<div class="themed-date-picker-box">
|
|
||||||
<input type="date" @bind="ToDate" @bind:after="LoadNotificationDataAsync" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="input-wrapper">
|
|
||||||
<label>Max Records</label>
|
|
||||||
<div class="themed-dropdown-box">
|
|
||||||
<select @bind="MaxRecords">
|
|
||||||
<option value="50">50 rows</option>
|
|
||||||
<option value="100">100 rows</option>
|
|
||||||
<option value="500">500 rows</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="input-wrapper action-wrapper">
|
|
||||||
<button class="btn-apply-filters" @onclick="HandleRefreshClickAsync" disabled="@IsLoading">Apply</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="trend-spline-card shadow-card full-width-row">
|
|
||||||
<span class="panel-title-lbl">Operational Load Density Timeline</span>
|
|
||||||
<div class="vector-chart-viewport">
|
|
||||||
<svg class="area-spline-graph" viewBox="0 0 500 100" preserveAspectRatio="none">
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="purpleGlow" x1="0" y1="0" x2="0" y2="1">
|
|
||||||
<stop offset="0%" stop-color="#bd00ff" stop-opacity="0.25" />
|
|
||||||
<stop offset="100%" stop-color="#bd00ff" stop-opacity="0.0" />
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
<path class="area-fill-path" d="M 0 90 Q 50 85, 100 60 T 200 45 T 300 80 T 400 30 T 500 15 L 500 100 L 0 100 Z" fill="url(#purpleGlow)" />
|
|
||||||
<path class="line-stroke-path" d="M 0 90 Q 50 85, 100 60 T 200 45 T 300 80 T 400 30 T 500 15" fill="none" stroke="#bd00ff" stroke-width="2" />
|
|
||||||
</svg>
|
|
||||||
<div class="chart-axis-labels">
|
|
||||||
<span>04/17</span>
|
|
||||||
<span>04/24</span>
|
|
||||||
<span>05/01</span>
|
|
||||||
<span>05/08</span>
|
|
||||||
<span>05/17</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@if (NotificationQueryable == null && IsLoading)
|
|
||||||
{
|
|
||||||
<div class="grid-inline-loading-veil">
|
|
||||||
<div class="veil-content">
|
|
||||||
<div class="console-sync-loader">
|
|
||||||
<div class="inner-ring"></div>
|
|
||||||
<div class="outer-ring"></div>
|
|
||||||
</div>
|
|
||||||
<p class="sync-text">Syncing system log registers...</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<div class="grid-card-wrapper full-width-table relative-grid-container">
|
|
||||||
|
|
||||||
@if (IsLoading)
|
|
||||||
{
|
|
||||||
<div class="grid-inline-loading-veil">
|
|
||||||
<div class="veil-content">
|
|
||||||
<span class="spinner"></span>
|
|
||||||
<p>Syncing system log registers...</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
|
|
||||||
<QuickGrid Items="@NotificationQueryable" Pagination="@Pagination" RowClass="@GetRowClass">
|
|
||||||
|
|
||||||
<TemplateColumn Title="Origin" SortBy="@SortByOrigin" Sortable="true">
|
|
||||||
<div class="origin-composite">
|
|
||||||
<span class="platform-lbl">@context.Platform</span>
|
|
||||||
<span class="direction-lbl text-muted">@context.Direction</span>
|
|
||||||
</div>
|
|
||||||
</TemplateColumn>
|
|
||||||
|
|
||||||
<TemplateColumn Title="Priority" SortBy="@SortByPriority" Sortable="true">
|
|
||||||
<span class="priority-tag @context.Priority.ToString().ToLower()">
|
|
||||||
@context.Priority
|
|
||||||
</span>
|
|
||||||
</TemplateColumn>
|
|
||||||
|
|
||||||
<PropertyColumn Property="@(n => n.CreatedAt)" Title="Created At" Format="yyyy-MM-dd HH:mm" Sortable="true" />
|
|
||||||
|
|
||||||
<TemplateColumn Title="Sender" SortBy="@SortBySender" Sortable="true">
|
|
||||||
<div class="contact-composite" title="@context.SenderAddress">
|
|
||||||
<span class="contact-name">@(string.IsNullOrWhiteSpace(context.SenderName) ? "System Core" : context.SenderName)</span>
|
|
||||||
<span class="contact-email text-muted">@context.SenderAddress</span>
|
|
||||||
</div>
|
|
||||||
</TemplateColumn>
|
|
||||||
|
|
||||||
<TemplateColumn Title="Subject" SortBy="@SortBySubject" Sortable="true">
|
|
||||||
<div class="subject-cell">
|
|
||||||
<span class="subject-text" title="@context.Subject">@context.Subject</span>
|
|
||||||
@if (!string.IsNullOrWhiteSpace(context.Message))
|
|
||||||
{
|
|
||||||
<span class="message-subtext text-muted" title="@context.Message">@context.Message</span>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</TemplateColumn>
|
|
||||||
|
|
||||||
<TemplateColumn Title="Recipient" SortBy="@SortByRecipient" Sortable="true">
|
|
||||||
<div class="contact-composite" title="@context.RecipientAddress">
|
|
||||||
<span class="contact-name">@context.RecipientName</span>
|
|
||||||
<span class="contact-email text-muted">@context.RecipientAddress</span>
|
|
||||||
</div>
|
|
||||||
</TemplateColumn>
|
|
||||||
|
|
||||||
<TemplateColumn Title="Status" SortBy="@SortByStatus" Sortable="true" Align="Align.Center">
|
|
||||||
@if (context.HasError)
|
|
||||||
{
|
|
||||||
<span class="status-indicator alert-text">✕ Error</span>
|
|
||||||
}
|
|
||||||
else if (context.Processed)
|
|
||||||
{
|
|
||||||
<span class="status-indicator success-text">✓ Processed</span>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<span class="status-indicator idle-text">⚙ Pending</span>
|
|
||||||
}
|
|
||||||
</TemplateColumn>
|
|
||||||
|
|
||||||
<TemplateColumn Align="Align.Right">
|
|
||||||
@if (context.HasError)
|
|
||||||
{
|
|
||||||
<button class="grid-retry-btn" @onclick="() => HandleRetryRowAsync(context)">
|
|
||||||
Retry
|
|
||||||
</button>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
@((MarkupString)" ")
|
|
||||||
}
|
|
||||||
</TemplateColumn>
|
|
||||||
|
|
||||||
</QuickGrid>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="grid-paginator-wrapper">
|
|
||||||
<Paginator State="@Pagination" />
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<BlazoredToasts />
|
|
||||||
@@ -1,144 +0,0 @@
|
|||||||
using LiteCharms.Features.Models;
|
|
||||||
using LiteCharms.Features.Shop.Notifications;
|
|
||||||
using LiteCharms.Features.Shop.Notifications.Models;
|
|
||||||
|
|
||||||
namespace ShopAdmin.Components.Pages;
|
|
||||||
|
|
||||||
public partial class Notifications(NotificationService notificationService, IToastService ToastService)
|
|
||||||
{
|
|
||||||
protected IQueryable<Notification> NotificationQueryable
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
var query = NotificationItems.AsQueryable();
|
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(SearchFilter))
|
|
||||||
{
|
|
||||||
query = query.Where(n =>
|
|
||||||
(n.Subject != null && n.Subject.Contains(SearchFilter, StringComparison.OrdinalIgnoreCase)) ||
|
|
||||||
(n.SenderAddress != null && n.SenderAddress.Contains(SearchFilter, StringComparison.OrdinalIgnoreCase)) ||
|
|
||||||
(n.RecipientAddress != null && n.RecipientAddress.Contains(SearchFilter, StringComparison.OrdinalIgnoreCase)));
|
|
||||||
}
|
|
||||||
|
|
||||||
return query;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected List<Notification> NotificationItems { get; set; } = [];
|
|
||||||
|
|
||||||
protected PaginationState Pagination { get; set; } = new() { ItemsPerPage = 10 };
|
|
||||||
|
|
||||||
protected bool IsLoading { get; set; } = true;
|
|
||||||
|
|
||||||
protected string SearchFilter { get; set; } = string.Empty;
|
|
||||||
|
|
||||||
protected int MaxRecords { get; set; } = 100;
|
|
||||||
|
|
||||||
protected DateTime FromDate { get; set; } = DateTime.Today.AddDays(-30);
|
|
||||||
|
|
||||||
protected DateTime ToDate { get; set; } = DateTime.Today.AddDays(1);
|
|
||||||
|
|
||||||
protected string FromDateBind
|
|
||||||
{
|
|
||||||
get => FromDate.ToString("yyyy-MM-dd");
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if (DateTime.TryParse(value, out var parsedDate))
|
|
||||||
{
|
|
||||||
FromDate = parsedDate;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected string ToDateBind
|
|
||||||
{
|
|
||||||
get => ToDate.ToString("yyyy-MM-dd");
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if (DateTime.TryParse(value, out var parsedDate))
|
|
||||||
{
|
|
||||||
ToDate = parsedDate;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected int TotalCount => NotificationItems.Count;
|
|
||||||
|
|
||||||
protected int ErrorCount => NotificationItems.Count(n => n.HasError);
|
|
||||||
|
|
||||||
protected int PendingCount => NotificationItems.Count(n => !n.Processed && !n.HasError);
|
|
||||||
|
|
||||||
protected double SuccessRate => TotalCount > 0
|
|
||||||
? Math.Round(((double)(TotalCount - ErrorCount) / TotalCount) * 100, 1)
|
|
||||||
: 100.0;
|
|
||||||
|
|
||||||
protected GridSort<Notification> SortByOrigin => GridSort<Notification>.ByAscending(n => n.Platform);
|
|
||||||
protected GridSort<Notification> SortByPriority => GridSort<Notification>.ByDescending(n => n.Priority);
|
|
||||||
protected GridSort<Notification> SortByCreatedAt => GridSort<Notification>.ByDescending(n => n.CreatedAt);
|
|
||||||
protected GridSort<Notification> SortBySender => GridSort<Notification>.ByAscending(n => n.SenderAddress);
|
|
||||||
protected GridSort<Notification> SortBySubject => GridSort<Notification>.ByAscending(n => n.Subject);
|
|
||||||
protected GridSort<Notification> SortByRecipient => GridSort<Notification>.ByAscending(n => n.RecipientAddress);
|
|
||||||
protected GridSort<Notification> SortByStatus => GridSort<Notification>.ByAscending(n => n.HasError);
|
|
||||||
|
|
||||||
protected override async Task OnInitializedAsync() => await LoadNotificationDataAsync();
|
|
||||||
|
|
||||||
protected async Task HandleRefreshClickAsync()
|
|
||||||
{
|
|
||||||
await LoadNotificationDataAsync();
|
|
||||||
|
|
||||||
ToastService.ShowInfo("Console metrics and telemetry logs refreshed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task LoadNotificationDataAsync()
|
|
||||||
{
|
|
||||||
IsLoading = true;
|
|
||||||
|
|
||||||
var dateRange = new DateRange()
|
|
||||||
{
|
|
||||||
From = DateOnly.FromDateTime(FromDate),
|
|
||||||
To = DateOnly.FromDateTime(ToDate),
|
|
||||||
MaxRecords = MaxRecords
|
|
||||||
};
|
|
||||||
|
|
||||||
var result = await notificationService.GetNotificationsAsync(dateRange);
|
|
||||||
|
|
||||||
if (result.IsSuccess) NotificationItems = [.. result.Value];
|
|
||||||
|
|
||||||
if (result.IsFailed)
|
|
||||||
{
|
|
||||||
var errorMsg = result.Errors.FirstOrDefault()?.Message ?? "Unable to load telemetry log data.";
|
|
||||||
|
|
||||||
ToastService.ShowError(errorMsg);
|
|
||||||
|
|
||||||
NotificationItems = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
IsLoading = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected string GetRowClass(Notification item)
|
|
||||||
{
|
|
||||||
var errorStatus = item.HasError ? "row-has-error" : "row-success";
|
|
||||||
var priorityStatus = $"row-priority-{item.Priority.ToString().ToLower()}";
|
|
||||||
|
|
||||||
return $"{errorStatus} {priorityStatus}";
|
|
||||||
}
|
|
||||||
|
|
||||||
protected async Task HandleRetryRowAsync(Notification item)
|
|
||||||
{
|
|
||||||
var updateRequest = new UpdateNotification
|
|
||||||
{
|
|
||||||
NotificationId = item.Id,
|
|
||||||
Processed = false,
|
|
||||||
HasError = false,
|
|
||||||
Errors = null
|
|
||||||
};
|
|
||||||
|
|
||||||
var result = await notificationService.UpdateNotificationAsync(updateRequest);
|
|
||||||
|
|
||||||
await LoadNotificationDataAsync();
|
|
||||||
|
|
||||||
if (result.IsSuccess) ToastService.ShowSuccess($"{item.Subject}, has been marked for reprocessing.");
|
|
||||||
if (result.IsFailed) ToastService.ShowError("Failed to update notification state execution.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,688 +0,0 @@
|
|||||||
/* ==========================================================================
|
|
||||||
1. WORKSPACE LAYOUT & LAYOUT ENGINE BOUNDS
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.console-workspace {
|
|
||||||
max-width: 1240px !important;
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 2rem 1.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dashboard-control-deck {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
gap: 1.5rem;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 1024px) {
|
|
||||||
.dashboard-control-deck {
|
|
||||||
/* Splitting into explicit proportional grid columns */
|
|
||||||
grid-template-columns: 1.6fr 1fr;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Force the timeline block to span both columns underneath them */
|
|
||||||
.full-width-row {
|
|
||||||
grid-column: span 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.charts-and-gauges-block {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-row-panels {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
gap: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Shared structural foundation for dashboard panels */
|
|
||||||
.mini-table-card,
|
|
||||||
.radial-gauge-card,
|
|
||||||
.trend-spline-card,
|
|
||||||
.filter-panel {
|
|
||||||
padding: 1.25rem;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ==========================================================================
|
|
||||||
2. TELEMETRY FILTERS PANEL & INPUT FORM STRUCTURES
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.filter-panel {
|
|
||||||
height: auto;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
/* Fixed selector to accurately target nested wrapper structure input elements */
|
|
||||||
input[type="text"],
|
|
||||||
.input-wrapper input {
|
|
||||||
width: 100%;
|
|
||||||
height: 38px;
|
|
||||||
padding: 10px 12px !important;
|
|
||||||
background: rgba(0, 0, 0, 0.4) !important;
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.05) !important;
|
|
||||||
color: #fff !important;
|
|
||||||
border-radius: 6px !important;
|
|
||||||
font-size: 0.85rem !important;
|
|
||||||
outline: none;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:focus,
|
|
||||||
.input-wrapper input:focus {
|
|
||||||
border-color: #ff6b35 !important;
|
|
||||||
box-shadow: 0 0 10px rgba(255, 107, 53, 0.25);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-grid-form {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
gap: 1rem;
|
|
||||||
align-content: start; /* Prevents vertical item stretching */
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-apply-filters {
|
|
||||||
background: #ff6b35;
|
|
||||||
border: none;
|
|
||||||
color: #fff;
|
|
||||||
width: 100%; /* Stretches nicely on small screens, or adjust to max-content if preferred */
|
|
||||||
height: 38px;
|
|
||||||
border-radius: 6px;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: background 0.2s ease;
|
|
||||||
|
|
||||||
&:hover:not(:disabled) {
|
|
||||||
background: #ff8552;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.themed-dropdown-box,
|
|
||||||
.themed-date-picker-box {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
select, input[type="date"] {
|
|
||||||
width: 100%;
|
|
||||||
height: 38px;
|
|
||||||
padding: 9px 12px !important;
|
|
||||||
background: rgba(28, 32, 43, 0.85) !important;
|
|
||||||
border: 1px solid rgba(255, 107, 53, 0.15) !important;
|
|
||||||
color: #e2e8f0 !important;
|
|
||||||
border-radius: 6px !important;
|
|
||||||
font-size: 0.85rem !important;
|
|
||||||
outline: none;
|
|
||||||
appearance: none;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
box-sizing: border-box;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: all 0.2s ease;
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
border-color: #ff6b35 !important;
|
|
||||||
box-shadow: 0 0 10px rgba(255, 107, 53, 0.25);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.themed-date-picker-box input[type="date"]::-webkit-calendar-picker-indicator {
|
|
||||||
filter: invert(53%) sepia(86%) saturate(1637%) hue-rotate(345deg) brightness(101%) contrast(101%);
|
|
||||||
cursor: pointer;
|
|
||||||
opacity: 0.85;
|
|
||||||
}
|
|
||||||
|
|
||||||
.themed-dropdown-box {
|
|
||||||
select option {
|
|
||||||
background-color: #141821 !important;
|
|
||||||
color: #fff !important;
|
|
||||||
padding: 8px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: "▼";
|
|
||||||
font-size: 0.65rem;
|
|
||||||
color: #ff6b35;
|
|
||||||
position: absolute;
|
|
||||||
right: 14px;
|
|
||||||
top: 50%;
|
|
||||||
transform: translateY(-50%);
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.action-wrapper {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-apply-filters {
|
|
||||||
background: #ff6b35;
|
|
||||||
border: none;
|
|
||||||
color: #fff;
|
|
||||||
width: 100%;
|
|
||||||
height: 38px;
|
|
||||||
border-radius: 6px;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: background 0.2s ease;
|
|
||||||
|
|
||||||
&:hover:not(:disabled) {
|
|
||||||
background: #ff8552;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ==========================================================================
|
|
||||||
3. INTERNAL MICRO-TABLE COMPONENTS (OPERATIONAL INVENTORY)
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.dashboard-mini-table {
|
|
||||||
width: 100%;
|
|
||||||
margin-top: 0.75rem;
|
|
||||||
border-collapse: collapse;
|
|
||||||
|
|
||||||
th {
|
|
||||||
text-align: left;
|
|
||||||
font-size: 0.7rem;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: rgba(255, 255, 255, 0.3);
|
|
||||||
padding: 6px 0;
|
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
padding: 10px 0;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ==========================================================================
|
|
||||||
4. DATA VISUALIZATION COMPONENTS (GAUGES & TIMELINES)
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.gauge-presentation-box {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
align-items: center;
|
|
||||||
flex: 1;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.svg-gauge-container {
|
|
||||||
position: relative;
|
|
||||||
width: 75px;
|
|
||||||
height: 75px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gauge-ring-matrix {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gauge-bg-track {
|
|
||||||
fill: none;
|
|
||||||
stroke: rgba(255, 255, 255, 0.04);
|
|
||||||
stroke-width: 2.8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gauge-active-fill {
|
|
||||||
fill: none;
|
|
||||||
stroke-width: 3.2;
|
|
||||||
stroke-linecap: round;
|
|
||||||
transition: stroke-dasharray 0.4s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gauge-center-text {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
font-family: monospace;
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vector-chart-viewport {
|
|
||||||
width: 100%;
|
|
||||||
margin-top: 1rem;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.area-spline-graph {
|
|
||||||
width: 100%;
|
|
||||||
height: 85px;
|
|
||||||
display: block;
|
|
||||||
overflow: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chart-axis-labels {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
font-size: 0.68rem;
|
|
||||||
font-family: monospace;
|
|
||||||
color: rgba(255, 255, 255, 0.25);
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ==========================================================================
|
|
||||||
5. BLAZOR QUICKGRID COMPLEX ENHANCEMENTS (SCOPED FIX)
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.full-width-table {
|
|
||||||
width: 100% !important;
|
|
||||||
overflow-x: auto;
|
|
||||||
margin-top: 1rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
background: rgba(13, 16, 23, 0.65);
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.03);
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- QuickGrid Empty Body Row Elimination (Header Safe) --- */
|
|
||||||
.full-width-table ::deep tbody tr:has(td:empty) {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Forces the table structure to hug only active data rows */
|
|
||||||
.full-width-table ::deep tbody {
|
|
||||||
display: table-row-group !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Properly combining parent scope with deep combinator to force child table styles */
|
|
||||||
.full-width-table ::deep table {
|
|
||||||
width: 100% !important;
|
|
||||||
table-layout: fixed !important; /* Forces layout engine to honor assigned column percentages */
|
|
||||||
border-collapse: collapse !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- High Contrast Header Component Overrides --- */
|
|
||||||
.full-width-table ::deep th {
|
|
||||||
background: #141821 !important; /* Solid contrast block background */
|
|
||||||
padding: 14px 10px !important;
|
|
||||||
border-bottom: 2px solid #ff6b35 !important; /* Solid brand accent line */
|
|
||||||
vertical-align: middle !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Target QuickGrid's native internal header sorting buttons & plain titles */
|
|
||||||
.full-width-table ::deep th button,
|
|
||||||
.full-width-table ::deep th .col-title {
|
|
||||||
color: #ff6b35 !important; /* Vibrant orange contrast text */
|
|
||||||
font-weight: 700 !important;
|
|
||||||
font-size: 0.75rem !important; /* Slightly optimized down for layout safety */
|
|
||||||
text-transform: uppercase !important;
|
|
||||||
letter-spacing: 1px !important;
|
|
||||||
background: transparent !important;
|
|
||||||
border: none !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
text-align: left !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.full-width-table ::deep th button:hover {
|
|
||||||
color: #ffffff !important; /* Highlight on hover interaction */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- Explicit Column Width Definitions (Optimized for Date Visibility) --- */
|
|
||||||
/* Origin */
|
|
||||||
.full-width-table ::deep th:nth-child(1), .full-width-table ::deep td:nth-child(1) {
|
|
||||||
width: 9%;
|
|
||||||
min-width: 85px;
|
|
||||||
}
|
|
||||||
/* Priority */
|
|
||||||
.full-width-table ::deep th:nth-child(2), .full-width-table ::deep td:nth-child(2) {
|
|
||||||
width: 8%;
|
|
||||||
min-width: 75px;
|
|
||||||
}
|
|
||||||
/* Created At (Given extra breathing space) */
|
|
||||||
.full-width-table ::deep th:nth-child(3), .full-width-table ::deep td:nth-child(3) {
|
|
||||||
width: 16%;
|
|
||||||
min-width: 145px;
|
|
||||||
}
|
|
||||||
/* Sender */
|
|
||||||
.full-width-table ::deep th:nth-child(4), .full-width-table ::deep td:nth-child(4) {
|
|
||||||
width: 20%;
|
|
||||||
min-width: 190px;
|
|
||||||
}
|
|
||||||
/* Subject / Description */
|
|
||||||
.full-width-table ::deep th:nth-child(5), .full-width-table ::deep td:nth-child(5) {
|
|
||||||
width: 22%;
|
|
||||||
min-width: 200px;
|
|
||||||
}
|
|
||||||
/* Recipient */
|
|
||||||
.full-width-table ::deep th:nth-child(6), .full-width-table ::deep td:nth-child(6) {
|
|
||||||
width: 15%;
|
|
||||||
min-width: 150px;
|
|
||||||
}
|
|
||||||
/* Status */
|
|
||||||
.full-width-table ::deep th:nth-child(7), .full-width-table ::deep td:nth-child(7) {
|
|
||||||
width: 10%;
|
|
||||||
min-width: 90px;
|
|
||||||
}
|
|
||||||
/* Action */
|
|
||||||
.full-width-table ::deep th:nth-child(8), .full-width-table ::deep td:nth-child(8) {
|
|
||||||
width: 5%;
|
|
||||||
min-width: 65px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- Body Cells Engine & Text Preservation --- */
|
|
||||||
.full-width-table ::deep td {
|
|
||||||
padding: 12px 10px !important; /* Tighter padding values to maximize text viewport bounds */
|
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
|
|
||||||
vertical-align: middle !important;
|
|
||||||
font-size: 0.78rem !important; /* Dropped size down slightly from 0.85rem to fix clipping */
|
|
||||||
overflow: hidden !important;
|
|
||||||
text-overflow: ellipsis !important;
|
|
||||||
white-space: nowrap !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.full-width-table ::deep tr:hover td {
|
|
||||||
background: rgba(255, 255, 255, 0.02) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ==========================================================================
|
|
||||||
6. ATOMIC INTERACTION & GLOBAL STATUS DESIGN
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.page-header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.shadow-card {
|
|
||||||
background: rgba(13, 16, 23, 0.65) !important;
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.03) !important;
|
|
||||||
box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
|
|
||||||
backdrop-filter: blur(12px);
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-refresh {
|
|
||||||
background: rgba(255, 107, 53, 0.06);
|
|
||||||
border: 1px solid rgba(255, 107, 53, 0.25);
|
|
||||||
color: #ff6b35;
|
|
||||||
padding: 10px 18px;
|
|
||||||
border-radius: 6px;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
font-weight: 600;
|
|
||||||
cursor: pointer;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
|
|
||||||
&:hover:not(:disabled) {
|
|
||||||
background: rgba(255, 107, 53, 0.12);
|
|
||||||
border-color: #ff6b35;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:disabled {
|
|
||||||
opacity: 0.4;
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.origin-composite,
|
|
||||||
.contact-composite,
|
|
||||||
.subject-cell {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
line-height: 1.3;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Typography Classes */
|
|
||||||
.panel-title-lbl {
|
|
||||||
font-size: 0.72rem;
|
|
||||||
color: rgba(255, 255, 255, 0.4);
|
|
||||||
font-weight: 700;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.75px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.platform-lbl {
|
|
||||||
font-weight: 600;
|
|
||||||
color: #fff;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.direction-lbl {
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.node-dim {
|
|
||||||
color: rgba(255, 255, 255, 0.4);
|
|
||||||
font-size: 0.78rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-mono {
|
|
||||||
font-family: monospace;
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: 0.95rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-name {
|
|
||||||
color: #fff;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
font-weight: 500;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-email, .message-subtext {
|
|
||||||
font-size: 0.75rem;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subject-text {
|
|
||||||
color: rgba(255, 255, 255, 0.9);
|
|
||||||
font-weight: 500;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Status Color Tokens */
|
|
||||||
.text-purple {
|
|
||||||
color: #bd00ff;
|
|
||||||
stroke: #bd00ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-cyan {
|
|
||||||
color: #00b4d8;
|
|
||||||
stroke: #00b4d8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-red {
|
|
||||||
color: #e63946;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-yellow {
|
|
||||||
color: #ffb703;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-emerald {
|
|
||||||
color: #2a9d8f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.status-indicator {
|
|
||||||
font-size: 0.85rem;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.success-text {
|
|
||||||
color: #2a9d8f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.alert-text {
|
|
||||||
color: #e63946;
|
|
||||||
}
|
|
||||||
|
|
||||||
.idle-text {
|
|
||||||
color: #ffb703;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Priority Badge Elements */
|
|
||||||
.priority-tag {
|
|
||||||
font-size: 0.68rem;
|
|
||||||
font-weight: 700;
|
|
||||||
font-family: monospace;
|
|
||||||
padding: 2px 6px;
|
|
||||||
border-radius: 4px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
width: max-content;
|
|
||||||
|
|
||||||
&.critical {
|
|
||||||
background: rgba(230, 57, 70, 0.12);
|
|
||||||
color: #e63946;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.high {
|
|
||||||
background: rgba(255, 183, 3, 0.12);
|
|
||||||
color: #ffb703;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.medium {
|
|
||||||
background: rgba(0, 180, 216, 0.12);
|
|
||||||
color: #00b4d8;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.low {
|
|
||||||
background: rgba(255, 255, 255, 0.04);
|
|
||||||
color: rgba(255, 255, 255, 0.4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid-retry-btn {
|
|
||||||
background: transparent;
|
|
||||||
border: 1px solid rgba(230, 57, 70, 0.4);
|
|
||||||
color: #e63946;
|
|
||||||
padding: 3px 10px;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-weight: 600;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Paginator & Loading Elements */
|
|
||||||
.grid-paginator-wrapper {
|
|
||||||
margin-top: 1.25rem;
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
::deep .blazor-quickgrid-paginator button {
|
|
||||||
background: rgba(255, 255, 255, 0.02) !important;
|
|
||||||
border: 1px solid rgba(255, 107, 53, 0.1) !important;
|
|
||||||
color: #fff !important;
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 4px 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.console-loader {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 6rem 2rem;
|
|
||||||
color: rgba(255, 255, 255, 0.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.spinner {
|
|
||||||
width: 26px;
|
|
||||||
height: 26px;
|
|
||||||
border: 2px solid rgba(255, 107, 53, 0.1);
|
|
||||||
border-top-color: #ff6b35;
|
|
||||||
border-radius: 50%;
|
|
||||||
animation: spin 0.8s linear infinite;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.refresh-icon.spinning {
|
|
||||||
animation: spin 1s linear infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Absolute Fullscreen initial overlay alignment rules for a clean loading UX */
|
|
||||||
.initial-page-fullscreen-loader {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
background: #0b1116; /* Fallback baseline dark match */
|
|
||||||
backdrop-filter: blur(20px);
|
|
||||||
z-index: 9999;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
.loader-content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: 1rem;
|
|
||||||
color: rgba(255, 255, 255, 0.6);
|
|
||||||
font-size: 0.95rem;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- Seamless Grid Sync Loading Overlay --- */
|
|
||||||
.relative-grid-container {
|
|
||||||
position: relative;
|
|
||||||
min-height: 250px; /* Prevents container collapse when data updates */
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid-inline-loading-veil {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background: rgba(11, 17, 22, 0.7); /* Translucent dark tint matching workspace canvas */
|
|
||||||
backdrop-filter: blur(4px); /* Clean frosted separation without changing structural layouts */
|
|
||||||
z-index: 10;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
border-radius: 8px;
|
|
||||||
animation: fadeInVeil 0.15s ease-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.veil-content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: 0.75rem;
|
|
||||||
color: rgba(255, 255, 255, 0.8);
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fadeInVeil {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,67 +1,37 @@
|
|||||||
@using Microsoft.AspNetCore.Components.Authorization
|
<div class="auth-state-container">
|
||||||
<div class="auth-state-container">
|
@if (!IsAuthenticated)
|
||||||
<AuthorizeView>
|
{
|
||||||
<Authorized>
|
<div class="auth-indicator unauthenticated">
|
||||||
<div class="auth-indicator authenticated">
|
<svg class="security-lock-vector" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
||||||
<div class="user-meta-stack">
|
<defs>
|
||||||
<span class="meta-row-primary">@Name</span>
|
<filter id="amber-cyber-glow" x="-30%" y="-30%" width="160%" height="160%">
|
||||||
<span class="meta-row-secondary">@Email</span>
|
<feGaussianBlur stdDeviation="3.5" result="blur" />
|
||||||
<span class="meta-row-secondary">@LoginTime</span>
|
<feComposite in="SourceGraphic" in2="blur" operator="over" />
|
||||||
</div>
|
</filter>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
<g class="lock-chassis" filter="url(#amber-cyber-glow)">
|
||||||
|
<path d="M 32,45 V 24 L 38,18 H 62 L 68,24 V 45" stroke="#ffd166" stroke-width="3.5" fill="none" stroke-linecap="square" stroke-linejoin="miter" />
|
||||||
|
|
||||||
|
<rect x="20" y="45" width="60" height="32" fill="#03090b" stroke="#ffd166" stroke-width="3.5" stroke-linejoin="miter" />
|
||||||
|
|
||||||
|
<polygon points="47,54 53,54 55,60 45,60" fill="#ffd166" />
|
||||||
|
<rect x="48.5" y="60" width="3" height="10" fill="#ffd166" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<div class="auth-indicator authenticated">
|
||||||
|
<div class="user-meta-stack">
|
||||||
|
<span class="meta-row-primary">ADMIN_OPERATOR</span>
|
||||||
|
<span class="meta-row-secondary">ID: 409-CLUSTER</span>
|
||||||
</div>
|
</div>
|
||||||
</Authorized>
|
</div>
|
||||||
<NotAuthorized>
|
}
|
||||||
<div class="auth-indicator unauthenticated">
|
|
||||||
<svg class="security-lock-vector" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<defs>
|
|
||||||
<filter id="amber-cyber-glow" x="-30%" y="-30%" width="160%" height="160%">
|
|
||||||
<feGaussianBlur stdDeviation="3.5" result="blur" />
|
|
||||||
<feComposite in="SourceGraphic" in2="blur" operator="over" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
|
|
||||||
<g class="lock-chassis" filter="url(#amber-cyber-glow)">
|
|
||||||
<path d="M 32,45 V 24 L 38,18 H 62 L 68,24 V 45" stroke="#ffd166" stroke-width="3.5" fill="none" stroke-linecap="square" stroke-linejoin="miter" />
|
|
||||||
|
|
||||||
<rect x="20" y="45" width="60" height="32" fill="#03090b" stroke="#ffd166" stroke-width="3.5" stroke-linejoin="miter" />
|
|
||||||
|
|
||||||
<polygon points="47,54 53,54 55,60 45,60" fill="#ffd166" />
|
|
||||||
<rect x="48.5" y="60" width="3" height="10" fill="#ffd166" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</NotAuthorized>
|
|
||||||
</AuthorizeView>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
[CascadingParameter]
|
[Parameter] public bool IsAuthenticated { get; set; } = false;
|
||||||
private Task<AuthenticationState>? AuthStateTask { get; set; }
|
|
||||||
|
|
||||||
private System.Security.Claims.ClaimsPrincipal? UserPrincipal;
|
|
||||||
|
|
||||||
private string? Name { get; set; }
|
|
||||||
private string? Email { get; set; }
|
|
||||||
private DateTime? LoginTime { get; set; }
|
|
||||||
|
|
||||||
protected override async Task OnInitializedAsync()
|
|
||||||
{
|
|
||||||
if (AuthStateTask != null)
|
|
||||||
{
|
|
||||||
var authState = await AuthStateTask;
|
|
||||||
|
|
||||||
UserPrincipal = authState.User;
|
|
||||||
|
|
||||||
Name = UserPrincipal?.Identity?.Name;
|
|
||||||
Email = UserPrincipal?.FindFirst(System.Security.Claims.ClaimTypes.Email)?.Value;
|
|
||||||
|
|
||||||
var authTimeClaim = UserPrincipal?.FindFirst("auth_time")?.Value;
|
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(authTimeClaim) && long.TryParse(authTimeClaim, out long unixSeconds))
|
|
||||||
{
|
|
||||||
var dateTimeOffset = DateTimeOffset.FromUnixTimeSeconds(unixSeconds);
|
|
||||||
LoginTime = dateTimeOffset.LocalDateTime;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
+1
-74
@@ -8,8 +8,6 @@ var builder = WebApplication.CreateBuilder(args);
|
|||||||
builder.Services.AddRazorComponents()
|
builder.Services.AddRazorComponents()
|
||||||
.AddInteractiveServerComponents();
|
.AddInteractiveServerComponents();
|
||||||
|
|
||||||
builder.Services.AddCascadingAuthenticationState();
|
|
||||||
|
|
||||||
builder.AddMonitoring();
|
builder.AddMonitoring();
|
||||||
|
|
||||||
builder.Services.AddControllers();
|
builder.Services.AddControllers();
|
||||||
@@ -35,56 +33,6 @@ builder.Services.AddPostgresHealtchCheck();
|
|||||||
builder.Services.AddQuartzHealtchCheck();
|
builder.Services.AddQuartzHealtchCheck();
|
||||||
builder.Services.AddHealthChecksSupport(builder.Configuration);
|
builder.Services.AddHealthChecksSupport(builder.Configuration);
|
||||||
|
|
||||||
builder.Services.AddAuthentication(options =>
|
|
||||||
{
|
|
||||||
options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
|
|
||||||
options.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
|
|
||||||
})
|
|
||||||
.AddCookie()
|
|
||||||
.AddOpenIdConnect(options =>
|
|
||||||
{
|
|
||||||
options.Authority = builder.Configuration.GetSection("IdKongisa:Authority").Value;
|
|
||||||
options.ClientId = builder.Configuration.GetSection("IdKongisa:ClientId").Value;
|
|
||||||
options.ClientSecret = builder.Configuration.GetSection("IdKongisa:ClientSecret").Value;
|
|
||||||
|
|
||||||
options.ResponseType = "code";
|
|
||||||
options.SaveTokens = true;
|
|
||||||
|
|
||||||
options.GetClaimsFromUserInfoEndpoint = true;
|
|
||||||
|
|
||||||
options.MetadataAddress = $"{options.Authority}/.well-known/openid-configuration";
|
|
||||||
|
|
||||||
options.Scope.Clear();
|
|
||||||
options.Scope.Add("openid");
|
|
||||||
options.Scope.Add("profile");
|
|
||||||
options.Scope.Add("email");
|
|
||||||
|
|
||||||
options.TokenValidationParameters = new Microsoft.IdentityModel.Tokens.TokenValidationParameters
|
|
||||||
{
|
|
||||||
NameClaimType = "name",
|
|
||||||
RoleClaimType = "groups"
|
|
||||||
};
|
|
||||||
|
|
||||||
options.Events = new OpenIdConnectEvents
|
|
||||||
{
|
|
||||||
OnRedirectToIdentityProvider = context =>
|
|
||||||
{
|
|
||||||
var fallbackUri = context.ProtocolMessage.RedirectUri;
|
|
||||||
|
|
||||||
if (fallbackUri.StartsWith("http://", StringComparison.OrdinalIgnoreCase))
|
|
||||||
context.ProtocolMessage.RedirectUri = fallbackUri.Replace("http://", "https://", StringComparison.OrdinalIgnoreCase);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
builder.Services.Configure<ForwardedHeadersOptions>(options =>
|
|
||||||
{
|
|
||||||
options.ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto;
|
|
||||||
options.KnownProxies.Clear();
|
|
||||||
});
|
|
||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
||||||
var schedulerFactory = app.Services.GetRequiredService<ISchedulerFactory>();
|
var schedulerFactory = app.Services.GetRequiredService<ISchedulerFactory>();
|
||||||
@@ -93,8 +41,6 @@ var scheduler = await schedulerFactory.GetScheduler(ShopSchedulerName);
|
|||||||
if (!scheduler!.IsStarted)
|
if (!scheduler!.IsStarted)
|
||||||
await scheduler.Start();
|
await scheduler.Start();
|
||||||
|
|
||||||
app.UseForwardedHeaders();
|
|
||||||
|
|
||||||
if (!app.Environment.IsDevelopment())
|
if (!app.Environment.IsDevelopment())
|
||||||
{
|
{
|
||||||
app.UseExceptionHandler("/Error", createScopeForErrors: true);
|
app.UseExceptionHandler("/Error", createScopeForErrors: true);
|
||||||
@@ -107,30 +53,11 @@ app.UseHealthChecks("/health", new HealthCheckOptions
|
|||||||
});
|
});
|
||||||
|
|
||||||
app.UseStatusCodePagesWithReExecute("/not-found", createScopeForStatusCodePages: true);
|
app.UseStatusCodePagesWithReExecute("/not-found", createScopeForStatusCodePages: true);
|
||||||
|
|
||||||
app.UseHttpsRedirection();
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
app.UseAntiforgery();
|
app.UseAntiforgery();
|
||||||
|
|
||||||
app.UseAuthentication();
|
|
||||||
app.UseAuthorization();
|
|
||||||
|
|
||||||
app.MapStaticAssets();
|
app.MapStaticAssets();
|
||||||
|
|
||||||
app.MapGet("/auth/login", (string redirectUri = "/") =>
|
|
||||||
Results.Challenge(new AuthenticationProperties { RedirectUri = redirectUri }, [OpenIdConnectDefaults.AuthenticationScheme]));
|
|
||||||
|
|
||||||
app.MapGet("/auth/logout", async (HttpContext context) =>
|
|
||||||
{
|
|
||||||
await context.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
|
||||||
|
|
||||||
string currentBaseUrl = $"https://{context.Request.Host}{context.Request.PathBase}/";
|
|
||||||
|
|
||||||
await context.SignOutAsync(OpenIdConnectDefaults.AuthenticationScheme, new AuthenticationProperties
|
|
||||||
{
|
|
||||||
RedirectUri = currentBaseUrl
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
app.MapRazorComponents<App>()
|
app.MapRazorComponents<App>()
|
||||||
.AddInteractiveServerRenderMode();
|
.AddInteractiveServerRenderMode();
|
||||||
|
|
||||||
|
|||||||
@@ -16,20 +16,10 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="LiteCharms.Features" Version="1.34.0" />
|
<PackageReference Include="LiteCharms.Features" Version="1.32.0" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid" Version="10.0.8" />
|
|
||||||
<PackageReference Include="Polly" Version="8.6.6" />
|
<PackageReference Include="Polly" Version="8.6.6" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- Authentication-->
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.8" />
|
|
||||||
|
|
||||||
<!-- Global Usings -->
|
|
||||||
<Using Include="Microsoft.AspNetCore.Authentication.Cookies" />
|
|
||||||
<Using Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<!-- UI -->
|
<!-- UI -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ANM.Blazored.Toast" Version="0.1.1" />
|
<PackageReference Include="ANM.Blazored.Toast" Version="0.1.1" />
|
||||||
@@ -58,9 +48,6 @@
|
|||||||
|
|
||||||
<!-- Shared Global Usings -->
|
<!-- Shared Global Usings -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Using Include="Microsoft.AspNetCore.Components.QuickGrid" />
|
|
||||||
<Using Include="Microsoft.AspNetCore.HttpOverrides" />
|
|
||||||
<Using Include="Microsoft.AspNetCore.Authentication" />
|
|
||||||
<Using Include="Blazored.Toast" />
|
<Using Include="Blazored.Toast" />
|
||||||
<Using Include="Quartz" />
|
<Using Include="Quartz" />
|
||||||
<Using Include="Mediator" />
|
<Using Include="Mediator" />
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
{
|
{
|
||||||
"IdKongisa": {
|
|
||||||
"Authority": "https://id.khongisa.co.za/application/o/litecharms-shopadmin"
|
|
||||||
},
|
|
||||||
"Email": {
|
"Email": {
|
||||||
"Credentials": {
|
"Credentials": {
|
||||||
"Username": "shop@litecharms.co.za"
|
"Username": "shop@litecharms.co.za"
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ html, body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 0 1.5rem; /* Balanced horizontal spacing for both sides */
|
padding: 0 4rem 0 1rem;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
border-bottom: 1px solid rgba(144, 224, 239, 0.15);
|
border-bottom: 1px solid rgba(144, 224, 239, 0.15);
|
||||||
}
|
}
|
||||||
@@ -119,7 +119,7 @@ main {
|
|||||||
/* --- Responsive Logic --- */
|
/* --- Responsive Logic --- */
|
||||||
@media (max-width: 1200px) {
|
@media (max-width: 1200px) {
|
||||||
.top-bar {
|
.top-bar {
|
||||||
padding: 0 1rem;
|
padding: 0 2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ data:
|
|||||||
ASPNETCORE_URLS: "http://0.0.0.0:8080"
|
ASPNETCORE_URLS: "http://0.0.0.0:8080"
|
||||||
Monitoring__Address: "http://aspire-dashboard-service.aspire.svc.cluster.local:18889"
|
Monitoring__Address: "http://aspire-dashboard-service.aspire.svc.cluster.local:18889"
|
||||||
Monitoring__ServiceName: "LiteCharms.ShopAdmin.Uat"
|
Monitoring__ServiceName: "LiteCharms.ShopAdmin.Uat"
|
||||||
IdKongisa__Authority: "https://id.khongisa.co.za/application/o/litecharms-shopadmin"
|
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Secret
|
kind: Secret
|
||||||
@@ -26,8 +25,6 @@ data:
|
|||||||
connection-string: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNob3AtZGV2O1VzZXJuYW1lPXNob3AtZGV2LXVzZXI7UGFzc3dvcmQ9a1ZWbW9XS0ozeHpnUVg7UGVyc2lzdCBTZWN1cml0eSBJbmZvPVRydWU=
|
connection-string: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNob3AtZGV2O1VzZXJuYW1lPXNob3AtZGV2LXVzZXI7UGFzc3dvcmQ9a1ZWbW9XS0ozeHpnUVg7UGVyc2lzdCBTZWN1cml0eSBJbmZvPVRydWU=
|
||||||
connection-string-quartz: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNjaGVkdWxlci1kZXY7VXNlcm5hbWU9c2NoZWR1bGVyLWRldi11c2VyO1Bhc3N3b3JkPWtWVm1vV0tKM3h6Z1FYO1BlcnNpc3QgU2VjdXJpdHkgSW5mbz1UcnVl
|
connection-string-quartz: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNjaGVkdWxlci1kZXY7VXNlcm5hbWU9c2NoZWR1bGVyLWRldi11c2VyO1Bhc3N3b3JkPWtWVm1vV0tKM3h6Z1FYO1BlcnNpc3QgU2VjdXJpdHkgSW5mbz1UcnVl
|
||||||
aspire-apikey: bWMzRzYzSzJqNVpPRXNpMEFqTW9qTFRYbTFLRVpGY3R6SUlqU3dEaVRHdXQ4cUdTa1B1V3d4R1AxUmJzY0pVbw==
|
aspire-apikey: bWMzRzYzSzJqNVpPRXNpMEFqTW9qTFRYbTFLRVpGY3R6SUlqU3dEaVRHdXQ4cUdTa1B1V3d4R1AxUmJzY0pVbw==
|
||||||
auth-clientid: NUxldE5hSERsUlhOWXo1N3FkMVV1RWN4R01uUDNmT3FXc0RHcWdjUg==
|
|
||||||
auth-clientsecret: a3ZxN3k1anc0M0g4WDRjQW91eGRqRDhNNXdxVUhUQ2I4UjNSVjNVWjI4TUZjTk51NWxhM3g3V1ZZRzQ2QnJFMjVPMnhXRmhoeEk0VXNSaFlMTHRqSGRhWWVrUTBmdHpIQ3ZNczV5TXdRdERpcDBkM3QzTkNDa0RtN1JXeW1XSTg=
|
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
@@ -105,16 +102,6 @@ spec:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: shopadmin-secrets
|
name: shopadmin-secrets
|
||||||
key: aspire-apikey
|
key: aspire-apikey
|
||||||
- name: IdKongisa__ClientId
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: shopadmin-secrets
|
|
||||||
key: auth-clientid
|
|
||||||
- name: IdKongisa__ClientSecret
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: shopadmin-secrets
|
|
||||||
key: auth-clientsecret
|
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /app/wwwroot/content
|
mountPath: /app/wwwroot/content
|
||||||
|
|||||||
Reference in New Issue
Block a user