- Moves authentication back to a /Authenticate page route - Flatten the namespaces of page components - Implement top-level layouts as windows - Move handling of redirecting to /Authenticate with component inside of an AuthenticatedLayout - Use individiual injected services instead of SDK.Client - Wipe out tokens on logout - Process logout even if server can't be reached
11 lines
No EOL
270 B
Text
11 lines
No EOL
270 B
Text
@namespace LANCommander.Launcher.UI.Components
|
|
@using ListItem = LANCommander.Launcher.Models.ListItem
|
|
|
|
@if (CurrentItem?.DataItem is Data.Models.Game)
|
|
{
|
|
<GameDetails @key="CurrentItem.Key" />
|
|
}
|
|
|
|
@code {
|
|
[CascadingParameter] ListItem? CurrentItem { get; set; }
|
|
} |