|
5 | 5 |
|
6 | 6 | import type { ReactElement, ReactNode } from 'react'
|
7 | 7 | import { NEXTRA_INTERNAL } from '../constants.js'
|
8 |
| -import { normalizePageRoute, pageTitleFromFilename } from '../server/utils.js' |
9 | 8 | import type {
|
10 |
| - DynamicFolder, |
11 |
| - DynamicMeta, |
12 |
| - DynamicMetaDescriptor, |
13 |
| - DynamicMetaItem, |
14 |
| - DynamicMetaJsonFile, |
15 |
| - Folder, |
16 | 9 | Heading,
|
17 | 10 | NextraInternalGlobal,
|
18 | 11 | NextraMDXContent,
|
19 |
| - PageMapItem, |
20 | 12 | PageOpts
|
21 | 13 | } from '../types'
|
| 14 | +import { findFolder } from '../utils.js' |
22 | 15 | import { DataProvider } from './data.js'
|
23 | 16 | import { useRouter } from './hooks/index.js'
|
24 | 17 | import { useMDXComponents } from './mdx.js'
|
25 | 18 |
|
26 |
| -function isFolder(value: DynamicMetaItem): value is DynamicFolder { |
27 |
| - return !!value && typeof value === 'object' && value.type === 'folder' |
28 |
| -} |
29 |
| - |
30 |
| -function normalizeMetaData(obj: DynamicMeta): DynamicMeta { |
31 |
| - return Object.fromEntries( |
32 |
| - Object.entries(obj).map(([key, value]) => { |
33 |
| - if (isFolder(value)) { |
34 |
| - const keyWithoutSlash = key.replace('/', '') |
35 |
| - return [ |
36 |
| - keyWithoutSlash, |
37 |
| - value.title || pageTitleFromFilename(keyWithoutSlash) |
38 |
| - ] |
39 |
| - } |
40 |
| - return [key, value || pageTitleFromFilename(key)] |
41 |
| - }) |
42 |
| - ) |
43 |
| -} |
44 |
| - |
45 |
| -export function collectCatchAllRoutes( |
46 |
| - parent: Folder, |
47 |
| - meta: DynamicMetaJsonFile, |
48 |
| - isRootFolder = true |
49 |
| -): Folder { |
50 |
| - if (isRootFolder) { |
51 |
| - const folder = collectCatchAllRoutes(parent, meta, false) |
52 |
| - |
53 |
| - return { |
54 |
| - ...folder, |
55 |
| - children: [{ data: normalizeMetaData(meta.data) }, ...folder.children] |
56 |
| - } |
57 |
| - } |
58 |
| - const result = [] |
59 |
| - |
60 |
| - for (const [key, value] of Object.entries(meta.data)) { |
61 |
| - if (!isFolder(value)) { |
62 |
| - if (key === '*') { |
63 |
| - continue |
64 |
| - } |
65 |
| - result.push({ |
66 |
| - name: key, |
67 |
| - route: normalizePageRoute(parent.route, key) |
68 |
| - }) |
69 |
| - continue |
70 |
| - } |
71 |
| - const routeWithoutSlashes = key.replace('/', '') |
72 |
| - const newParent: Folder = { |
73 |
| - name: routeWithoutSlashes, |
74 |
| - route: `${parent.route}/${routeWithoutSlashes}`, |
75 |
| - children: [{ data: normalizeMetaData(value.items) }] |
76 |
| - } |
77 |
| - newParent.children.push( |
78 |
| - ...collectCatchAllRoutes(newParent, { data: value.items }, false).children |
79 |
| - ) |
80 |
| - result.push(newParent) |
81 |
| - } |
82 |
| - |
83 |
| - return { |
84 |
| - route: parent.route, |
85 |
| - name: parent.name, |
86 |
| - children: result |
87 |
| - } |
88 |
| -} |
89 |
| - |
90 |
| -const cachedResolvedPageMap: Record<string, PageMapItem[]> = Object.create(null) |
91 |
| - |
92 |
| -function findFolder(pageMap: PageMapItem[], [path, ...paths]: string[]): any { |
93 |
| - for (const item of pageMap) { |
94 |
| - if ('children' in item && path === item.name) { |
95 |
| - return paths.length ? findFolder(item.children, paths) : item |
96 |
| - } |
97 |
| - } |
98 |
| -} |
99 |
| - |
100 |
| -export const resolvePageMap = |
101 |
| - (locale: string, dynamicMetaModules: DynamicMetaDescriptor) => async () => { |
102 |
| - const __nextra_internal__ = (globalThis as NextraInternalGlobal)[ |
103 |
| - NEXTRA_INTERNAL |
104 |
| - ] |
105 |
| - if ( |
106 |
| - process.env.NODE_ENV === 'production' && |
107 |
| - cachedResolvedPageMap[locale] |
108 |
| - ) { |
109 |
| - return cachedResolvedPageMap[locale] |
110 |
| - } |
111 |
| - const { pageMap } = locale |
112 |
| - ? Object.entries(__nextra_internal__.context) |
113 |
| - // Fix race condition. Find a better way to get pageMap? |
114 |
| - .find(([route]) => route.startsWith(`/${locale}/`))![1].pageOpts |
115 |
| - : __nextra_internal__ |
116 |
| - const result = await Promise.all( |
117 |
| - Object.entries(dynamicMetaModules).map(async ([route, metaFunction]) => { |
118 |
| - const paths = route.split('/').slice(locale ? 2 : 1) |
119 |
| - const folder = findFolder(pageMap, paths) |
120 |
| - const metaData = await metaFunction() |
121 |
| - return collectCatchAllRoutes(folder, { data: metaData }) |
122 |
| - }) |
123 |
| - ) |
124 |
| - |
125 |
| - return (cachedResolvedPageMap[locale] = result) |
126 |
| - } |
127 |
| - |
128 | 19 | export function HOC_MDXWrapper(
|
129 | 20 | MDXContent: NextraMDXContent,
|
130 | 21 | route: string,
|
|
0 commit comments