-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathdocs-layout.tsx
74 lines (67 loc) · 2.13 KB
/
docs-layout.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { Show, onMount, JSX } from "solid-js";
import { useLocation } from "@solidjs/router";
import { Title } from "@solidjs/meta";
import { coreEntries } from "solid:collection";
import { Pagination } from "~/ui/pagination";
import { EditPageLink } from "./edit-page-link";
import { PageIssueLink } from "./page-issue-link";
interface DocsLayoutProps {
entries: typeof coreEntries;
children: JSX.Element;
}
export const DocsLayout = (props: DocsLayoutProps) => {
const location = useLocation();
const collection = () =>
location.pathname.includes("/reference/")
? props.entries.reference
: props.entries.learn;
const entryIndex = () =>
collection()!.findIndex((element) => location.pathname === element.path);
const titles = () => {
const fullEntry = collection
? collection()![entryIndex()]
: { parent: undefined, title: undefined };
if (fullEntry) {
return {
parent: fullEntry?.parent !== "root" ? fullEntry.parent : undefined,
title: fullEntry?.title,
};
}
};
onMount(() => document.dispatchEvent(new CustomEvent("docs-layout-mounted")));
return (
<Show when={props.entries} keyed>
<>
<Show when={titles()?.title} fallback={<Title>SolidDocs</Title>}>
{(title) => <Title>{`${title()} - SolidDocs`}</Title>}
</Show>
<div id="rr" class="flex relative justify-center">
<article class="w-fit overflow-hidden pb-16 lg:px-5 expressive-code-overrides lg:max-w-none">
<Show when={titles()?.parent}>
{(t) => (
<span class="text-sm font-semibold text-blue-700 dark:text-blue-300 my-1">
{t()}
</span>
)}
</Show>
<Show when={titles()?.title}>
{(t) => (
<h1 class="prose-headings:text-[2.8rem] text-slate-900 dark:text-white">
{t()}
</h1>
)}
</Show>
<span class="xl:hidden text-sm -mt-[15px] block">
<EditPageLink />
</span>
<div class="max-w-2xl w-full">{props.children}</div>
<span class="xl:hidden text-sm">
<PageIssueLink />
</span>
<Pagination currentIndex={entryIndex()} collection={collection()} />
</article>
</div>
</>
</Show>
);
};