Iceshrimp.NET/Iceshrimp.Frontend/Components/NotificationList.razor
2024-06-29 00:48:53 +02:00

23 lines
No EOL
431 B
Text

@if (_state == State.Init)
{
<div class="scroller">
@foreach (var el in Notifications)
{
<NotificationComponent NotificationResponse="el" @key="el.Id"/>
}
<ScrollEnd ManualLoad="LoadMore" IntersectionChange="LoadMore"></ScrollEnd>
</div>
}
@if (_state == State.Loading)
{
<div>Loading!</div>
}
@if (_state == State.Error)
{
<div>Something went wrong!</div>
}
@code {
}