adminsystem/adminSystem.UI/Components/Account/Shared/AccountLayout.razor

29 lines
758 B
Plaintext
Raw Normal View History

2024-05-28 15:52:02 +08:00
@inherits LayoutComponentBase
@layout adminSystem.UI.Components.Layout.MainLayout
@inject NavigationManager NavigationManager
@if (HttpContext is null)
{
<p>Loading...</p>
}
else
{
@Body
}
@code {
[CascadingParameter]
private HttpContext? HttpContext { get; set; }
protected override void OnParametersSet()
{
if (HttpContext is null)
{
// If this code runs, we're currently rendering in interactive mode, so there is no HttpContext.
// The identity pages need to set cookies, so they require an HttpContext. To achieve this we
// must transition back from interactive mode to a server-rendered page.
NavigationManager.Refresh(forceReload: true);
}
}
}