-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
mdx-config.js
290 lines (257 loc) · 10 KB
/
mdx-config.js
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
/**
* @typedef {import('estree-jsx').Program} Program
* @typedef {import('hast').Root} Root
* @typedef {import('hast').Text} Text
* @typedef {import('hast').Content} Content
* @typedef {Root|Content} Node
*/
import path from 'path'
import process from 'process'
import {pathToFileURL} from 'url'
import remarkFrontmatter from 'remark-frontmatter'
import remarkGfm from 'remark-gfm'
import remarkGithub from 'remark-github'
import remarkGemoji from 'remark-gemoji'
import remarkStripBadges from 'remark-strip-badges'
import remarkSqueezeParagraphs from 'remark-squeeze-paragraphs'
import remarkToc from 'remark-toc'
import remarkMdxFrontmatter from 'remark-mdx-frontmatter'
import rehypeHighlight from 'rehype-highlight'
import rehypeAutolinkHeadings from 'rehype-autolink-headings'
import rehypeInferDescriptionMeta from 'rehype-infer-description-meta'
import rehypeInferReadingTimeMeta from 'rehype-infer-reading-time-meta'
import rehypeInferTitleMeta from 'rehype-infer-title-meta'
import rehypeSlug from 'rehype-slug'
import rehypeShiftHeading from 'rehype-shift-heading'
import rehypePresetMinify from 'rehype-preset-minify'
import rehypeRaw from 'rehype-raw'
import rehypeMinifyUrl from 'rehype-minify-url'
import {visit} from 'unist-util-visit'
import {toText} from 'hast-util-to-text'
import {h, s} from 'hastscript'
import {analyze} from 'periscopic'
import {valueToEstree} from 'estree-util-value-to-estree'
import {nodeTypes} from '@mdx-js/mdx'
import {config} from '../docs/_config.js'
const own = {}.hasOwnProperty
const reactUrl = pathToFileURL(
path.resolve(process.cwd(), 'node_modules', 'react')
)
const options = {
remarkPlugins: [
remarkGfm,
remarkGithub,
remarkGemoji,
remarkFrontmatter,
remarkStripBadges,
remarkSqueezeParagraphs,
[remarkMdxFrontmatter, {name: 'matter'}],
[
remarkToc,
{
maxDepth: 3,
tight: true,
heading: 'contents|toc|table[ -]of[ -]contents?'
}
]
],
rehypePlugins: [
rehypePrettyCodeBlocks,
[rehypeRaw, {passThrough: nodeTypes}],
unifiedInferRemoteMeta,
[
rehypeInferDescriptionMeta,
{inferDescriptionHast: true, truncateSize: 280}
],
rehypeInferReadingTimeMeta,
rehypeInferTitleMeta,
[rehypeShiftHeading, {shift: 1}],
rehypeSlug,
[
rehypeAutolinkHeadings,
{
behavior: 'prepend',
properties: {ariaLabel: 'Link to this section', className: ['anchor']},
content: link()
}
],
[
rehypeHighlight,
{
subset: false,
aliases: {markdown: 'mdx'}
}
],
// Minify things — mostly needed so `prerender` can also minify.
rehypePresetMinify,
[rehypeMinifyUrl, {ignoreMissingSource: true}]
],
recmaPlugins: [recmaInjectMeta],
jsxImportSource: reactUrl.href
}
export default options
function link() {
return s(
'svg.icon',
{
ariaHidden: 'true',
viewBox: [0, 0, 16, 16],
focusable: false,
width: 18,
height: 18
},
s('path', {
fill: 'currentcolor',
d: 'M7.775 3.275C7.64252 3.41717 7.57039 3.60522 7.57382 3.79952C7.57725 3.99382 7.65596 4.1792 7.79337 4.31662C7.93079 4.45403 8.11617 4.53274 8.31047 4.53617C8.50477 4.5396 8.69282 4.46748 8.835 4.335L10.085 3.085C10.2708 2.89918 10.4914 2.75177 10.7342 2.65121C10.977 2.55064 11.2372 2.49888 11.5 2.49888C11.7628 2.49888 12.023 2.55064 12.2658 2.65121C12.5086 2.75177 12.7292 2.89918 12.915 3.085C13.1008 3.27082 13.2482 3.49142 13.3488 3.7342C13.4493 3.97699 13.5011 4.23721 13.5011 4.5C13.5011 4.76279 13.4493 5.023 13.3488 5.26579C13.2482 5.50857 13.1008 5.72917 12.915 5.915L10.415 8.415C10.2292 8.60095 10.0087 8.74847 9.76588 8.84911C9.52308 8.94976 9.26283 9.00157 9 9.00157C8.73716 9.00157 8.47691 8.94976 8.23411 8.84911C7.99132 8.74847 7.77074 8.60095 7.585 8.415C7.44282 8.28252 7.25477 8.21039 7.06047 8.21382C6.86617 8.21725 6.68079 8.29596 6.54337 8.43337C6.40596 8.57079 6.32725 8.75617 6.32382 8.95047C6.32039 9.14477 6.39252 9.33282 6.525 9.475C6.85001 9.80004 7.23586 10.0579 7.66052 10.2338C8.08518 10.4097 8.54034 10.5002 9 10.5002C9.45965 10.5002 9.91481 10.4097 10.3395 10.2338C10.7641 10.0579 11.15 9.80004 11.475 9.475L13.975 6.975C14.6314 6.31858 15.0002 5.4283 15.0002 4.5C15.0002 3.57169 14.6314 2.68141 13.975 2.025C13.3186 1.36858 12.4283 0.999817 11.5 0.999817C10.5717 0.999817 9.68141 1.36858 9.02499 2.025L7.775 3.275ZM3.085 12.915C2.89904 12.7292 2.75152 12.5087 2.65088 12.2659C2.55023 12.0231 2.49842 11.7628 2.49842 11.5C2.49842 11.2372 2.55023 10.9769 2.65088 10.7341C2.75152 10.4913 2.89904 10.2707 3.085 10.085L5.585 7.585C5.77074 7.39904 5.99132 7.25152 6.23411 7.15088C6.47691 7.05023 6.73716 6.99842 7 6.99842C7.26283 6.99842 7.52308 7.05023 7.76588 7.15088C8.00867 7.25152 8.22925 7.39904 8.415 7.585C8.55717 7.71748 8.74522 7.7896 8.93952 7.78617C9.13382 7.78274 9.3192 7.70403 9.45662 7.56662C9.59403 7.4292 9.67274 7.24382 9.67617 7.04952C9.6796 6.85522 9.60748 6.66717 9.475 6.525C9.14999 6.19995 8.76413 5.94211 8.33947 5.7662C7.91481 5.59029 7.45965 5.49974 7 5.49974C6.54034 5.49974 6.08518 5.59029 5.66052 5.7662C5.23586 5.94211 4.85001 6.19995 4.525 6.525L2.025 9.02499C1.36858 9.68141 0.999817 10.5717 0.999817 11.5C0.999817 12.4283 1.36858 13.3186 2.025 13.975C2.68141 14.6314 3.57169 15.0002 4.5 15.0002C5.4283 15.0002 6.31858 14.6314 6.975 13.975L8.225 12.725C8.35748 12.5828 8.4296 12.3948 8.42617 12.2005C8.42274 12.0062 8.34403 11.8208 8.20662 11.6834C8.0692 11.546 7.88382 11.4672 7.68952 11.4638C7.49522 11.4604 7.30717 11.5325 7.165 11.665L5.915 12.915C5.72925 13.1009 5.50867 13.2485 5.26588 13.3491C5.02308 13.4498 4.76283 13.5016 4.5 13.5016C4.23716 13.5016 3.97691 13.4498 3.73411 13.3491C3.49132 13.2485 3.27074 13.1009 3.085 12.915Z'
})
)
}
function unifiedInferRemoteMeta() {
return (_, file) => {
const meta = /** @type {Record<string, unknown>} */ (
file.data.meta || (file.data.meta = {})
)
const fileUrl = pathToFileURL(file.path)
const parts = fileUrl.href.slice(config.git.href.length - 1).split('/')
let fp
if (parts[1] === 'docs') {
fp = ('/' + parts.slice(2).join('/'))
.replace(/\.server\.mdx$/, '/')
.replace(/\/index\/$/, '/')
} else {
// Symlinks, which we have to hack around.
if (parts[1] !== 'packages' || parts[parts.length - 1] !== 'readme.md') {
throw new Error(
'Expected symlinked file to match `/packages/*/readme.md`'
)
}
fp = parts.slice(0, -1).join('/') + '/'
}
const url = new URL(fp, config.site)
meta.origin = url.origin
meta.pathname = url.pathname
}
}
function recmaInjectMeta(options = {}) {
const {include, exclude} = options
return (tree, file) => {
// Find everything that’s defined in the top-level scope.
const topScope = analyze(tree).scope.declarations
// Exit if `meta` is already defined.
if (topScope.has('meta')) return
const meta = /** @type {Record<string, unknown>} */ (file.data.meta || {})
/** @type {Record<string, unknown>} */
const value = {}
/** @type {string} */
let key
for (key in meta) {
if (
own.call(meta, key) &&
(!exclude || !exclude.includes(key)) &&
(!include || include.includes(key))
) {
value[key] = meta[key]
}
}
tree.body.unshift({
type: 'ExportNamedDeclaration',
declaration: {
type: 'VariableDeclaration',
kind: 'const',
declarations: [
{
type: 'VariableDeclarator',
id: {type: 'Identifier', name: 'meta'},
init: valueToEstree(value, {instanceAsObject: true})
}
]
},
source: null,
specifiers: []
})
}
}
function rehypePrettyCodeBlocks() {
const re = /\b([-\w]+)(?:=(?:"([^"]*)"|'([^']*)'|([^"'\s]+)))?/g
const languageNames = {
diff: 'Diff',
html: 'HTML',
js: 'JavaScript',
jsx: 'JSX',
md: 'Markdown',
mdx: 'MDX',
sh: 'Shell',
txt: 'Plain text',
ts: 'TypeScript'
}
return (tree) => {
visit(tree, 'element', (node, index, parent) => {
if (node.tagName !== 'pre') {
return
}
const code = node.children[0]
if (
!code ||
code.type !== 'element' ||
code.tagName !== 'code' ||
node.children.length > 1
) {
return
}
const metaProps = {}
if (code.data && code.data.meta) {
let match
re.lastIndex = 0 // Reset regex.
while ((match = re.exec(code.data.meta))) {
metaProps[match[1]] = match[2] || match[3] || match[4] || ''
}
}
if (metaProps.chrome === 'no') {
return
}
const children = [node]
const className = (code.properties && code.properties.className) || []
const textContent = toText(node)
const lang = className.find((value) => value.slice(0, 9) === 'language-')
const header = []
const footer = []
const language = metaProps.language || (lang ? lang.slice(9) : undefined)
if (metaProps.path) {
header.push(
h('span.frame-tab-item.frame-tab-item-selected', metaProps.path)
)
} else if (language) {
if (!own.call(languageNames, language)) {
console.log(
'[mdx-config]: warn: please add %s to have a nice language name',
language
)
}
header.push(
h(
'span.frame-tab-item.frame-tab-item-language.frame-tab-item-inactive',
languageNames[language] || language
)
)
}
// Not giant.
if (textContent.length < 8192 && metaProps.copy !== 'no') {
footer.push({
type: 'mdxJsxTextElement',
name: 'CopyButton',
attributes: [
{type: 'mdxJsxAttribute', name: 'value', value: textContent}
],
children: []
})
}
if (header) {
children.unshift(h('.frame-tab-bar.frame-tab-bar-scroll', header))
}
if (footer) {
children.push(...footer)
}
parent.children[index] = h('.frame.code-frame', children)
})
}
}