-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathindex.js
567 lines (443 loc) · 12.3 KB
/
index.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
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
import './setup-tests.js'
import path from 'path'
import {test} from 'uvu'
import * as assert from 'uvu/assert'
import React from 'react'
import rtl from '@testing-library/react'
import leftPad from 'left-pad'
import {remarkMdxImages} from 'remark-mdx-images'
import {bundleMDX} from '../index.js'
import {getMDXComponent, getMDXExport} from '../client.js'
const {render} = rtl
test('smoke test', async () => {
const mdxSource = `
---
title: Example Post
published: 2021-02-13
description: This is some meta-data
---
# This is the title
import Demo from './demo'
Here's a **neat** demo:
<Demo />
`.trim()
const result = await bundleMDX({
source: mdxSource,
files: {
'./demo.tsx': `
import * as React from 'react'
import leftPad from 'left-pad'
import SubDir from './sub/dir.tsx'
import data from './data.json'
import jsInfo from './js-info.js'
import JsxComp from './jsx-comp.jsx'
import MdxComp from './mdx-comp.mdx'
function Demo() {
return (
<div>
{leftPad("Neat demo!", 12, '!')}
<SubDir>Sub dir!</SubDir>
<p>JSON: {data.package}</p>
<div>{jsInfo}</div>
<JsxComp />
<MdxComp />
</div>
)
}
export default Demo
`.trim(),
'./sub/dir.tsx': `
import * as React from 'react'
export default ({children}) => <div className="sub-dir">{children}</div>
`.trim(),
'./js-info.js': 'export default "this is js info"',
'./jsx-comp.jsx': 'export default () => <div>jsx comp</div>',
'./mdx-comp.mdx': `
---
title: This is frontmatter
---
# Frontmatter title: {frontmatter.title}
`.trim(),
'./data.json': `{"package": "mdx-bundler"}`,
},
globals: {'left-pad': 'myLeftPad'},
})
const frontmatter =
/** @type { title: string, description: string, published: string } */ result.frontmatter
/**
* This creates a custom left pad which uses a different filler character to the one supplied.
* If it is not substituted the original will be used and we will get "!" instead of "$"
*
* @param {string} string
* @param {number} length
* @returns {string}
*/
const myLeftPad = (string, length) => {
return leftPad(string, length, '$')
}
const Component = getMDXComponent(result.code, {myLeftPad})
/** @param {React.HTMLAttributes<HTMLSpanElement>} props */
const SpanBold = props => React.createElement('span', props)
assert.equal(frontmatter, {
title: 'Example Post',
published: new Date('2021-02-13'),
description: 'This is some meta-data',
})
const {container} = render(
React.createElement(Component, {components: {strong: SpanBold}}),
)
assert.equal(
container.innerHTML,
`<h1>This is the title</h1>
<p>Here's a <span>neat</span> demo:</p>
<div>$$Neat demo!<div class="sub-dir">Sub dir!</div><p>JSON: mdx-bundler</p><div>this is js info</div><div>jsx comp</div><h1>Frontmatter title: This is frontmatter</h1></div>`,
)
})
test('bundles 3rd party deps', async () => {
const mdxSource = `
import Demo from './demo'
<Demo />
`.trim()
const result = await bundleMDX({
source: mdxSource,
files: {
'./demo.tsx': `
import leftPad from 'left-pad'
export default () => leftPad("Neat demo!", 12, '!')
`.trim(),
},
})
// this test ensures that *not* passing leftPad as a global here
// will work because I didn't externalize the left-pad module
const Component = getMDXComponent(result.code)
render(React.createElement(Component))
})
test('gives a handy error when the entry imports a module that cannot be found', async () => {
const mdxSource = `
import Demo from './demo'
<Demo />
`.trim()
const error = /** @type Error */ (
await bundleMDX({
source: mdxSource,
files: {},
}).catch(e => e)
)
assert.match(error.message, `ERROR: Could not resolve "./demo"`)
})
test('gives a handy error when importing a module that cannot be found', async () => {
const mdxSource = `
import Demo from './demo'
<Demo />
`.trim()
const error = /** @type Error */ (
await bundleMDX({
source: mdxSource,
files: {
'./demo.tsx': `import './blah-blah'`,
},
}).catch(e => e)
)
assert.equal(
error.message,
`Build failed with 1 error:
demo.tsx:1:7: ERROR: Could not resolve "./blah-blah"`,
)
})
test('gives a handy error when a file of an unsupported type is provided', async () => {
const mdxSource = `
import Demo from './demo.blah'
<Demo />
`.trim()
const error = /** @type Error */ (
await bundleMDX({
source: mdxSource,
files: {
'./demo.blah': `what even is this?`,
},
}).catch(e => e)
)
assert.match(
error.message,
`ERROR: [plugin: inMemory] Invalid loader value: "blah"`,
)
})
test('files is optional', async () => {
await bundleMDX({source: 'hello'})
})
test('uses the typescript loader where needed', async () => {
const mdxSource = `
import Demo from './demo'
<Demo />
`.trim()
const {code} = await bundleMDX({
source: mdxSource,
files: {
'./demo.tsx': `
import * as React from 'react'
import {left} from './left'
const Demo: React.FC = () => {
return <p>{left("TypeScript")}</p>
}
export default Demo
`.trim(),
'./left.ts': `
import leftPad from 'left-pad'
export const left = (s: string): string => {
return leftPad(s, 12, '!')
}
`.trim(),
},
})
const Component = getMDXComponent(code)
const {container} = render(React.createElement(Component))
assert.match(container.innerHTML, '!!TypeScript')
})
test('can specify "node_modules" in the files', async () => {
const mdxSource = `
import LeftPad from 'left-pad-js'
<LeftPad padding={4} string="^">Hi</LeftPad>
`.trim()
const {code} = await bundleMDX({
source: mdxSource,
files: {
'left-pad-js': `export default () => <div>this is left pad</div>`,
},
})
const Component = getMDXComponent(code)
const {container} = render(React.createElement(Component))
assert.match(container.innerHTML, 'this is left pad')
})
test('should respect the configured loader for files', async () => {
const mdxSource = `
# Title
import {Demo} from './demo'
<Demo />
`.trim()
const files = {
'./demo.ts': `
import React from 'react'
export const Demo: React.FC = () => {
return <p>Sample</p>
}
`.trim(),
}
const {code} = await bundleMDX({
source: mdxSource,
files,
esbuildOptions: options => {
options.loader = {
...options.loader,
'.ts': 'tsx',
}
return options
},
})
const Component = getMDXComponent(code)
const {container} = render(React.createElement(Component))
assert.match(container.innerHTML, 'Sample')
})
test('require from current directory', async () => {
const mdxSource = `
# Title
import {Sample} from './sample-component'
<Sample />

`.trim()
const {code} = await bundleMDX({
source: mdxSource,
cwd: path.join(process.cwd(), 'other'),
xdmOptions: options => {
options.remarkPlugins = [remarkMdxImages]
return options
},
esbuildOptions: options => {
options.loader = {
...options.loader,
'.png': 'dataurl',
}
return options
},
})
const Component = getMDXComponent(code)
const {container} = render(React.createElement(Component))
assert.match(container.innerHTML, 'Sample!')
// Test that the React components image is imported correctly.
assert.match(container.innerHTML, 'img src="data:image/png')
// Test that the markdowns image is imported correctly.
assert.match(
container.innerHTML,
'img alt="A Sample Image" src="data:image/png',
)
})
test('should output assets', async () => {
const mdxSource = `
# Sample Post

`.trim()
const {code} = await bundleMDX({
source: mdxSource,
cwd: path.join(process.cwd(), 'other'),
bundleDirectory: path.join(process.cwd(), 'output'),
bundlePath: '/img/',
xdmOptions: options => {
options.remarkPlugins = [remarkMdxImages]
return options
},
esbuildOptions: options => {
options.loader = {
...options.loader,
'.png': 'file',
}
return options
},
})
const Component = getMDXComponent(code)
const {container} = render(React.createElement(Component))
assert.match(container.innerHTML, 'src="/img/150')
const writeError = /** @type Error */ (
await bundleMDX({
source: mdxSource,
cwd: path.join(process.cwd(), 'other'),
xdmOptions: options => {
options.remarkPlugins = [remarkMdxImages]
return options
},
esbuildOptions: options => {
options.loader = {
...options.loader,
// esbuild will throw its own error if we try to use `file` loader without `outdir`
'.png': 'dataurl',
}
options.write = true
return options
},
}).catch(e => e)
)
assert.equal(
writeError.message,
"You must either specify `write: false` or `write: true` and `outdir: '/path'` in your esbuild options",
)
const optionError = /** @type Error */ (
await bundleMDX({
source: mdxSource,
cwd: path.join(process.cwd(), 'other'),
bundleDirectory: path.join(process.cwd(), 'output'),
}).catch(e => e)
)
assert.equal(
optionError.message,
'When using `bundleDirectory` or `bundlePath` the other must be set.',
)
})
test('should support importing named exports', async () => {
const mdxSource = `
---
title: Example Post
published: 2021-02-13
description: This is some meta-data
---
export const uncle = 'Bob'
# {uncle} was indeed the uncle
`.trim()
const result = await bundleMDX({source: mdxSource})
/** @type {import('../types').MDXExport<{uncle: string}, {title: string, published: Date, description: string}>} */
const mdxExport = getMDXExport(result.code)
// remark-mdx-frontmatter exports frontmatter
assert.equal(mdxExport.frontmatter, {
title: 'Example Post',
published: new Date('2021-02-13'),
description: 'This is some meta-data',
})
assert.equal(mdxExport.uncle, 'Bob')
const {container} = render(React.createElement(mdxExport.default))
assert.equal(container.innerHTML, `<h1>Bob was indeed the uncle</h1>`)
})
test('should support mdx from node_modules', async () => {
const mdxSource = `
import MdxData from 'mdx-test-data'
Local Content
<MdxData />
`.trim()
const {code} = await bundleMDX({source: mdxSource})
const Component = getMDXComponent(code)
const {container} = render(React.createElement(Component))
assert.match(
container.innerHTML,
'Mdx file published as an npm package, for testing purposes.',
)
})
test('should work with react-dom api', async () => {
const mdxSource = `
import Demo from './demo'
<Demo />
`.trim()
const result = await bundleMDX({
source: mdxSource,
files: {
'./demo.tsx': `
import * as ReactDOM from 'react-dom'
function Demo() {
return ReactDOM.createPortal(
<div>Portal!</div>,
document.body
)
}
export default Demo
`.trim(),
},
})
const Component = getMDXComponent(result.code)
const {container} = render(React.createElement(Component), {
container: document.body,
})
assert.match(container.innerHTML, 'Portal!')
})
test('should allow gray matter options to be accessed', async () => {
const mdxSource = `
---
title: Sample
date: 2021-07-27
---
Some excerpt
---
This is the rest of the content
`.trim()
const {matter} = await bundleMDX({
source: mdxSource,
grayMatterOptions: options => {
options.excerpt = true
return options
},
})
assert.equal((matter.excerpt ? matter.excerpt : '').trim(), 'Some excerpt')
})
test('specify a file using bundleMDX', async () => {
const {frontmatter} = await bundleMDX({
file: path.join(process.cwd(), 'other', 'sample.mdx'),
cwd: path.join(process.cwd(), 'other'),
esbuildOptions: options => {
options.loader = {
...options.loader,
'.png': 'dataurl',
}
return options
},
})
assert.equal(frontmatter.title, 'Sample')
})
test('let you use the front matter in config', async () => {
await bundleMDX({
file: path.join(process.cwd(), 'other', 'sample.mdx'),
cwd: path.join(process.cwd(), 'other'),
esbuildOptions: (options, frontmatter) => {
assert.equal(frontmatter.title, 'Sample')
options.loader = {
...options.loader,
'.png': 'dataurl',
}
return options
},
})
})
test.run()