-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Expand file tree
/
Copy pathgenReadme.mjs
More file actions
253 lines (243 loc) · 7.05 KB
/
genReadme.mjs
File metadata and controls
253 lines (243 loc) · 7.05 KB
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
import fs from "fs/promises";
import path from "path";
import { fileURLToPath } from "url";
import Fm from "front-matter";
import Toc from "markdown-toc";
import prettier from "prettier";
import yargs from "yargs/yargs";
import { hideBin } from "yargs/helpers";
const repositoryRootPath = path.dirname(fileURLToPath(import.meta.url));
const readmePath = path.resolve(repositoryRootPath, "./README.md");
/**
* level of the heading under which the generated content is displayed
*/
const baseHeadingLevel = 2;
const defaultOptions = {
withKey: "title",
withToc: false,
showHeading: true,
relativeHeadingLevel: 2,
tabLevel: 1,
prefix: "",
suffix: "",
};
async function readContentFromPath(relativePath) {
let MdDoc = await fs.readFile(path.join(repositoryRootPath, relativePath), {
encoding: "utf8",
});
let MdContent = Fm(MdDoc.toString());
let TableOfContents = Toc(MdContent.body).content;
return {
frontmatter: MdContent.attributes,
body: MdContent.body,
toc: TableOfContents,
};
}
async function updateSectionWith(options) {
const {
from,
relativeHeadingLevel,
name,
path,
prefix,
showHeading,
suffix,
tabLevel,
to,
withKey,
withToc,
} = { ...defaultOptions, ...options };
let md = await readContentFromPath(path);
let oldFences = getFenceForSection(from, name);
let fenceOptions = {
name,
content: md,
tabLevel,
relativeHeadingLevel,
showHeading,
withKey,
prefix,
suffix,
};
let newFences = generateContentForSection({
...fenceOptions,
withToc: false,
});
let oldTocFences = getFenceForSection(from, name, true);
let newTocFences = generateContentForSection({
...fenceOptions,
withToc: true,
});
let updatedContents = to.replace(oldFences.regex, newFences);
updatedContents = updatedContents.replace(oldTocFences.regex, newTocFences);
if (withToc)
console.log(
`✅ 🗜️ Rewrote Table of Contents for '${md.frontmatter.title}'`
);
console.log(`✅ 📝 Rewrote Section for '${md.frontmatter.title}'`);
return updatedContents;
}
/**
* Adjusts the headings in the given `markdown` to be in a given heading context.
* Headings must start in a line.
* Preceding whitespace or any other character will result in the heading not being recognized.
*
* @example `withHeadingContext(2, '# Heading') === '### Heading'`
* @param {number} relativeHeadingLevel
* @param {string} markdown
*/
function withHeadingContext(relativeHeadingLevel, markdown) {
return markdown.replaceAll(/^(#+)/gm, (match, markdownHeadingTokens) => {
return "#".repeat(markdownHeadingTokens.length + relativeHeadingLevel);
});
}
function generateContentForSection(options) {
const {
content,
relativeHeadingLevel,
name,
prefix,
showHeading,
suffix,
tabLevel,
withKey,
withToc,
} = {
...defaultOptions,
...options,
};
let fence = getFence(name, withToc);
let fenceContent = fence.start + "\n";
if (withToc) {
let lines = content.toc.split("\n");
for (let i = 0, len = lines.length; i < len; i += 1)
fenceContent +=
" ".repeat(tabLevel) + lines[i] + (i !== len - 1 ? "\n" : "");
} else {
fenceContent += showHeading
? `${"#".repeat(baseHeadingLevel + relativeHeadingLevel)} ` +
prefix +
content.frontmatter[withKey] +
suffix +
"\n\n"
: "";
fenceContent += withHeadingContext(baseHeadingLevel, content.body) + "\n";
}
fenceContent += fence.end;
return fenceContent;
}
function getFenceForSection(readme, sectionName, isToc = false) {
try {
let fence = getFence(sectionName, isToc);
let regex = new RegExp(`(${fence.start}[\\s\\S]+${fence.end})`, "gm");
return { regex: regex, content: regex.exec(readme.content) };
} catch (err) {
console.error(
`🚨 You've encountered a ${err.name} ➜ ${err.message} \n` +
`💡 ProTip ➜ Please ensure the comments exist and are separated by a newline.`
);
console.error({ readme, sectionName });
console.error(err);
}
}
function getFence(sectionName, isToc = false) {
let name = isToc ? sectionName + "-toc" : sectionName;
let START_COMMENT = "<!--START-SECTION:" + name + "-->";
let END_COMMENT = "<!--END-SECTION:" + name + "-->";
return { start: START_COMMENT, end: END_COMMENT };
}
async function main(argv) {
let currentReadme = await fs.readFile(readmePath, { encoding: "utf-8" });
let pendingReadme = currentReadme;
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "setup",
path: "docs/basic/setup.md",
withToc: true,
relativeHeadingLevel: 1,
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "basic-type-examples",
path: "docs/basic/getting-started/basic-type-examples.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "function-components",
path: "docs/basic/getting-started/function-components.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "hooks",
path: "docs/basic/getting-started/hooks.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "class-components",
path: "docs/basic/getting-started/class-components.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "default-props",
path: "docs/basic/getting-started/default-props.md",
showHeading: false,
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "forms-and-events",
path: "docs/basic/getting-started/forms-and-events.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "context",
path: "docs/basic/getting-started/context.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "forward-create-ref",
path: "docs/basic/getting-started/forward-create-ref.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "portals",
path: "docs/basic/getting-started/portals.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "error-boundaries",
path: "docs/basic/getting-started/error-boundaries.md",
});
pendingReadme = await updateSectionWith({
from: currentReadme,
to: pendingReadme,
name: "concurrent",
path: "docs/basic/getting-started/concurrent.md",
});
const prettierConfig = await prettier.resolveConfig(readmePath);
pendingReadme = await prettier.format(pendingReadme, {
...prettierConfig,
filepath: path.basename(readmePath),
});
await fs.writeFile(readmePath, pendingReadme);
}
yargs(hideBin(process.argv))
.command({
command: "$0",
describe: "Generate the README.md from docs/ folder",
handler: main,
})
.usage("node $0 [args]")
.help()
.strict()
.parse();