@page "/"
@using MatrixRoomUtils.Web.Shared.IndexComponents
@using MatrixRoomUtils.Core
@inject NavigationManager NavigationManager
@inject ILocalStorageService LocalStorage
Index
Rory&::MatrixUtils
Small collection of tools to do not-so-everyday things.
@code
{
protected override async Task OnInitializedAsync()
{
if (!RuntimeCache.WasLoaded)
{
Console.WriteLine("[INDEX] !!! LOCALSTORAGE WAS NOT LOADED !!!");
await LocalStorageWrapper.LoadFromLocalStorage(LocalStorage);
}
await base.OnInitializedAsync();
await LocalStorageWrapper.ReloadLocalStorage(LocalStorage);
}
}