@raystack/chronicle 0.1.0-canary.30bf0df → 0.1.0-canary.49fe67c

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/dist/cli/index.js +220 -9919
  2. package/package.json +20 -12
  3. package/src/cli/commands/build.ts +27 -25
  4. package/src/cli/commands/dev.ts +24 -25
  5. package/src/cli/commands/init.ts +38 -132
  6. package/src/cli/commands/serve.ts +36 -49
  7. package/src/cli/commands/start.ts +20 -25
  8. package/src/cli/index.ts +14 -14
  9. package/src/cli/utils/config.ts +25 -26
  10. package/src/cli/utils/index.ts +3 -3
  11. package/src/cli/utils/resolve.ts +9 -3
  12. package/src/cli/utils/scaffold.ts +11 -124
  13. package/src/components/mdx/image.tsx +5 -34
  14. package/src/components/mdx/link.tsx +18 -15
  15. package/src/components/ui/search.module.css +7 -0
  16. package/src/components/ui/search.tsx +65 -49
  17. package/src/lib/config.ts +31 -28
  18. package/src/lib/head.tsx +49 -0
  19. package/src/lib/openapi.ts +8 -8
  20. package/src/lib/page-context.tsx +114 -0
  21. package/src/lib/source.ts +164 -45
  22. package/src/pages/ApiLayout.tsx +33 -0
  23. package/src/pages/ApiPage.tsx +73 -0
  24. package/src/pages/DocsLayout.tsx +18 -0
  25. package/src/pages/DocsPage.tsx +43 -0
  26. package/src/pages/NotFound.tsx +17 -0
  27. package/src/server/App.tsx +67 -0
  28. package/src/server/api/apis-proxy.ts +69 -0
  29. package/src/server/api/health.ts +5 -0
  30. package/src/server/api/page/[...slug].ts +18 -0
  31. package/src/server/api/search.ts +170 -0
  32. package/src/server/api/specs.ts +9 -0
  33. package/src/server/build-search-index.ts +117 -0
  34. package/src/server/entry-client.tsx +70 -0
  35. package/src/server/entry-server.tsx +95 -0
  36. package/src/server/routes/llms.txt.ts +61 -0
  37. package/src/server/routes/og.tsx +75 -0
  38. package/src/server/routes/robots.txt.ts +11 -0
  39. package/src/server/routes/sitemap.xml.ts +39 -0
  40. package/src/server/utils/safe-path.ts +17 -0
  41. package/src/server/vite-config.ts +84 -0
  42. package/src/themes/default/Layout.tsx +69 -42
  43. package/src/themes/default/Page.tsx +9 -11
  44. package/src/themes/default/Toc.tsx +30 -28
  45. package/src/themes/default/index.ts +7 -9
  46. package/src/themes/paper/ChapterNav.tsx +60 -41
  47. package/src/themes/paper/Layout.module.css +1 -1
  48. package/src/themes/paper/Layout.tsx +24 -12
  49. package/src/themes/paper/Page.module.css +11 -4
  50. package/src/themes/paper/Page.tsx +67 -48
  51. package/src/themes/paper/ReadingProgress.tsx +160 -139
  52. package/src/themes/paper/index.ts +5 -5
  53. package/src/themes/registry.ts +7 -7
  54. package/src/types/config.ts +11 -0
  55. package/src/types/content.ts +1 -0
  56. package/src/types/globals.d.ts +4 -0
  57. package/tsconfig.json +2 -3
  58. package/next.config.mjs +0 -10
  59. package/source.config.ts +0 -50
  60. package/src/app/[[...slug]]/layout.tsx +0 -15
  61. package/src/app/[[...slug]]/page.tsx +0 -57
  62. package/src/app/api/apis-proxy/route.ts +0 -59
  63. package/src/app/api/health/route.ts +0 -3
  64. package/src/app/api/search/route.ts +0 -90
  65. package/src/app/apis/[[...slug]]/layout.tsx +0 -26
  66. package/src/app/apis/[[...slug]]/page.tsx +0 -57
  67. package/src/app/layout.tsx +0 -26
  68. package/src/app/llms-full.txt/route.ts +0 -18
  69. package/src/app/llms.txt/route.ts +0 -15
  70. package/src/app/providers.tsx +0 -8
  71. package/src/cli/utils/process.ts +0 -7
  72. package/src/themes/default/font.ts +0 -6
  73. /package/src/{app/apis/[[...slug]]/layout.module.css → pages/ApiLayout.module.css} +0 -0
@@ -0,0 +1,84 @@
1
+ import react from '@vitejs/plugin-react';
2
+ import mdx from 'fumadocs-mdx/vite';
3
+ import { nitro } from 'nitro/vite';
4
+ import path from 'node:path';
5
+ import { type InlineConfig } from 'vite';
6
+
7
+ export interface ViteConfigOptions {
8
+ packageRoot: string;
9
+ projectRoot: string;
10
+ contentDir: string;
11
+ preset?: string;
12
+ }
13
+
14
+ export async function createViteConfig(
15
+ options: ViteConfigOptions
16
+ ): Promise<InlineConfig> {
17
+ const { packageRoot, projectRoot, contentDir, preset } = options;
18
+
19
+ return {
20
+ root: packageRoot,
21
+ configFile: false,
22
+ plugins: [
23
+ nitro({
24
+ serverDir: path.resolve(packageRoot, 'src/server'),
25
+ ...(preset && { preset }),
26
+ alias: {
27
+ '@content': path.resolve(packageRoot, '.content'),
28
+ },
29
+ }),
30
+ mdx({}, { index: false }),
31
+ react(),
32
+ {
33
+ name: 'chronicle:content-alias',
34
+ resolveId(id) {
35
+ if (id.startsWith('@content/')) {
36
+ return path.resolve(packageRoot, '.content', id.slice('@content/'.length));
37
+ }
38
+ },
39
+ }
40
+ ],
41
+ resolve: {
42
+ alias: {
43
+ '@': path.resolve(packageRoot, 'src'),
44
+ '@content': path.resolve(packageRoot, '.content'),
45
+ },
46
+ conditions: ['module-sync', 'import', 'node'],
47
+ preserveSymlinks: true,
48
+ dedupe: [
49
+ 'react',
50
+ 'react-dom',
51
+ 'react/jsx-runtime',
52
+ 'react/jsx-dev-runtime',
53
+ 'react-router',
54
+ ]
55
+ },
56
+ server: {
57
+ fs: {
58
+ allow: [packageRoot, projectRoot, contentDir]
59
+ }
60
+ },
61
+ define: {
62
+ __CHRONICLE_CONTENT_DIR__: JSON.stringify(contentDir),
63
+ __CHRONICLE_PROJECT_ROOT__: JSON.stringify(projectRoot),
64
+ __CHRONICLE_PACKAGE_ROOT__: JSON.stringify(packageRoot)
65
+ },
66
+ css: {
67
+ modules: {
68
+ localsConvention: 'camelCase'
69
+ }
70
+ },
71
+ ssr: {
72
+ noExternal: ['@raystack/apsara', 'dayjs', 'fumadocs-core']
73
+ },
74
+ environments: {
75
+ client: {
76
+ build: {
77
+ rollupOptions: {
78
+ input: path.resolve(packageRoot, 'src/server/entry-client.tsx')
79
+ }
80
+ }
81
+ }
82
+ }
83
+ };
84
+ }
@@ -1,64 +1,85 @@
1
- "use client";
2
-
3
- import { useMemo, useEffect, useRef } from "react";
4
- import { usePathname } from "next/navigation";
5
- import NextLink from "next/link";
6
- import { cx } from "class-variance-authority";
7
- import { Flex, Navbar, Headline, Link, Sidebar, Button } from "@raystack/apsara";
8
- import { RectangleStackIcon } from "@heroicons/react/24/outline";
9
- import { ClientThemeSwitcher } from "@/components/ui/client-theme-switcher";
10
- import { Search } from "@/components/ui/search";
11
- import { Footer } from "@/components/ui/footer";
12
- import { MethodBadge } from "@/components/api/method-badge";
13
- import type { ThemeLayoutProps, PageTreeItem } from "@/types";
14
- import styles from "./Layout.module.css";
1
+ import { RectangleStackIcon } from '@heroicons/react/24/outline';
2
+ import {
3
+ Button,
4
+ Flex,
5
+ Headline,
6
+ Link,
7
+ Navbar,
8
+ Sidebar
9
+ } from '@raystack/apsara';
10
+ import { cx } from 'class-variance-authority';
11
+ import { useEffect, useMemo, useRef } from 'react';
12
+ import { Link as RouterLink, useLocation } from 'react-router';
13
+ import { MethodBadge } from '@/components/api/method-badge';
14
+ import { ClientThemeSwitcher } from '@/components/ui/client-theme-switcher';
15
+ import { Footer } from '@/components/ui/footer';
16
+ import { Search } from '@/components/ui/search';
17
+ import type { PageTreeItem, ThemeLayoutProps } from '@/types';
18
+ import styles from './Layout.module.css';
15
19
 
16
20
  const iconMap: Record<string, React.ReactNode> = {
17
- "rectangle-stack": <RectangleStackIcon width={16} height={16} />,
18
- "method-get": <MethodBadge method="GET" size="micro" />,
19
- "method-post": <MethodBadge method="POST" size="micro" />,
20
- "method-put": <MethodBadge method="PUT" size="micro" />,
21
- "method-delete": <MethodBadge method="DELETE" size="micro" />,
22
- "method-patch": <MethodBadge method="PATCH" size="micro" />,
21
+ 'rectangle-stack': <RectangleStackIcon width={16} height={16} />,
22
+ 'method-get': <MethodBadge method='GET' size='micro' />,
23
+ 'method-post': <MethodBadge method='POST' size='micro' />,
24
+ 'method-put': <MethodBadge method='PUT' size='micro' />,
25
+ 'method-delete': <MethodBadge method='DELETE' size='micro' />,
26
+ 'method-patch': <MethodBadge method='PATCH' size='micro' />
23
27
  };
24
28
 
25
29
  let savedScrollTop = 0;
26
30
 
27
- export function Layout({ children, config, tree, classNames }: ThemeLayoutProps) {
28
- const pathname = usePathname();
31
+ export function Layout({
32
+ children,
33
+ config,
34
+ tree,
35
+ classNames
36
+ }: ThemeLayoutProps) {
37
+ const { pathname } = useLocation();
29
38
  const scrollRef = useRef<HTMLDivElement>(null);
30
39
 
31
40
  useEffect(() => {
32
41
  const el = scrollRef.current;
33
42
  if (!el) return;
34
- const onScroll = () => { savedScrollTop = el.scrollTop; };
43
+ const onScroll = () => {
44
+ savedScrollTop = el.scrollTop;
45
+ };
35
46
  el.addEventListener('scroll', onScroll);
36
47
  return () => el.removeEventListener('scroll', onScroll);
37
48
  }, []);
38
49
 
39
50
  useEffect(() => {
40
51
  const el = scrollRef.current;
41
- if (el) requestAnimationFrame(() => { el.scrollTop = savedScrollTop; });
52
+ if (el)
53
+ requestAnimationFrame(() => {
54
+ el.scrollTop = savedScrollTop;
55
+ });
42
56
  }, [pathname]);
43
57
 
44
58
  return (
45
- <Flex direction="column" className={cx(styles.layout, classNames?.layout)}>
59
+ <Flex direction='column' className={cx(styles.layout, classNames?.layout)}>
46
60
  <Navbar className={styles.header}>
47
61
  <Navbar.Start>
48
- <NextLink href="/" style={{ textDecoration: 'none', color: 'inherit' }}>
49
- <Headline size="small" weight="medium" as="h1">
62
+ <RouterLink
63
+ to='/'
64
+ style={{ textDecoration: 'none', color: 'inherit' }}
65
+ >
66
+ <Headline size='small' weight='medium' as='h1'>
50
67
  {config.title}
51
68
  </Headline>
52
- </NextLink>
69
+ </RouterLink>
53
70
  </Navbar.Start>
54
71
  <Navbar.End>
55
- <Flex gap="medium" align="center" className={styles.navActions}>
56
- {config.api?.map((api) => (
57
- <NextLink key={api.basePath} href={api.basePath} className={styles.navButton}>
72
+ <Flex gap='medium' align='center' className={styles.navActions}>
73
+ {config.api?.map(api => (
74
+ <RouterLink
75
+ key={api.basePath}
76
+ to={api.basePath}
77
+ className={styles.navButton}
78
+ >
58
79
  {api.name} API
59
- </NextLink>
80
+ </RouterLink>
60
81
  ))}
61
- {config.navigation?.links?.map((link) => (
82
+ {config.navigation?.links?.map(link => (
62
83
  <Link key={link.href} href={link.href}>
63
84
  {link.label}
64
85
  </Link>
@@ -69,9 +90,13 @@ export function Layout({ children, config, tree, classNames }: ThemeLayoutProps)
69
90
  </Navbar.End>
70
91
  </Navbar>
71
92
  <Flex className={cx(styles.body, classNames?.body)}>
72
- <Sidebar defaultOpen collapsible={false} className={cx(styles.sidebar, classNames?.sidebar)}>
93
+ <Sidebar
94
+ defaultOpen
95
+ collapsible={false}
96
+ className={cx(styles.sidebar, classNames?.sidebar)}
97
+ >
73
98
  <Sidebar.Main ref={scrollRef}>
74
- {tree.children.map((item) => (
99
+ {tree.children.map(item => (
75
100
  <SidebarNode
76
101
  key={item.url ?? item.name}
77
102
  item={item}
@@ -80,7 +105,9 @@ export function Layout({ children, config, tree, classNames }: ThemeLayoutProps)
80
105
  ))}
81
106
  </Sidebar.Main>
82
107
  </Sidebar>
83
- <main className={cx(styles.content, classNames?.content)}>{children}</main>
108
+ <main className={cx(styles.content, classNames?.content)}>
109
+ {children}
110
+ </main>
84
111
  </Flex>
85
112
  <Footer config={config.footer} />
86
113
  </Flex>
@@ -89,23 +116,23 @@ export function Layout({ children, config, tree, classNames }: ThemeLayoutProps)
89
116
 
90
117
  function SidebarNode({
91
118
  item,
92
- pathname,
119
+ pathname
93
120
  }: {
94
121
  item: PageTreeItem;
95
122
  pathname: string;
96
123
  }) {
97
- if (item.type === "separator") {
124
+ if (item.type === 'separator') {
98
125
  return null;
99
126
  }
100
127
 
101
- if (item.type === "folder" && item.children) {
128
+ if (item.type === 'folder' && item.children) {
102
129
  return (
103
130
  <Sidebar.Group
104
131
  label={item.name}
105
132
  leadingIcon={item.icon ? iconMap[item.icon] : undefined}
106
133
  classNames={{ items: styles.groupItems }}
107
134
  >
108
- {item.children.map((child) => (
135
+ {item.children.map(child => (
109
136
  <SidebarNode
110
137
  key={child.url ?? child.name}
111
138
  item={child}
@@ -117,8 +144,8 @@ function SidebarNode({
117
144
  }
118
145
 
119
146
  const isActive = pathname === item.url;
120
- const href = item.url ?? "#";
121
- const link = useMemo(() => <NextLink href={href} scroll={false} />, [href]);
147
+ const href = item.url ?? '#';
148
+ const link = useMemo(() => <RouterLink to={href} />, [href]);
122
149
 
123
150
  return (
124
151
  <Sidebar.Item
@@ -1,21 +1,19 @@
1
- 'use client'
1
+ 'use client';
2
2
 
3
- import { Flex } from '@raystack/apsara'
4
- import type { ThemePageProps } from '@/types'
5
- import { Breadcrumbs } from '@/components/ui/breadcrumbs'
6
- import { Toc } from './Toc'
7
- import styles from './Page.module.css'
3
+ import { Flex } from '@raystack/apsara';
4
+ import { Breadcrumbs } from '@/components/ui/breadcrumbs';
5
+ import type { ThemePageProps } from '@/types';
6
+ import styles from './Page.module.css';
7
+ import { Toc } from './Toc';
8
8
 
9
9
  export function Page({ page, tree }: ThemePageProps) {
10
10
  return (
11
11
  <Flex className={styles.page}>
12
- <article className={styles.article}>
12
+ <article className={styles.article} data-article-content>
13
13
  <Breadcrumbs slug={page.slug} tree={tree} />
14
- <div className={styles.content}>
15
- {page.content}
16
- </div>
14
+ <div className={styles.content}>{page.content}</div>
17
15
  </article>
18
16
  <Toc items={page.toc} />
19
17
  </Flex>
20
- )
18
+ );
21
19
  }
@@ -1,55 +1,57 @@
1
- 'use client'
1
+ 'use client';
2
2
 
3
- import { useEffect, useState } from 'react'
4
- import { Text } from '@raystack/apsara'
5
- import type { TocItem } from '@/types'
6
- import styles from './Toc.module.css'
3
+ import { Text } from '@raystack/apsara';
4
+ import { useEffect, useState } from 'react';
5
+ import type { TocItem } from '@/types';
6
+ import styles from './Toc.module.css';
7
7
 
8
8
  interface TocProps {
9
- items: TocItem[]
9
+ items: TocItem[];
10
10
  }
11
11
 
12
12
  export function Toc({ items }: TocProps) {
13
- const [activeId, setActiveId] = useState<string>('')
13
+ const [activeId, setActiveId] = useState<string>('');
14
14
 
15
15
  // Filter to only show h2 and h3 headings
16
- const filteredItems = items.filter((item) => item.depth >= 2 && item.depth <= 3)
16
+ const filteredItems = items.filter(
17
+ item => item.depth >= 2 && item.depth <= 3
18
+ );
17
19
 
18
20
  useEffect(() => {
19
- const headingIds = filteredItems.map((item) => item.url.replace('#', ''))
21
+ const headingIds = filteredItems.map(item => item.url.replace('#', ''));
20
22
 
21
23
  const observer = new IntersectionObserver(
22
- (entries) => {
23
- entries.forEach((entry) => {
24
+ entries => {
25
+ entries.forEach(entry => {
24
26
  if (entry.isIntersecting) {
25
- setActiveId(entry.target.id)
27
+ setActiveId(entry.target.id);
26
28
  }
27
- })
29
+ });
28
30
  },
29
31
  // -80px top: offset for fixed header, -80% bottom: trigger when heading is in top 20% of viewport
30
32
  { rootMargin: '-80px 0px -80% 0px' }
31
- )
33
+ );
32
34
 
33
- headingIds.forEach((id) => {
34
- const element = document.getElementById(id)
35
- if (element) observer.observe(element)
36
- })
35
+ headingIds.forEach(id => {
36
+ const element = document.getElementById(id);
37
+ if (element) observer.observe(element);
38
+ });
37
39
 
38
- return () => observer.disconnect()
39
- }, [filteredItems])
40
+ return () => observer.disconnect();
41
+ }, [filteredItems]);
40
42
 
41
- if (filteredItems.length === 0) return null
43
+ if (filteredItems.length === 0) return null;
42
44
 
43
45
  return (
44
46
  <aside className={styles.toc}>
45
- <Text size={1} weight="medium" className={styles.title}>
47
+ <Text size={1} weight='medium' className={styles.title}>
46
48
  On this page
47
49
  </Text>
48
50
  <nav className={styles.nav}>
49
- {filteredItems.map((item) => {
50
- const id = item.url.replace('#', '')
51
- const isActive = activeId === id
52
- const isNested = item.depth > 2
51
+ {filteredItems.map(item => {
52
+ const id = item.url.replace('#', '');
53
+ const isActive = activeId === id;
54
+ const isNested = item.depth > 2;
53
55
  return (
54
56
  <a
55
57
  key={item.url}
@@ -58,9 +60,9 @@ export function Toc({ items }: TocProps) {
58
60
  >
59
61
  {item.title}
60
62
  </a>
61
- )
63
+ );
62
64
  })}
63
65
  </nav>
64
66
  </aside>
65
- )
67
+ );
66
68
  }
@@ -1,13 +1,11 @@
1
- import { Layout } from './Layout'
2
- import { Page } from './Page'
3
- import { Toc } from './Toc'
4
- import { inter } from './font'
5
- import type { Theme } from '@/types'
1
+ import type { Theme } from '@/types';
2
+ import { Layout } from './Layout';
3
+ import { Page } from './Page';
4
+ import { Toc } from './Toc';
6
5
 
7
6
  export const defaultTheme: Theme = {
8
7
  Layout,
9
- Page,
10
- className: inter.className,
11
- }
8
+ Page
9
+ };
12
10
 
13
- export { Layout, Page, Toc }
11
+ export { Layout, Page, Toc };
@@ -1,96 +1,115 @@
1
- 'use client'
2
-
3
- import { usePathname } from 'next/navigation'
4
- import NextLink from 'next/link'
5
- import { MethodBadge } from '@/components/api/method-badge'
6
- import type { PageTree, PageTreeItem } from '@/types'
7
- import styles from './ChapterNav.module.css'
1
+ import { Link as RouterLink, useLocation } from 'react-router';
2
+ import { MethodBadge } from '@/components/api/method-badge';
3
+ import type { PageTree, PageTreeItem } from '@/types';
4
+ import styles from './ChapterNav.module.css';
8
5
 
9
6
  const iconMap: Record<string, React.ReactNode> = {
10
- 'method-get': <MethodBadge method="GET" size="micro" />,
11
- 'method-post': <MethodBadge method="POST" size="micro" />,
12
- 'method-put': <MethodBadge method="PUT" size="micro" />,
13
- 'method-delete': <MethodBadge method="DELETE" size="micro" />,
14
- 'method-patch': <MethodBadge method="PATCH" size="micro" />,
15
- }
7
+ 'method-get': <MethodBadge method='GET' size='micro' />,
8
+ 'method-post': <MethodBadge method='POST' size='micro' />,
9
+ 'method-put': <MethodBadge method='PUT' size='micro' />,
10
+ 'method-delete': <MethodBadge method='DELETE' size='micro' />,
11
+ 'method-patch': <MethodBadge method='PATCH' size='micro' />
12
+ };
16
13
 
17
14
  interface ChapterNavProps {
18
- tree: PageTree
15
+ tree: PageTree;
19
16
  }
20
17
 
21
- function buildChapterIndices(children: PageTreeItem[]): Map<PageTreeItem, number> {
22
- const indices = new Map<PageTreeItem, number>()
23
- let index = 0
18
+ function buildChapterIndices(
19
+ children: PageTreeItem[]
20
+ ): Map<PageTreeItem, number> {
21
+ const indices = new Map<PageTreeItem, number>();
22
+ let index = 0;
24
23
  for (const item of children) {
25
24
  if (item.type === 'folder' && item.children) {
26
- index++
27
- indices.set(item, index)
25
+ index++;
26
+ indices.set(item, index);
28
27
  }
29
28
  }
30
- return indices
29
+ return indices;
31
30
  }
32
31
 
33
32
  export function ChapterNav({ tree }: ChapterNavProps) {
34
- const pathname = usePathname()
35
- const chapterIndices = buildChapterIndices(tree.children)
33
+ const { pathname } = useLocation();
34
+ const chapterIndices = buildChapterIndices(tree.children);
36
35
 
37
36
  return (
38
37
  <nav className={styles.nav}>
39
38
  <ul className={styles.chapterItems}>
40
- {tree.children.map((item) => {
41
- if (item.type === 'separator') return null
39
+ {tree.children.map(item => {
40
+ if (item.type === 'separator') return null;
42
41
 
43
42
  if (item.type === 'folder' && item.children) {
44
- const chapterIndex = chapterIndices.get(item) ?? 0
43
+ const chapterIndex = chapterIndices.get(item) ?? 0;
45
44
  return (
46
45
  <li key={item.name} className={styles.chapter}>
47
46
  <span className={styles.chapterLabel}>
48
47
  {String(chapterIndex).padStart(2, '0')}. {item.name}
49
48
  </span>
50
49
  <ul className={styles.chapterItems}>
51
- {item.children.map((child) => (
52
- <ChapterItem key={child.url ?? child.name} item={child} pathname={pathname} />
50
+ {item.children.map(child => (
51
+ <ChapterItem
52
+ key={child.url ?? child.name}
53
+ item={child}
54
+ pathname={pathname}
55
+ />
53
56
  ))}
54
57
  </ul>
55
58
  </li>
56
- )
59
+ );
57
60
  }
58
61
 
59
- return <ChapterItem key={item.url ?? item.name} item={item} pathname={pathname} />
62
+ return (
63
+ <ChapterItem
64
+ key={item.url ?? item.name}
65
+ item={item}
66
+ pathname={pathname}
67
+ />
68
+ );
60
69
  })}
61
70
  </ul>
62
71
  </nav>
63
- )
72
+ );
64
73
  }
65
74
 
66
- function ChapterItem({ item, pathname }: { item: PageTreeItem; pathname: string }) {
67
- if (item.type === 'separator') return null
75
+ function ChapterItem({
76
+ item,
77
+ pathname
78
+ }: {
79
+ item: PageTreeItem;
80
+ pathname: string;
81
+ }) {
82
+ if (item.type === 'separator') return null;
68
83
 
69
84
  if (item.type === 'folder' && item.children) {
70
85
  return (
71
86
  <li>
72
87
  <span className={styles.subLabel}>{item.name}</span>
73
88
  <ul className={styles.chapterItems}>
74
- {item.children.map((child) => (
75
- <ChapterItem key={child.url ?? child.name} item={child} pathname={pathname} />
89
+ {item.children.map(child => (
90
+ <ChapterItem
91
+ key={child.url ?? child.name}
92
+ item={child}
93
+ pathname={pathname}
94
+ />
76
95
  ))}
77
96
  </ul>
78
97
  </li>
79
- )
98
+ );
80
99
  }
81
100
 
82
- const isActive = pathname === item.url
83
- const icon = item.icon ? iconMap[item.icon] : null
101
+ const isActive = pathname === item.url;
102
+ const icon = item.icon ? iconMap[item.icon] : null;
84
103
 
85
104
  return (
86
105
  <li>
87
- <NextLink
88
- href={item.url ?? '#'}
106
+ <RouterLink
107
+ to={item.url ?? '#'}
89
108
  className={`${styles.link} ${isActive ? styles.active : ''}`}
90
109
  >
91
110
  {icon && <span className={styles.icon}>{icon}</span>}
92
111
  <span>{item.name}</span>
93
- </NextLink>
112
+ </RouterLink>
94
113
  </li>
95
- )
114
+ );
96
115
  }
@@ -13,7 +13,7 @@
13
13
  padding: var(--rs-space-7) var(--rs-space-5);
14
14
  background: var(--rs-color-background-neutral-primary);
15
15
  overflow-y: auto;
16
- font-family: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;
16
+ font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
17
17
  }
18
18
 
19
19
  .title {
@@ -1,25 +1,37 @@
1
- 'use client'
1
+ 'use client';
2
2
 
3
- import { Flex, Headline } from '@raystack/apsara'
4
- import { cx } from 'class-variance-authority'
5
- import { Footer } from '@/components/ui/footer'
6
- import { ChapterNav } from './ChapterNav'
7
- import type { ThemeLayoutProps } from '@/types'
8
- import styles from './Layout.module.css'
3
+ import { Flex, Headline } from '@raystack/apsara';
4
+ import { cx } from 'class-variance-authority';
5
+ import { Footer } from '@/components/ui/footer';
6
+ import type { ThemeLayoutProps } from '@/types';
7
+ import { ChapterNav } from './ChapterNav';
8
+ import styles from './Layout.module.css';
9
9
 
10
- export function Layout({ children, config, tree, classNames }: ThemeLayoutProps) {
10
+ export function Layout({
11
+ children,
12
+ config,
13
+ tree,
14
+ classNames
15
+ }: ThemeLayoutProps) {
11
16
  return (
12
- <Flex direction="column" className={cx(styles.layout, classNames?.layout)}>
17
+ <Flex direction='column' className={cx(styles.layout, classNames?.layout)}>
13
18
  <Flex className={cx(styles.body, classNames?.body)}>
14
19
  <aside className={cx(styles.sidebar, classNames?.sidebar)}>
15
- <Headline size="small" weight="medium" as="h1" className={styles.title}>
20
+ <Headline
21
+ size='small'
22
+ weight='medium'
23
+ as='h1'
24
+ className={styles.title}
25
+ >
16
26
  {config.title}
17
27
  </Headline>
18
28
  <ChapterNav tree={tree} />
19
29
  </aside>
20
- <div className={cx(styles.content, classNames?.content)}>{children}</div>
30
+ <div className={cx(styles.content, classNames?.content)}>
31
+ {children}
32
+ </div>
21
33
  </Flex>
22
34
  <Footer config={config.footer} />
23
35
  </Flex>
24
- )
36
+ );
25
37
  }