17
17
* @property {false } ok
18
18
* @property {Error } value
19
19
*
20
- * @typedef {EvalOk | EvalNok } EvalResult
20
+ * @typedef {EvalNok | EvalOk } EvalResult
21
21
*/
22
22
23
23
import { compile , nodeTypes , run } from '@mdx-js/mdx'
@@ -105,18 +105,22 @@ function init(main) {
105
105
}
106
106
107
107
function Playground ( ) {
108
- const [ value , setValue ] = useState ( sample )
109
108
const [ directive , setDirective ] = useState ( false )
109
+ const [ evalResult , setEvalResult ] = useState (
110
+ /** @type {unknown } */ ( undefined )
111
+ )
112
+ const [ development , setDevelopment ] = useState ( false )
110
113
const [ frontmatter , setFrontmatter ] = useState ( false )
111
114
const [ gfm , setGfm ] = useState ( false )
112
- const [ markdown , setMarkdown ] = useState ( false )
115
+ const [ formatMarkdown , setFormatMarkdown ] = useState ( false )
116
+ const [ jsx , setJsx ] = useState ( false )
113
117
const [ math , setMath ] = useState ( false )
114
- const [ raw , setRaw ] = useState ( false )
118
+ const [ outputFormatFunctionBody , setOutputFormatFunctionBody ] =
119
+ useState ( false )
115
120
const [ positions , setPositions ] = useState ( false )
116
- const [ output , setOutput ] = useState ( 'result' )
117
- const [ evalResult , setEvalResult ] = useState (
118
- /** @type {unknown } */ ( undefined )
119
- )
121
+ const [ raw , setRaw ] = useState ( false )
122
+ const [ show , setShow ] = useState ( 'result' )
123
+ const [ value , setValue ] = useState ( sample )
120
124
121
125
useEffect (
122
126
function ( ) {
@@ -147,25 +151,30 @@ function Playground() {
147
151
if ( raw ) rehypePlugins . unshift ( [ rehypeRaw , { passThrough : nodeTypes } ] )
148
152
149
153
const file = new VFile ( {
150
- basename : markdown ? 'example.md' : 'example.mdx' ,
154
+ basename : formatMarkdown ? 'example.md' : 'example.mdx' ,
151
155
value
152
156
} )
153
157
154
- if ( output === 'mdast ' ) remarkPlugins . push ( [ capture , { name : 'mdast ' } ] )
155
- if ( output === 'hast' ) rehypePlugins . push ( [ capture , { name : 'hast' } ] )
156
- if ( output === 'esast ' ) recmaPlugins . push ( [ capture , { name : 'esast ' } ] )
158
+ if ( show === 'esast ' ) recmaPlugins . push ( [ capture , { name : 'esast ' } ] )
159
+ if ( show === 'hast' ) rehypePlugins . push ( [ capture , { name : 'hast' } ] )
160
+ if ( show === 'mdast ' ) remarkPlugins . push ( [ capture , { name : 'mdast ' } ] )
157
161
/** @type {UnistNode | undefined } */
158
162
let tree
159
163
160
164
await compile ( file , {
161
- outputFormat : output === 'result' ? 'function-body' : 'program' ,
165
+ development : show === 'result' ? false : development ,
166
+ jsx : show === 'code' || show === 'esast' ? jsx : false ,
167
+ outputFormat :
168
+ show === 'result' || outputFormatFunctionBody
169
+ ? 'function-body'
170
+ : 'program' ,
162
171
recmaPlugins,
163
172
rehypePlugins,
164
173
remarkPlugins,
165
174
useDynamicImport : true
166
175
} )
167
176
168
- if ( output === 'result' ) {
177
+ if ( show === 'result' ) {
169
178
/** @type {MDXModule } */
170
179
const mod = await run ( String ( file ) , runtime )
171
180
@@ -192,7 +201,7 @@ function Playground() {
192
201
)
193
202
}
194
203
195
- // `output === 'code'`
204
+ // `show === 'code'`
196
205
return (
197
206
< pre >
198
207
< code >
@@ -227,10 +236,23 @@ function Playground() {
227
236
}
228
237
}
229
238
} ,
230
- [ directive , frontmatter , gfm , markdown , math , output , positions , raw , value ]
239
+ [
240
+ development ,
241
+ directive ,
242
+ frontmatter ,
243
+ gfm ,
244
+ jsx ,
245
+ formatMarkdown ,
246
+ math ,
247
+ outputFormatFunctionBody ,
248
+ positions ,
249
+ raw ,
250
+ show ,
251
+ value
252
+ ]
231
253
)
232
254
233
- const scope = markdown ? 'text.md' : 'source.mdx'
255
+ const scope = formatMarkdown ? 'text.md' : 'source.mdx'
234
256
const compiledResult = /** @type {EvalResult | undefined } */ ( evalResult )
235
257
/** @type {JSX.Element | undefined } */
236
258
let display
@@ -273,46 +295,20 @@ function Playground() {
273
295
</ div >
274
296
< div className = "playground-controls" >
275
297
< fieldset >
276
- < legend > Output </ legend >
298
+ < legend > Show </ legend >
277
299
< label >
278
300
< select
279
- name = "output "
301
+ name = "show "
280
302
onChange = { function ( event ) {
281
- setOutput ( event . target . value )
303
+ setShow ( event . target . value )
282
304
} }
283
305
>
284
- < option value = "result" > rendered result</ option >
306
+ < option value = "result" > evaluated result</ option >
285
307
< option value = "code" > compiled code</ option >
286
308
< option value = "mdast" > mdast (markdown)</ option >
287
309
< option value = "hast" > hast (html)</ option >
288
310
< option value = "esast" > esast (javascript)</ option >
289
311
</ select > { ' ' }
290
- result
291
- </ label >
292
- </ fieldset >
293
- < fieldset >
294
- < legend > Input</ legend >
295
- < label >
296
- < input
297
- type = "radio"
298
- name = "language"
299
- checked = { ! markdown }
300
- onChange = { function ( ) {
301
- setMarkdown ( false )
302
- } }
303
- /> { ' ' }
304
- MDX
305
- </ label >
306
- < label >
307
- < input
308
- type = "radio"
309
- name = "language"
310
- checked = { markdown }
311
- onChange = { function ( ) {
312
- setMarkdown ( true )
313
- } }
314
- /> { ' ' }
315
- markdown
316
312
</ label >
317
313
</ fieldset >
318
314
< fieldset >
@@ -389,6 +385,111 @@ function Playground() {
389
385
</ label >
390
386
</ fieldset >
391
387
< fieldset >
388
+ < legend > Input format</ legend >
389
+ < label >
390
+ < input
391
+ type = "radio"
392
+ name = "language"
393
+ checked = { ! formatMarkdown }
394
+ onChange = { function ( ) {
395
+ setFormatMarkdown ( false )
396
+ } }
397
+ /> { ' ' }
398
+ MDX (< code > format: 'mdx'</ code > )
399
+ </ label >
400
+ < label >
401
+ < input
402
+ type = "radio"
403
+ name = "language"
404
+ checked = { formatMarkdown }
405
+ onChange = { function ( ) {
406
+ setFormatMarkdown ( true )
407
+ } }
408
+ /> { ' ' }
409
+ markdown (< code > format: 'markdown'</ code > )
410
+ </ label >
411
+ </ fieldset >
412
+
413
+ < fieldset disabled = { show === 'result' } >
414
+ < legend > Output format</ legend >
415
+ < label >
416
+ < input
417
+ type = "radio"
418
+ name = "output-format"
419
+ checked = { outputFormatFunctionBody }
420
+ onChange = { function ( ) {
421
+ setOutputFormatFunctionBody ( true )
422
+ } }
423
+ /> { ' ' }
424
+ function body (
425
+ < code > outputFormat: 'function-body'</ code > )
426
+ </ label >
427
+ < label >
428
+ < input
429
+ type = "radio"
430
+ name = "output-format"
431
+ checked = { ! outputFormatFunctionBody }
432
+ onChange = { function ( ) {
433
+ setOutputFormatFunctionBody ( false )
434
+ } }
435
+ /> { ' ' }
436
+ program (< code > outputFormat: 'program'</ code > )
437
+ </ label >
438
+ </ fieldset >
439
+
440
+ < fieldset disabled = { show === 'result' } >
441
+ < legend > Development</ legend >
442
+ < label >
443
+ < input
444
+ type = "radio"
445
+ name = "development"
446
+ checked = { ! development }
447
+ onChange = { function ( ) {
448
+ setDevelopment ( false )
449
+ } }
450
+ /> { ' ' }
451
+ generate for production (< code > development: false</ code > )
452
+ </ label >
453
+ < label >
454
+ < input
455
+ type = "radio"
456
+ name = "development"
457
+ checked = { development }
458
+ onChange = { function ( ) {
459
+ setJsx ( true )
460
+ } }
461
+ /> { ' ' }
462
+ generate for development (< code > development: true</ code > )
463
+ </ label >
464
+ </ fieldset >
465
+
466
+ < fieldset disabled = { show === 'result' } >
467
+ < legend > JSX</ legend >
468
+ < label >
469
+ < input
470
+ type = "radio"
471
+ name = "jsx"
472
+ checked = { jsx }
473
+ onChange = { function ( ) {
474
+ setJsx ( true )
475
+ } }
476
+ /> { ' ' }
477
+ keep JSX (< code > jsx: true</ code > )
478
+ </ label >
479
+ < label >
480
+ < input
481
+ type = "radio"
482
+ name = "jsx"
483
+ checked = { ! jsx }
484
+ onChange = { function ( ) {
485
+ setJsx ( false )
486
+ } }
487
+ /> { ' ' }
488
+ compile JSX away (< code > jsx: false</ code > )
489
+ </ label >
490
+ </ fieldset >
491
+
492
+ < fieldset disabled = { show === 'result' || show === 'code' } >
392
493
< legend > Tree</ legend >
393
494
< label >
394
495
< input
0 commit comments