mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-27 22:05:54 +00:00
58 lines
2.2 KiB
Svelte
58 lines
2.2 KiB
Svelte
<script lang="ts">
|
|
import { Button } from '$lib/components/ui/button';
|
|
import AlgoliaDocSearch from '$lib/components/AlgoliaDocSearch.svelte';
|
|
import { getURLForLanguage } from '$lib/utils';
|
|
import { i18n } from '$lib/i18n.svelte';
|
|
import { page } from '$app/state';
|
|
import { guides } from '$lib/components/docs/docs';
|
|
import type { Snippet } from 'svelte';
|
|
|
|
let {
|
|
data,
|
|
children,
|
|
}: {
|
|
data: {
|
|
guideTitles: Record<string, string>;
|
|
};
|
|
children: Snippet;
|
|
} = $props();
|
|
</script>
|
|
|
|
<div class="grow flex flex-col items-center p-12">
|
|
<div class="max-w-5xl flex flex-row gap-24">
|
|
<div class="hidden md:flex flex-col gap-2 w-40 sticky top-[101px] self-start shrink-0">
|
|
<div class="mb-2">
|
|
<AlgoliaDocSearch />
|
|
</div>
|
|
{#each Object.keys(guides) as guide}
|
|
<Button
|
|
variant="link"
|
|
href={getURLForLanguage(i18n.lang, `/help/${guide}`)}
|
|
class="min-h-5 h-fit p-0 w-fit text-muted-foreground hover:text-foreground hover:no-underline font-normal hover:font-semibold items-start whitespace-normal {page
|
|
.params.guide === guide
|
|
? 'font-semibold text-foreground'
|
|
: ''}"
|
|
>
|
|
{data.guideTitles[guide]}
|
|
</Button>
|
|
{#each guides[guide] as subGuide}
|
|
<Button
|
|
variant="link"
|
|
href={getURLForLanguage(i18n.lang, `/help/${guide}/${subGuide}`)}
|
|
class="min-h-5 h-fit p-0 w-fit text-muted-foreground hover:text-foreground hover:no-underline font-normal hover:font-semibold items-start whitespace-normal ml-3 {page
|
|
.params.guide ===
|
|
guide + '/' + subGuide
|
|
? 'font-semibold text-foreground'
|
|
: ''}"
|
|
>
|
|
{data.guideTitles[`${guide}/${subGuide}`]}
|
|
</Button>
|
|
{/each}
|
|
{/each}
|
|
</div>
|
|
<div class="grow">
|
|
{@render children()}
|
|
</div>
|
|
</div>
|
|
</div>
|