-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocs.js
73 lines (57 loc) · 1.47 KB
/
docs.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
/* eslint-disable @typescript-eslint/no-var-requires */
const ejs = require('ejs');
const data = require('./doc-data');
const path = require('path');
const fs = require('fs');
const tpl = `---
title: <%= title %>
order: <%= order %>
mobile: <%= mobile %>
group:
title: <%= groupTitle %>
order: <%= groupOrder %>
path: <%= groupPath %>
---
# <%= title %>
<code src="../demo/<%= name %>.tsx"></code>
<API src="../src/<%= name %>.tsx"></API>
`;
const tpl1 = `---
title: <%= title %>
order: <%= order %>
group:
title: <%= groupTitle %>
order: <%= groupOrder %>
path: <%= groupPath %>
---
\`\`\`jsx
// <%= desc %>
\`\`\`
`;
data.map((group, idx) => {
handle(group, idx, Array.isArray(group.comps) ? 'comps' : 'list');
});
function handle(group, idx, listProp = 'comps') {
const list = group[listProp];
const isComps = listProp === 'comps';
if (Array.isArray(list))
list.map((item, subIdx) => {
item.order = subIdx;
item.groupOrder = idx;
item.groupPath = group.path;
item.groupTitle = group.title;
item.mobile = typeof item.mobile === 'boolean' ? item.mobile : true;
const fileName = path.resolve(__dirname, `./mdx/${item.name}.md`);
if (fs.existsSync(fileName)) {
if (isComps) {
fs.unlinkSync(fileName);
} else {
return;
}
}
fs.writeFileSync(
path.resolve(__dirname, `./mdx/${item.name}.md`),
ejs.render(isComps ? tpl : tpl1, item)
);
});
}