2024-06-14 00:45:31 +00:00
|
|
|
@page "/"
|
|
|
|
@page "/statuslog/latest"
|
2024-06-05 12:41:08 +00:00
|
|
|
@inject State State
|
2024-05-30 01:06:08 +00:00
|
|
|
|
2024-06-18 01:44:18 +00:00
|
|
|
<RefreshButton></RefreshButton>
|
|
|
|
|
2024-06-13 04:46:24 +00:00
|
|
|
<PageHeading title="Status.lol" icon="fa-solid fa-message-smile">
|
|
|
|
<Description>The latest posts from everyone at <a href="https://status.lol">status.lol</a></Description>
|
|
|
|
</PageHeading>
|
2024-05-30 01:06:08 +00:00
|
|
|
|
2024-06-05 12:41:08 +00:00
|
|
|
<AuthorizeView>
|
|
|
|
<Authorized>
|
|
|
|
<button class="fab circle extra large-elevate" data-ui="#post-modal">
|
2024-07-11 05:57:53 +00:00
|
|
|
<i class="fa-solid fa-message-plus square"></i>
|
2024-06-05 12:41:08 +00:00
|
|
|
</button>
|
|
|
|
<NewStatusDialog id="post-modal"></NewStatusDialog>
|
|
|
|
</Authorized>
|
|
|
|
</AuthorizeView>
|
|
|
|
|
|
|
|
<div id="statuses" class="responsive">
|
2024-06-18 01:44:18 +00:00
|
|
|
<StatusList StatusFunc="@(async(refresh) => await State.GetStatuses(refresh))"></StatusList>
|
2024-06-05 12:41:08 +00:00
|
|
|
</div>
|
|
|
|
|
2024-05-30 01:06:08 +00:00
|
|
|
@code {
|
2024-06-05 12:41:08 +00:00
|
|
|
|
2024-05-30 01:06:08 +00:00
|
|
|
}
|
2024-05-31 01:27:01 +00:00
|
|
|
|