forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-docs.ts
278 lines (237 loc) · 7.87 KB
/
api-docs.ts
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import { execa } from 'execa';
import { existsSync, mkdirSync, readdirSync, readFileSync, writeFileSync } from 'node:fs';
import { join } from 'node:path';
import { type BuildConfig } from './util';
import { format } from 'prettier';
// import { toSnakeCase } from '../packages/docs/src/utils/utils';
export async function generateApiMarkdownDocs(config: BuildConfig, apiJsonInputDir: string) {
await generateApiMarkdownPackageDocs(config, apiJsonInputDir, ['qwik']);
await generateApiMarkdownPackageDocs(config, apiJsonInputDir, ['qwik-city']);
await generateApiMarkdownPackageDocs(config, apiJsonInputDir, ['qwik-city', 'middleware']);
await generateApiMarkdownPackageDocs(config, apiJsonInputDir, ['qwik-city', 'static']);
await generateApiMarkdownPackageDocs(config, apiJsonInputDir, ['qwik-city', 'vite']);
await generateApiMarkdownPackageDocs(config, apiJsonInputDir, ['qwik-react']);
}
async function generateApiMarkdownPackageDocs(
config: BuildConfig,
apiJsonInputDir: string,
pkgNames: string[]
) {
const pkgDirNames = join(apiJsonInputDir, ...pkgNames);
if (existsSync(pkgDirNames)) {
const subPkgDirNames = readdirSync(pkgDirNames);
for (const subPkgDirName of subPkgDirNames) {
await generateApiMarkdownSubPackageDocs(config, apiJsonInputDir, [
...pkgNames,
subPkgDirName,
]);
}
}
}
async function generateApiMarkdownSubPackageDocs(
config: BuildConfig,
apiJsonInputDir: string,
names: string[]
) {
const subPkgInputDir = join(apiJsonInputDir, ...names);
const docsApiJsonPath = join(subPkgInputDir, 'docs.api.json');
if (!existsSync(docsApiJsonPath)) {
return;
}
const subPkgName = ['@builder.io', ...names].filter((n) => n !== 'core').join('/');
console.log('📚', `Generate API ${subPkgName} markdown docs`);
const apiOuputDir = join(
config.rootDir,
'dist-dev',
'api-docs',
names.filter((n) => n !== 'core').join('-')
);
mkdirSync(apiOuputDir, { recursive: true });
console.log(apiOuputDir);
await execa(
'api-documenter',
['markdown', '--input-folder', subPkgInputDir, '--output-folder', apiOuputDir],
{
stdio: 'inherit',
cwd: join(config.rootDir, 'node_modules', '.bin'),
}
);
await createApiData(config, docsApiJsonPath, apiOuputDir, subPkgName);
}
async function createApiData(
config: BuildConfig,
docsApiJsonPath: string,
apiOuputDir: string,
subPkgName: string
) {
const apiExtractedJson = JSON.parse(readFileSync(docsApiJsonPath, 'utf-8'));
const apiData: ApiData = {
id: subPkgName.replace('@builder.io/', '').replace(/\//g, '-'),
package: subPkgName,
members: [],
};
function addMember(apiExtract: any, hierarchyStr: string) {
const apiName = apiExtract.name || '';
const apiKind = apiExtract.kind || '';
if (apiName.length === 0) {
return;
}
if (apiKind === 'PropertySignature') {
if (!apiName.includes(':')) {
// do not include PropertySignatures unless they are namespaced
// like q:slot or preventdefault:click
return;
}
}
const hierarchySplit = hierarchyStr.split('/').filter((m) => m.length > 0);
hierarchySplit.push(apiName);
const hierarchy = hierarchySplit.map((h) => {
return {
name: h,
id: getCanonical(hierarchySplit),
};
});
const id = getCanonical(hierarchySplit);
const mdFile = getMdFile(subPkgName, hierarchySplit);
const mdPath = join(apiOuputDir, mdFile);
const content: string[] = [];
if (existsSync(mdPath)) {
const mdSrcLines = readFileSync(mdPath, 'utf-8').split(/\r?\n/);
for (const line of mdSrcLines) {
if (line.startsWith('## ')) {
continue;
}
if (line.startsWith('[Home]')) {
continue;
}
if (line.startsWith('<!-- ')) {
continue;
}
if (line.startsWith('**Signature:**')) {
continue;
}
content.push(line);
}
} else {
console.log('Unable to find md for', mdFile);
}
apiData.members.push({
name: apiName,
id,
hierarchy,
kind: apiKind,
content: content.join('\n').trim(),
editUrl: getEditUrl(config, apiExtract.fileUrlPath),
mdFile,
});
}
function addMembers(apiExtract: any, hierarchyStr: string) {
if (Array.isArray(apiExtract?.members)) {
for (const member of apiExtract.members) {
addMembers(member, hierarchyStr + '/' + member.name);
if (member.kind === 'Package' || member.kind === 'EntryPoint') {
continue;
}
if (apiData.members.some((m) => member.name === m.name && member.kind === m.kind)) {
continue;
}
addMember(member, hierarchyStr);
}
}
}
addMembers(apiExtractedJson, '');
apiData.members.forEach((m1) => {
apiData.members.forEach((m2) => {
while (m1.content.includes(`./${m2.mdFile}`)) {
m1.content = m1.content.replace(`./${m2.mdFile}`, `#${m2.id}`);
}
});
});
apiData.members.forEach((m) => {
m.content = m.content.replace(/\.\/qwik(.*)\.md/g, '#');
});
apiData.members.sort((a, b) => {
return a.name.localeCompare(b.name);
});
const docsDir = join(config.packagesDir, 'docs', 'src', 'routes', 'api', apiData.id);
mkdirSync(docsDir, { recursive: true });
const apiJsonPath = join(docsDir, `api.json`);
writeFileSync(apiJsonPath, JSON.stringify(apiData, null, 2));
const apiMdPath = join(docsDir, `index.md`);
writeFileSync(apiMdPath, await createApiMarkdown(apiData));
}
async function createApiMarkdown(a: ApiData) {
let md: string[] = [];
md.push(`---`);
md.push(`title: \\${a.package} API Reference`);
md.push(`---`);
md.push(``);
md.push(`# [API](/api) › ${a.package}`);
md.push(``);
for (const m of a.members) {
// const title = `${toSnakeCase(m.kind)} - ${m.name.replace(/"/g, '')}`;
md.push(`## ${m.name}`);
md.push(``);
// sanitize / adjust output
const content = m.content
.replace(/<!--(.|\s)*?-->/g, '')
// .replace(/<Slot\/>/g, ''
.replace(/\\#\\#\\# (\w+)/gm, '### $1')
.replace(/\\\[/gm, '[')
.replace(/\\\]/gm, ']');
md.push(content);
md.push(``);
if (m.editUrl) {
md.push(`[Edit this section](${m.editUrl})`);
md.push(``);
}
}
const mdOutput = await format(md.join('\n'), {
parser: 'markdown',
});
return mdOutput;
}
interface ApiData {
id: string;
package: string;
members: ApiMember[];
}
interface ApiMember {
id: string;
name: string;
hierarchy: { name: string; id: string }[];
kind: string;
content: string;
editUrl?: string;
mdFile: string;
}
function getCanonical(hierarchy: string[]) {
return hierarchy.map((h) => getSafeFilenameForName(h)).join('-');
}
function getMdFile(subPkgName: string, hierarchy: string[]) {
let mdFile = '';
for (const h of hierarchy) {
mdFile += '.' + getSafeFilenameForName(h);
}
return `qwik${subPkgName.includes('city') ? '-city' : ''}${mdFile}.md`;
}
function getSafeFilenameForName(name: string): string {
// https://github.com/microsoft/rushstack/blob/d0f8f10a9ce1ce4158ca2da5b79c54c71d028d89/apps/api-documenter/src/utils/Utilities.ts
return name.replace(/[^a-z0-9_\-\.]/gi, '_').toLowerCase();
}
function getEditUrl(config: BuildConfig, fileUrlPath: string | undefined) {
if (fileUrlPath) {
const rootRelPath = fileUrlPath.split(`/`).slice(2).join('/');
const tsxPath = join(config.rootDir, rootRelPath).replace(`.d.ts`, `.tsx`);
if (existsSync(tsxPath)) {
const url = new URL(rootRelPath, `https://github.com/BuilderIO/qwik/tree/main/`);
return url.href.replace(`.d.ts`, `.tsx`);
}
const tsPath = join(config.rootDir, rootRelPath).replace(`.d.ts`, `.ts`);
if (existsSync(tsPath)) {
const url = new URL(rootRelPath, `https://github.com/BuilderIO/qwik/tree/main/`);
return url.href.replace(`.d.ts`, `.ts`);
}
}
return undefined;
}