|
| 1 | +import { Mermaid, Playground, Code, Pre, Tabs } from 'nextra/components' |
| 2 | +import { useRef, useCallback, useState, useEffect } from 'react' |
| 3 | + |
| 4 | +export function Demo() { |
| 5 | + const [rawMdx, setRawMdx] = useState(`Playground components allow you to write Nextra compatible MDX that renders only on the client. It's modeled after the functionality found in [MDX Playground](https://mdxjs.com/playground). |
| 6 | +
|
| 7 | +In some instances where remote loading MDX is not an option, this may work as a great alternative. |
| 8 | +
|
| 9 | +Here's an example of a codeblock. |
| 10 | +
|
| 11 | +\`\`\`ts |
| 12 | +console.log("Hello world, this is a playground component!"); |
| 13 | +\`\`\` |
| 14 | +
|
| 15 | +## Caveats |
| 16 | +
|
| 17 | +Due to the purely client-side nature of this component, features "Table of Contents" and "Frontmatter" will not work. |
| 18 | +
|
| 19 | +## Mermaid Example |
| 20 | +
|
| 21 | +\`\`\`mermaid |
| 22 | +graph TD |
| 23 | +subgraph AA [Consumers] |
| 24 | +A[Mobile App] |
| 25 | +B[Web App] |
| 26 | +C[Node.js Client] |
| 27 | +end |
| 28 | +subgraph BB [Services] |
| 29 | +E[REST API] |
| 30 | +F[GraphQL API] |
| 31 | +G[SOAP API] |
| 32 | +end |
| 33 | +Z[GraphQL API] |
| 34 | +A --> Z |
| 35 | +B --> Z |
| 36 | +C --> Z |
| 37 | +Z --> E |
| 38 | +Z --> F |
| 39 | +Z --> G |
| 40 | +\`\`\``) |
| 41 | + const handleInput = useCallback(e => { |
| 42 | + setRawMdx(e.currentTarget.textContent ?? '') |
| 43 | + }, []) |
| 44 | + |
| 45 | + const spanRef = useRef(null) |
| 46 | + const initialRender = useRef(false) |
| 47 | + |
| 48 | + useEffect(() => { |
| 49 | + if (!initialRender.current && spanRef.current) { |
| 50 | + initialRender.current = true |
| 51 | + spanRef.current.textContent = rawMdx |
| 52 | + } |
| 53 | + }, []); |
| 54 | + |
| 55 | + return ( |
| 56 | + <div className="grid grid-cols-2 gap-2 mt-6"> |
| 57 | + <Pre data-filename="MDX" icon={MdxIcon}> |
| 58 | + <Code> |
| 59 | + <span |
| 60 | + ref={spanRef} |
| 61 | + contentEditable |
| 62 | + suppressContentEditableWarning |
| 63 | + className="outline-none" |
| 64 | + onInput={handleInput} |
| 65 | + /> |
| 66 | + </Code> |
| 67 | + </Pre> |
| 68 | + <div> |
| 69 | + <Playground |
| 70 | + fallback={ |
| 71 | + <div className="flex h-full items-center justify-center text-4xl"> |
| 72 | + Loading playground... |
| 73 | + </div> |
| 74 | + } |
| 75 | + source={rawMdx} |
| 76 | + components={{ Mermaid, $Tabs: Tabs }} |
| 77 | + /> |
| 78 | + </div> |
| 79 | + </div> |
| 80 | + ) |
| 81 | +} |
| 82 | + |
| 83 | +# Playground |
| 84 | + |
| 85 | +<Demo /> |
| 86 | + |
| 87 | +## Usage |
| 88 | + |
| 89 | +```mdx filename="Basic Usage" |
| 90 | +import { Playground } from 'nextra/components' |
| 91 | + |
| 92 | +# Playground |
| 93 | + |
| 94 | +Below is a playground component. It mixes into the rest of your MDX perfectly. |
| 95 | + |
| 96 | +<Playground source="## Hello world" /> |
| 97 | +``` |
| 98 | + |
| 99 | +You may also specify a fallback component like so: |
| 100 | + |
| 101 | +```mdx filename="Usage with Fallback" |
| 102 | +import { Playground } from 'nextra/components' |
| 103 | + |
| 104 | +<Playground |
| 105 | + source="## Hello world" |
| 106 | + fallback={<div>Loading playground...</div>} |
| 107 | +/> |
| 108 | +``` |
0 commit comments