-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwalk.ts
More file actions
396 lines (359 loc) · 10.7 KB
/
walk.ts
File metadata and controls
396 lines (359 loc) · 10.7 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
import fs from 'node:fs/promises'
import path from 'node:path'
import {
isExternalUrl,
type NavItem,
removeLeadingSlash,
removeTrailingSlash,
type SidebarDivider,
type SidebarGroup,
type SidebarItem,
type SidebarSectionHeader,
slash,
withBase,
} from '@rspress/shared'
import { unset } from 'es-toolkit/compat'
import picomatch from 'picomatch'
import { logger } from 'rspress/core'
import { pathExists, readJson } from '../../utils/index.js'
import type { SideMeta } from './type.js'
import { detectFilePath, extractInfoFromFrontmatter } from './utils.js'
export interface DoomSidebarItem extends SidebarItem {
weight?: number
}
export type DoomSidebar =
| DoomSidebarGroup
| DoomSidebarItem
| SidebarDivider
| SidebarSectionHeader
export interface DoomSidebarGroup extends Omit<SidebarGroup, 'items'> {
items: DoomSidebar[]
weight?: number
}
const sidebarSorter = (a: DoomSidebar, b: DoomSidebar) => {
const aWeight = 'weight' in a && a.weight != null ? a.weight : 100
const bWeight = 'weight' in b && b.weight != null ? b.weight : 100
return aWeight - bWeight
}
const isExcluded = (
onlyIncludeRoutes: string[],
excludeRoutes: string[],
fileKey: string,
) => {
const included =
!onlyIncludeRoutes.length ||
onlyIncludeRoutes.some((glob) => picomatch.isMatch(fileKey, glob))
return (
!included || excludeRoutes.some((glob) => picomatch.isMatch(fileKey, glob))
)
}
/**
* 1. Split sideMeta into two parts: `index` and `others` and sort `others` by weight
* 2. filter only include routes if `onlyIncludeRoutes` is not empty
* 3. filter out `excludeRoutes`
*/
const processSideMeta = (
sideMeta: Array<DoomSidebar | undefined>,
extensions: string[],
onlyIncludeRoutes: string[],
excludeRoutes: string[],
) => {
const result = sideMeta.reduce<{
index?: DoomSidebarItem
others: DoomSidebar[]
}>(
(acc, curr) => {
if (!curr) {
return acc
}
if (!('_fileKey' in curr) || !curr._fileKey || 'items' in curr) {
acc.others.push(curr)
return acc
}
const excluded = isExcluded(
onlyIncludeRoutes,
excludeRoutes,
curr._fileKey,
)
let filePart: string | undefined
if (
(filePart = curr._fileKey.split(/[\\/]/).at(-1)) &&
extensions.some((ext) => filePart === `index${ext}`)
) {
if (acc.index?._fileKey) {
// zh/development/component-quickstart/index.md vs zh/development/index.mdx
const relative = path.relative(
path.dirname(acc.index._fileKey),
path.dirname(curr._fileKey),
)
if (relative === '..' || /[\\/]\.\.$/.test(relative)) {
acc.others.unshift(acc.index)
acc.index = curr
} else {
acc.others.push(curr)
}
} else {
acc.index = curr
}
if (excluded) {
if (acc.index === curr) {
curr.link = ''
if (acc.others.length === 0) {
acc.index = undefined
}
} else {
const index = acc.others.indexOf(curr)
if (index > -1) {
acc.others.splice(index, 1)
}
}
}
} else if (!excluded) {
acc.others.push(curr)
}
return acc
},
{ others: [] },
)
result.others.sort(sidebarSorter)
return result
}
export async function scanSideMeta(
workDir: string,
rootDir: string,
docsDir: string,
routePrefix: string,
extensions: string[],
ignoredDirs: string[],
onlyIncludeRoutes: string[],
excludeRoutes: string[],
) {
if (!(await pathExists(workDir))) {
logger.error(
'[plugin-auto-sidebar]',
`Generate sidebar meta error: ${workDir} not exists`,
)
}
const addRoutePrefix = (link: string) =>
`${routePrefix}${removeLeadingSlash(link)}`
// find the `_meta.json` file
const metaFile = path.resolve(workDir, '_meta.json')
// Fix the windows path
const relativePath = slash(path.relative(rootDir, workDir))
let sideMeta: SideMeta | undefined
// Get the sidebar config from the `_meta.json` file
try {
// Don't use require to avoid require cache, which make hmr not work.
sideMeta = await readJson<SideMeta>(metaFile)
} catch {
// If the `_meta.json` file doesn't exist, we will generate the sidebar config from the directory structure.
let subItems = await fs.readdir(workDir)
// If there exists a file with the same name of the directory folder
// we don't need to generate SideMeta for this single file
subItems = subItems.filter((item) => {
const hasExtension = extensions.some((ext) => item.endsWith(ext))
const hasSameBaseName = subItems.some((elem) => {
const baseName = elem.replace(/\.[^/.]+$/, '')
return baseName === item.replace(/\.[^/.]+$/, '') && elem !== item
})
return !(hasExtension && hasSameBaseName)
})
sideMeta = (
await Promise.all(
subItems.map(async (item) => {
// Fix https://github.com/web-infra-dev/rspress/issues/346
if (item === '_meta.json') {
return null
}
const stat = await fs.stat(path.join(workDir, item))
// If the item is a directory, we will transform it to a object with `type` and `name` property.
if (stat.isDirectory()) {
if (ignoredDirs.includes(item)) {
return null
}
// set H1 title to sidebar label when have same name md/mdx file
const mdFilePath = path.join(workDir, `${item}.md`)
const mdxFilePath = path.join(workDir, `${item}.mdx`)
let label = item
const setLabelFromFilePath = async (filePath: string) => {
const { title } = await extractInfoFromFrontmatter(
filePath,
rootDir,
extensions,
)
label = title
}
if (await pathExists(mdxFilePath)) {
await setLabelFromFilePath(mdxFilePath)
} else if (await pathExists(mdFilePath)) {
await setLabelFromFilePath(mdFilePath)
}
return {
type: 'dir',
name: item,
label,
}
}
return extensions.some((ext) => item.endsWith(ext)) ? item : null
}),
)
).filter(Boolean) as SideMeta
}
const sidebarFromMeta: Array<DoomSidebar | undefined> = await Promise.all(
sideMeta.map(async (metaItem) => {
if (typeof metaItem === 'string') {
const { title, overviewHeaders, context, weight } =
await extractInfoFromFrontmatter(
path.resolve(workDir, metaItem),
rootDir,
extensions,
)
const pureLink = `${relativePath}/${metaItem.replace(/\.mdx?$/, '')}`
return {
text: title,
link: addRoutePrefix(pureLink),
overviewHeaders,
context,
weight,
_fileKey: path.relative(docsDir, path.join(workDir, metaItem)),
}
}
const {
type = 'file',
name,
label = '',
collapsible,
collapsed = true,
link,
tag,
dashed,
overviewHeaders,
context,
} = metaItem
// when type is divider, name maybe undefined, and link is not used
const pureLink = `${relativePath}/${name.replace(/\.mdx?$/, '')}`
if (type === 'file') {
const info = await extractInfoFromFrontmatter(
path.resolve(workDir, name),
rootDir,
extensions,
)
const title = label || info.title
const realPath = info.realPath
return {
text: title,
link: addRoutePrefix(pureLink),
tag,
overviewHeaders: info.overviewHeaders
? info.overviewHeaders
: overviewHeaders,
context: info.context ? info.context : context,
weight: info.weight,
_fileKey: realPath ? path.relative(docsDir, realPath) : '',
}
}
if (type === 'dir') {
const subDir = path.resolve(workDir, name)
const { index, others: subSidebar } = await scanSideMeta(
subDir,
rootDir,
docsDir,
routePrefix,
extensions,
['assets'],
onlyIncludeRoutes,
excludeRoutes,
)
const realPath = await detectFilePath(subDir, extensions)
const group = {
text: label,
collapsible,
collapsed,
items: subSidebar,
link: realPath ? addRoutePrefix(pureLink) : '',
tag,
overviewHeaders,
context,
_fileKey: realPath ? path.relative(docsDir, realPath) : '',
}
const sidebarItem = index ? { ...group, ...index } : group
if (!subSidebar.length) {
if (index) {
unset(sidebarItem, 'items')
return sidebarItem
}
return
}
return sidebarItem
}
if (type === 'divider') {
return {
dividerType: dashed ? 'dashed' : 'solid',
}
}
if (type === 'section-header') {
return {
sectionHeaderText: label,
tag,
}
}
return {
text: label,
link: isExternalUrl(link) ? link! : withBase(link!, routePrefix),
tag,
}
}),
)
return processSideMeta(
sidebarFromMeta,
extensions,
onlyIncludeRoutes,
excludeRoutes,
)
}
// Start walking from the doc directory, scan the `_meta.json` file in each subdirectory
// and generate the nav and sidebar config
export async function walk(
workDir: string,
routePrefix = '/',
docsDir: string,
extensions: string[],
onlyIncludeRoutes: string[] = [],
excludeRoutes: string[] = [],
collapsed?: boolean,
) {
const { index, others } = await scanSideMeta(
workDir,
workDir,
docsDir,
routePrefix,
extensions,
['assets', 'public', 'shared'],
onlyIncludeRoutes,
excludeRoutes,
)
const isIndexExcluded =
!!index?._fileKey &&
isExcluded(onlyIncludeRoutes, excludeRoutes, index._fileKey)
const sidebars = index && !isIndexExcluded ? [index, ...others] : others
if (collapsed != null) {
for (const sidebarItem of sidebars) {
if ('items' in sidebarItem && sidebarItem.items.length) {
sidebarItem.collapsed = collapsed
}
}
}
// Every sub dir will represent a group of sidebar
const sidebarConfig = {
[routePrefix]: sidebars,
}
const simpleRoutePrefix = removeTrailingSlash(routePrefix)
if (simpleRoutePrefix) {
sidebarConfig[simpleRoutePrefix] = sidebars
}
const nav: NavItem[] = []
return {
nav,
sidebar: sidebarConfig,
}
}