peer-at-code-web/src/routes/dashboard/+page.svelte
2023-10-02 01:14:48 +02:00

101 lines
3.5 KiB
Svelte

<script lang="ts">
import type { PageData } from './$types';
import Card from '$lib/components/Card.svelte';
import Button from '$lib/components/ui/Button.svelte';
export let data: PageData;
$: user = data.user;
</script>
<section class="flex w-full flex-col gap-4">
<header>
<h1 class="text-xl font-semibold">Tableau de bord</h1>
<p class="text-highlight-secondary">Ceci est la page d&apos;accueil du dashboard</p>
</header>
<main class="flex flex-col gap-4">
<div
class="flex w-full flex-col justify-between gap-4 space-x-0 md:flex md:flex-row md:space-x-6 md:space-y-0"
>
<Card title="Puzzles résolus" data={user?.completions ?? 0} />
<Card title="Badges obtenus" data={user?.badges?.length ?? 'Aucun'} />
<Card title="Rang actuel" data={user?.rank ?? 'Non classé'} />
</div>
{#if data.daily && data.daily.puzzle}
<header>
<h1 class="text-lg font-semibold">Puzzle du jour</h1>
<p class="text-highlight-secondary">
Essayer de résoudre le puzzle du jour pour gagner des points supplémentaires
</p>
</header>
<div
class="flex items-center justify-between gap-4 rounded-lg border-2 border-brand/40 bg-primary-700 px-4 py-2"
>
<div class="flex w-full flex-col justify-between md:flex-row md:items-center md:gap-4">
<span class="text-lg font-semibold">{data.daily.chapter.name}</span>
<span class="text-highlight-secondary">
{data.daily.puzzle.name} ({data.daily.puzzle.score ?? '?'}/{data.daily.puzzle.scoreMax})
</span>
</div>
<div class="flex items-center gap-4">
<Button
variant="brand"
href="/dashboard/chapters/{data.daily.chapter.id}/puzzle/{data.daily.puzzle.id}"
>
<span class="text-lg font-semibold">
{data.daily.puzzle.score ? 'Voir' : 'Jouer'}
</span>
</Button>
</div>
</div>
{/if}
<div class="grid grid-cols-1 gap-4">
<div class="flex flex-col gap-4">
<header>
<h2 class="text-lg font-semibold">Derniers puzzles</h2>
<p class="text-highlight-secondary">
Voici les derniers puzzles que vous avez résolus ou essayer de résoudres
</p>
</header>
<div
class="h-full max-h-96 overflow-y-scroll rounded-lg border-2 border-highlight-primary bg-primary-700 p-4 shadow-md"
>
<ul class="flex flex-col space-y-2">
{#if user?.completionsList && user.completionsList.length > 0}
{#each user.completionsList as completion, key}
<li class="flex justify-between space-x-2">
<div class="flex items-center space-x-4">
<div class="flex items-center space-x-2">
<span class="text-lg">{completion.puzzleName}</span>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="flex flex-col">
<span class="text-sm font-semibold">
Essai{completion.tries > 1 ? 's' : ''}
</span>
<span class="text-right text-lg text-highlight-secondary">
{completion.tries}
</span>
</div>
<div class="flex flex-col">
<span class="text-sm font-semibold">Score</span>
<span class="text-right text-lg text-highlight-secondary">
{completion.score}
</span>
</div>
</div>
</li>
{/each}
{:else}
<li class="m-auto flex items-center justify-center">
<span class="text-lg text-highlight-secondary"> Aucun puzzles </span>
</li>
{/if}
</ul>
</div>
</div>
</div>
</main>
</section>