58 lines
2.5 KiB
Plaintext
58 lines
2.5 KiB
Plaintext
@using Moonlight.App.Services.Sessions
|
|
@using Moonlight.App.Database.Entities
|
|
@using Moonlight.App.Services
|
|
@using Moonlight.App.Services.Files
|
|
|
|
@inject IdentityService IdentityService
|
|
@inject ResourceService ResourceService
|
|
@inject IJSRuntime JsRuntime
|
|
|
|
<div id="kt_app_sidebar" class="app-sidebar flex-column" data-kt-drawer="true" data-kt-drawer-name="app-sidebar" data-kt-drawer-activate="{default: true, lg: false}" data-kt-drawer-overlay="true" data-kt-drawer-width="225px" data-kt-drawer-direction="start" data-kt-drawer-toggle="#kt_app_sidebar_mobile_toggle">
|
|
<div class="app-sidebar-logo px-6" id="kt_app_sidebar_logo">
|
|
<a href="@(User != null ? "/" : "/login")">
|
|
@if (sidebar == "dark-sidebar")
|
|
{
|
|
<img alt="Logo" src="@(ResourceService.Image("logolong.png"))" class="h-45px app-sidebar-logo-default"/>
|
|
}
|
|
else
|
|
{
|
|
if (sidebar == "light-sidebar")
|
|
{
|
|
<img alt="Logo" src="@(ResourceService.Image("logo.svg"))" class="theme-light-show h-20px app-sidebar-logo-default"/>
|
|
<img alt="Logo" src="@(ResourceService.Image("logo.svg"))" class="theme-dark-show h-20px app-sidebar-logo-default"/>
|
|
}
|
|
}
|
|
<img alt="Logo" src="@(ResourceService.Image("logo.svg"))" class="h-20px app-sidebar-logo-minimize"/>
|
|
</a>
|
|
|
|
<div id="kt_app_sidebar_toggle" class="app-sidebar-toggle btn btn-icon btn-shadow btn-sm btn-color-muted btn-active-color-primary body-bg h-30px w-30px position-absolute top-50 start-100 translate-middle rotate" data-kt-toggle="true" data-kt-toggle-state="active" data-kt-toggle-target="body" data-kt-toggle-name="app-sidebar-minimize">
|
|
<i class="bx bx-chevrons-left bx-md"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<SidebarMenu></SidebarMenu>
|
|
|
|
<div class="app-sidebar-footer flex-column-auto pt-2 pb-6 px-6" id="kt_app_sidebar_footer">
|
|
<a href="/support" class="btn btn-flex flex-center btn-custom btn-primary overflow-hidden text-nowrap px-0 h-40px w-100 btn-label">
|
|
<i class="bx bx-sm bx-support"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
@code
|
|
{
|
|
private string sidebar;
|
|
|
|
private User? User;
|
|
|
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
|
{
|
|
if (firstRender)
|
|
{
|
|
User = await IdentityService.Get();
|
|
sidebar = await JsRuntime.InvokeAsync<string>("document.body.getAttribute", "data-kt-app-layout");
|
|
StateHasChanged();
|
|
}
|
|
}
|
|
}
|