-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsidebars.js
More file actions
175 lines (152 loc) · 5.12 KB
/
Copy pathsidebars.js
File metadata and controls
175 lines (152 loc) · 5.12 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
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
// Sections whose items are unwrapped/hoisted from their parent category into the section directly
const CHILD_UNWRAP_SECTIONS = new Set(['Signals', 'Components'])
// Sections that start in a collapsed state
const COLLAPSED_BY_DEFAULT_SECTIONS = new Set(['Components'])
const swap = (allItems, linkItems, descriptions) => {
return allItems.flatMap((item) => {
// Preserve header property for later section wrapping (don't create HTML here)
const className =
[
item.className,
item.customProps?.hidden ? 'hidden' : '',
item.customProps?.space_above ? 'space-above' : '',
]
.filter(Boolean)
.join(' ') || undefined
if (item.type === 'category') {
// a workaround for category pages not picking up the description in index.md
// see https://docusaurus.io/feature-requests/p/allow-customizing-category-description-in-generated-index-cards
const customProps = descriptions[item.link?.id]
? { ...item.customProps, description: descriptions[item.link.id] }
: item.customProps
if (item.items.length > 0)
return [
{
...item,
className,
customProps,
items: swap(item.items, linkItems, descriptions),
},
]
// a workaround for empty category pages not respecting className
// see https://discord.com/channels/398180168688074762/867060369087922187/1068508121091293264
return [
{
type: 'doc',
id: item.link.id,
label: item.label,
className,
customProps,
},
]
}
if (linkItems[item.id]) {
return [
{
type: 'link',
label: linkItems[item.id].sidebar_label ?? linkItems[item.id].title,
href: linkItems[item.id].href,
className,
customProps: linkItems[item.id].sidebar_custom_props,
},
]
}
return [{ ...item, className }]
})
}
/** @param {string} label @param {any} link @param {any[]} items */
const buildSection = (label, link, items) => ({
type: 'category',
label,
collapsible: true,
collapsed: COLLAPSED_BY_DEFAULT_SECTIONS.has(label),
className: 'section-header',
link,
items,
})
// Wrap items into collapsible sections based on header markers in customProps
/** @param {any[]} items */
const wrapInSections = (items) => {
const result = []
let currentSection = null
let sectionItems = []
let sectionLink = null
for (const item of items) {
const header = item.customProps?.header
if (header) {
// Close previous section if exists
if (currentSection) {
result.push(buildSection(currentSection, sectionLink, sectionItems))
}
// Start new section
currentSection = header
sectionLink =
item.link || (item.type === 'doc' ? { type: 'doc', id: item.id } : null)
// Add the item itself (without the header prop to avoid recursion issues)
const { header: _, ...restCustomProps } = item.customProps || {}
const itemWithoutHeader = {
...item,
customProps:
Object.keys(restCustomProps).length > 0 ? restCustomProps : undefined,
}
if (
CHILD_UNWRAP_SECTIONS.has(header) &&
itemWithoutHeader.type === 'category' &&
itemWithoutHeader.items?.length
) {
sectionItems = itemWithoutHeader.items.map((child) => ({
...child,
className: [child.className, 'section-child']
.filter(Boolean)
.join(' '),
}))
} else {
sectionItems = [itemWithoutHeader]
}
} else if (currentSection) {
// Add to current section
sectionItems.push(item)
} else {
// No section yet, add directly to result
result.push(item)
}
}
// Close last section
if (currentSection && sectionItems.length > 0) {
result.push(buildSection(currentSection, sectionLink, sectionItems))
}
return result
}
// Switch out doc items for external links where required
const swapDocItemsToLinkItems = (generatedDocs, originalDocs) => {
const linkItems = {}
const descriptions = {}
for (const docItem of originalDocs) {
if (docItem.frontMatter.description) {
descriptions[docItem.id] = docItem.frontMatter.description
}
if (docItem.frontMatter.type === 'link') {
// Mutate the original frontMatter so useDoc() picks up noindex at render time.
// This is intentional — the spread into linkItems below copies the updated reference.
docItem.frontMatter.sidebar_custom_props = {
...(docItem.frontMatter.sidebar_custom_props || {}),
noindex: true,
}
linkItems[docItem.id] = {
...docItem.frontMatter,
}
}
}
const swapped = swap(generatedDocs, linkItems, descriptions)
return wrapInSections(swapped)
}
module.exports = { swapDocItemsToLinkItems }