-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdemo.js
52 lines (45 loc) · 1.79 KB
/
demo.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
import Markdownitfence from 'markdown-it-fence';
import path from 'path';
function mdInJsx(_md) {
return new Markdownitfence(_md, 'md_in_jsx', {
validate: () => true,
render(tokens, idx) {
const { content, info } = tokens[idx];
return `<pre className="language-${info}"><code className="language-${info}">{\`${content.replace(
/`/g,
'\\`',
)}\`}</code></pre>`;
},
});
}
export default function renderDemo(md, container) {
md.use(mdInJsx).use(container, 'demo', {
validate(params) {
return params.trim().match(/^demo\s+([\\/.\w-]+)(\s+(.+?))?(\s+--dev)?$/);
},
render(tokens, idx) {
if (tokens[idx].nesting === 1) {
const match = tokens[idx].info.trim().match(/^demo\s+([\\/.\w-]+)(\s+(.+?))?(\s+--dev)?$/);
const [, demoPath, componentName = ''] = match;
const demoPathOnlyLetters = demoPath.replace(/[^a-zA-Z\d]/g, '');
const demoName = path.basename(demoPath).trim();
const demoDefName = `Demo${demoPathOnlyLetters}Component`;
const demoCodeDefName = `Demo${demoPathOnlyLetters}Code`;
const tpl = `
<td-doc-demo code={${demoCodeDefName}} demo-name="${demoName}" component-name="${componentName.trim()}">
<div slot="action">
</div>
<div className="tdesign-demo-item__body">
<div style={{width: '100%'}}>{${demoDefName}}</div>
</div>
</td-doc-demo>
`;
// eslint-disable-next-line no-param-reassign
tokens.tttpl = tpl;
return `<div className="tdesign-demo-wrapper tdesign-demo-item--${componentName.trim()}-${demoName} tdesign-demo-item--${componentName.trim()}">`;
}
if (tokens.tttpl) return `${tokens.tttpl || ''}</div>`;
return '';
},
});
}