webcompile/src/routes/pubnix/+page.svelte

63 lines
1.4 KiB
Svelte

<script lang="ts">
import type { PageData } from "./$types";
export let data: PageData;
import User, { type UserType } from "./User.svelte";
const isOnline = (user: UserType) => user.online;
const onlineUserCount = data.users.users.filter(isOnline).length;
const userCount = data.users.users.length;
</script>
<div class="h1-no-lg flex flex-col sm:(flex-row items-center) gap-4">
<span class="text-4xl font-bold">Pubnix</span>
<a
href="/pubnix/register"
class="button sm:w-fit"
><div class="i-ic:outline-plus" />
Register</a
>
<a
href="/pubnix/users"
class="button sm:w-fit"
><div class="i-ic:outline-people" />
Users</a
>
<a
href="/pubnix/faq"
class="button sm:w-fit"
><div class="i-ic:outline-question-mark" />
FAQ</a
>
</div>
<h2>Online users</h2>
{#if !data.users.error}
{#if onlineUserCount == 1}
<p class="my-4">There is {onlineUserCount} user online out of {userCount} users.</p>
<div class="flex flex-row flex-wrap gap-4">
{#each data.users.users as user}
{#if user.online}
<User {user} />
{/if}
{/each}
</div>
{:else if onlineUserCount > 1}
<p class="my-4">There are {onlineUserCount} users online out of {userCount} users.</p>
<div class="flex flex-row flex-wrap gap-4">
{#each data.users.users as user}
{#if user.online}
<User {user} />
{/if}
{/each}
</div>
{:else}
<p>No users online out of {userCount} users.</p>
{/if}
{:else}
<p>{data.users.message}</p>
{/if}