@page "/"
@using MatrixRoomUtils.Web.Classes
@using MatrixRoomUtils.Web.Shared.IndexComponents
@using Blazored.LocalStorage
@inject NavigationManager NavigationManager
@inject ILocalStorageService LocalStorage
Index
Rory&::MatrixUtils
Small collection of tools to do not-so-everyday things.
@{
Console.WriteLine("Users in cache: " + RuntimeStorage.UsersCache.Count);
if (!RuntimeStorage.WasLoaded)
{
Console.WriteLine("[INDEX] !!! LOCALSTORAGE WAS NOT LOADED !!!");
RuntimeStorage.LoadFromLocalStorage(LocalStorage).GetAwaiter().OnCompleted(() =>
{
Console.WriteLine("Users in cache: " + RuntimeStorage.UsersCache.Count);
StateHasChanged();
});
}
}