58 lines
1.7 KiB
Svelte
58 lines
1.7 KiB
Svelte
<script lang="ts">
|
|||
|
|
import '$lib/styles/oki-tokens.css';
|
||
|
|
import '$lib/styles/base.css';
|
||
|
|
|
||
|
|
import { afterNavigate, onNavigate } from '$app/navigation';
|
||
|
|
import { page } from '$app/state';
|
||
|
|
import Footer from '$lib/components/Footer.svelte';
|
||
|
|
import Nav from '$lib/components/Nav.svelte';
|
||
|
|
import ScrollProgressBar from '$lib/components/motion/ScrollProgressBar.svelte';
|
||
|
|
import { getBundle, localeFromPath } from '$lib/i18n';
|
||
|
|
import { prefersReducedMotion } from '$lib/motion/tokens';
|
||
|
|
|
||
|
|
let { children } = $props();
|
||
|
|
|
||
|
|
const locale = $derived(localeFromPath(page.url.pathname));
|
||
|
|
const t = $derived(getBundle(locale));
|
||
|
|
|
||
|
|
// PageTransition légère : View Transitions API, durée lue depuis les tokens.
|
||
|
|
// Navigateurs sans support : navigation instantanée (fallback sobre).
|
||
|
|
onNavigate((navigation) => {
|
||
|
|
if (prefersReducedMotion()) return;
|
||
|
|
if (!document.startViewTransition) return;
|
||
|
|
return new Promise((resolve) => {
|
||
|
|
document.startViewTransition(async () => {
|
||
|
|
resolve();
|
||
|
|
await navigation.complete;
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
// Focus déplacé sur le contenu après chaque transition de route (playbook §6)
|
||
|
|
afterNavigate(({ type, to }) => {
|
||
|
|
if (type === 'enter') return;
|
||
|
|
if (to?.url.hash) return;
|
||
|
|
document.getElementById('contenu')?.focus({ preventScroll: true });
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<a href="#contenu" class="skip-link">{locale === 'en' ? 'Skip to content' : 'Aller au contenu'}</a>
|
||
|
|
<ScrollProgressBar />
|
||
|
|
<Nav {t} {locale} />
|
||
|
|
<main id="contenu" tabindex="-1">
|
||
|
|
{@render children()}
|
||
|
|
</main>
|
||
|
|
<Footer {t} {locale} />
|
||
|
|
|
||
|
|
<style>
|
||
|
|
main {
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
::view-transition-old(root),
|
||
|
|
::view-transition-new(root) {
|
||
|
|
animation-duration: var(--dur-mesure);
|
||
|
|
animation-timing-function: var(--ease-ka);
|
||
|
|
}
|
||
|
|
</style>
|