rano/web/routes/+layout.svelte

25 lines
635 B
Svelte
Raw Permalink Normal View History

2024-11-01 17:49:56 +00:00
<script lang="ts">
import { beforeNavigate } from '$app/navigation';
import { updated } from '$app/stores';
2024-11-01 17:49:56 +00:00
import { setContextClient } from '@urql/svelte';
import { newClient } from '$lib/gql/client';
2024-11-17 16:58:29 +00:00
import { Me } from '$lib/gql/account.gql';
2024-11-01 17:49:56 +00:00
import '../app.css';
const { children } = $props();
2024-11-17 16:58:29 +00:00
const host = import.meta.env.VITE_GRAPH_URL ?? '';
const client = newClient(`${host}/query`);
setContextClient(client);
beforeNavigate(({ willUnload, to }) => {
if ($updated && !willUnload && to?.url) {
location.href = to.url.href;
}
});
const p = client.query(Me, {}).toPromise();
</script>
{@render children()}