mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
55 lines
1.3 KiB
Svelte
55 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import { authClient } from '$lib/auth-client';
|
|
import { goto } from '$app/navigation';
|
|
import { queryClient } from '$lib/orpc';
|
|
|
|
const sessionQuery = authClient.useSession();
|
|
|
|
async function handleSignOut() {
|
|
await authClient.signOut({
|
|
fetchOptions: {
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries();
|
|
goto('/');
|
|
},
|
|
onError: (error) => {
|
|
console.error('Sign out failed:', error);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function goToLogin() {
|
|
goto('/login');
|
|
}
|
|
|
|
</script>
|
|
|
|
<div class="relative">
|
|
{#if $sessionQuery.isPending}
|
|
<div class="h-8 w-24 animate-pulse rounded bg-neutral-700"></div>
|
|
{:else if $sessionQuery.data?.user}
|
|
{@const user = $sessionQuery.data.user}
|
|
<div class="flex items-center gap-3">
|
|
<span class="text-sm text-neutral-300 hidden sm:inline" title={user.email}>
|
|
{user.name || user.email?.split('@')[0] || 'User'}
|
|
</span>
|
|
<button
|
|
onclick={handleSignOut}
|
|
class="rounded px-3 py-1 text-sm bg-red-600 hover:bg-red-700 text-white transition-colors"
|
|
>
|
|
Sign Out
|
|
</button>
|
|
</div>
|
|
{:else}
|
|
<div class="flex items-center gap-2">
|
|
<button
|
|
onclick={goToLogin}
|
|
class="rounded px-3 py-1 text-sm bg-indigo-600 hover:bg-indigo-700 text-white transition-colors"
|
|
>
|
|
Sign In
|
|
</button>
|
|
</div>
|
|
{/if}
|
|
</div>
|