85 lines
4.2 KiB
Plaintext
85 lines
4.2 KiB
Plaintext
@inject NavigationManager NavManager
|
|
|
|
<button class="shelf-grip @(IsOpen ? "grip-open" : "")"
|
|
@onclick="ToggleShelf"
|
|
aria-label="Toggle Navigation Shelf">
|
|
<div class="grip-icon">
|
|
@if (IsOpen)
|
|
{
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<polyline points="9 18 15 12 9 6"></polyline>
|
|
</svg>
|
|
}
|
|
else
|
|
{
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<line x1="3" y1="12" x2="21" y2="12"></line>
|
|
<line x1="3" y1="6" x2="21" y2="6"></line>
|
|
<line x1="3" y1="18" x2="21" y2="18"></line>
|
|
</svg>
|
|
}
|
|
</div>
|
|
</button>
|
|
|
|
<div class="shelf-backdrop @(IsOpen ? "backdrop-active" : "")" @onclick="CloseShelf"></div>
|
|
|
|
<aside class="nav-shelf-panel @(IsOpen ? "shelf-open" : "")">
|
|
<div class="shelf-header">
|
|
<h3>Shop Management</h3>
|
|
<span class="environment-badge">UAT</span>
|
|
</div>
|
|
|
|
<nav class="shelf-navigation">
|
|
<NavLink class="shelf-link" href="" Match="NavLinkMatch.All" @onclick="CloseShelf">
|
|
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="9"></rect><rect x="14" y="3" width="7" height="5"></rect><rect x="14" y="12" width="7" height="9"></rect><rect x="3" y="16" width="7" height="5"></rect></svg>
|
|
<span>Dashboard</span>
|
|
</NavLink>
|
|
|
|
<NavLink class="shelf-link" href="customers" @onclick="CloseShelf">
|
|
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
|
|
<span>Customers</span>
|
|
</NavLink>
|
|
|
|
<NavLink class="shelf-link" href="orders" @onclick="CloseShelf">
|
|
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>
|
|
<span>Orders</span>
|
|
</NavLink>
|
|
|
|
<NavLink class="shelf-link" href="leads" @onclick="CloseShelf">
|
|
<svg class="link-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>
|
|
<span>Leads</span>
|
|
</NavLink>
|
|
|
|
<NavLink class="shelf-link" href="products" @onclick="CloseShelf">
|
|
<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.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7.01" y2="7"></line></svg>
|
|
<span>Products</span>
|
|
</NavLink>
|
|
|
|
<div class="shelf-divider"></div>
|
|
|
|
<NavLink class="shelf-link" href="notifications" @onclick="CloseShelf">
|
|
<svg class="link-icon icon-warn" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
|
|
<span>Notifications</span>
|
|
</NavLink>
|
|
</nav>
|
|
</aside>
|
|
|
|
@code {
|
|
[Parameter] public bool IsOpen { get; set; } = false;
|
|
[Parameter] public EventCallback<bool> IsOpenChanged { get; set; }
|
|
|
|
private async Task ToggleShelf()
|
|
{
|
|
IsOpen = !IsOpen;
|
|
await IsOpenChanged.InvokeAsync(IsOpen);
|
|
}
|
|
|
|
private async Task CloseShelf()
|
|
{
|
|
if (IsOpen)
|
|
{
|
|
IsOpen = false;
|
|
await IsOpenChanged.InvokeAsync(IsOpen);
|
|
}
|
|
}
|
|
} |