Iceshrimp.NET/Iceshrimp.Frontend/Components/TimelineComponent.razor

14 lines
No EOL
446 B
Text

@if (ComponentState is Core.Miscellaneous.State.Loaded)
{
<div role="feed" aria-label="timeline">
<VirtualScroller @ref=VirtualScroller NoteResponseList="State.Timeline" ReachedEnd="FetchOlder" ReachedStart="FetchNewer"/>
</div>
}
@if (ComponentState is Core.Miscellaneous.State.Loading)
{
<div>Loading</div>
}
@if (ComponentState is Core.Miscellaneous.State.Empty)
{
<div>No posts here yet! Go find someone to follow!</div>
}