33 lines
1.3 KiB
Svelte
33 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import { Button } from '$lib/components/ui/button';
|
|
import { ThemeToggle } from '$lib/components/ui/theme-toggle';
|
|
import { LanguageToggle } from '$lib/components/ui/language-toggle';
|
|
import { signOut } from '@auth/sveltekit/client';
|
|
import { languageStore } from '$lib/stores/language.svelte';
|
|
|
|
let { userName, userEmail }: { userName?: string | null; userEmail?: string | null } = $props();
|
|
|
|
const t = $derived(languageStore.t);
|
|
const isAuthenticated = $derived(!!userName || !!userEmail);
|
|
</script>
|
|
|
|
<div class="flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
|
|
<div class="flex-1 min-w-0">
|
|
<h1 class="text-3xl font-bold">{t.nav.dashboard}</h1>
|
|
{#if isAuthenticated}
|
|
<p class="text-muted-foreground truncate">{t.dashboard.welcomeBack}, {userName || userEmail}</p>
|
|
{:else}
|
|
<p class="text-muted-foreground">{t.dashboard.anonymousDashboard || "Your local wishlists"}</p>
|
|
{/if}
|
|
</div>
|
|
<div class="flex items-center gap-1 sm:gap-2 flex-shrink-0">
|
|
<LanguageToggle />
|
|
<ThemeToggle />
|
|
{#if isAuthenticated}
|
|
<Button variant="outline" onclick={() => signOut({ callbackUrl: '/' })}>{t.auth.signOut}</Button>
|
|
{:else}
|
|
<Button variant="outline" onclick={() => (window.location.href = '/signin')}>{t.auth.signIn}</Button>
|
|
{/if}
|
|
</div>
|
|
</div>
|