mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-23 00:22:59 +05:30
fix design for pubnix user count
This commit is contained in:
parent
0124560e76
commit
d7a9153751
@ -9,7 +9,6 @@ export const load = (async () => {
|
||||
|
||||
return {
|
||||
users: get(pubnixUsers),
|
||||
onlineUserCount: get(pubnixUsers).length,
|
||||
...meta
|
||||
}
|
||||
}) satisfies PageServerLoad;
|
||||
|
@ -37,7 +37,7 @@
|
||||
|
||||
{#if !data.users.error}
|
||||
{#if data.users.users.some(isOnline)}
|
||||
<p>There are {onlineUserCount} users online out of {userCount} users.</p>
|
||||
<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}
|
||||
|
@ -3,15 +3,13 @@
|
||||
export let data: PageData;
|
||||
|
||||
import User from "../User.svelte";
|
||||
|
||||
const userCount = data.users.users.length;
|
||||
</script>
|
||||
|
||||
<h1>{data.title}</h1>
|
||||
|
||||
{#if !data.users.error}
|
||||
{#if data.users.users.length > 0}
|
||||
<p>There are {userCount} users on the pubnix.</p>
|
||||
<p class="my-4">There are {data.users.users.length} users on the pubnix.</p>
|
||||
<div class="flex flex-row flex-wrap gap-4">
|
||||
{#each data.users.users as user}
|
||||
<User {user} />
|
||||
|
Loading…
Reference in New Issue
Block a user