-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathdoc-watch.ts
143 lines (119 loc) · 3.73 KB
/
doc-watch.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
import { readdir, createReadStream, writeFile } from 'fs-extra'
import { createInterface } from 'readline'
import { join, parse } from 'path'
import { exec } from 'child_process'
import * as fs from 'fs'
import * as path from 'path';
import chokidar from 'chokidar';
import {
Extractor,
ExtractorConfig,
ExtractorResult
} from '@microsoft/api-extractor';
const DOCS_DIR = '../js-sdk-tutorials/docs/api';
async function main() {
const apiExtractorJsonPath: string = path.join(__dirname, '../config/api-extractor.json');
// Load and parse the api-extractor.json file
const extractorConfig: ExtractorConfig = ExtractorConfig.loadFileAndPrepare(apiExtractorJsonPath);
// Invoke API Extractor
const extractorResult: ExtractorResult = Extractor.invoke(extractorConfig, {
// Equivalent to the "--local" command-line parameter
localBuild: true,
// Equivalent to the "--verbose" command-line parameter
showVerboseMessages: true
});
if (extractorResult.succeeded) {
console.log(`API Extractor completed successfully`);
process.exitCode = 0;
} else {
console.error(`API Extractor completed with ${extractorResult.errorCount} errors`
+ ` and ${extractorResult.warningCount} warnings`);
process.exitCode = 1;
}
const outputFolder = './temp';
await fs.promises.mkdir(outputFolder, { recursive: true })
await fs.promises.mkdir(DOCS_DIR, { recursive: true })
await new Promise((resolve, reject) =>
exec(`api-documenter markdown -i ./temp -o ${DOCS_DIR}`, (err, stdout, stderr) => {
console.log(stdout)
console.error(stderr)
if (err) {
reject(err)
} else {
resolve('')
}
}),
)
const docFiles = await readdir(DOCS_DIR)
for (const docFile of docFiles) {
try {
const { name: id, ext } = parse(docFile)
if (ext !== '.md') {
continue
}
const docPath = join(DOCS_DIR, docFile)
const input = createReadStream(docPath)
const output: string[] = []
const lines = createInterface({
input,
crlfDelay: Infinity,
})
let title = ''
lines.on('line', (line) => {
let skip = false
if (!title) {
const titleLine = line.match(/## (.*)/)
if (titleLine) {
title = titleLine[1]
}
}
const indexHomeLink = line.match(/\[Home]\(.\/index\.md\)/)
const homeLink = line.match(/\[Home]\(.\/index\.md\) > (.*)/)
if (homeLink) {
line = line.replace('Home', 'Packages')
}
if (indexHomeLink) {
// Skip the breadcrumb for the toplevel index file.
if (id === 'index') {
skip = true
}
skip = true
}
if (line.startsWith('|')) {
line = line.replace(/\\\|/g, '|')
}
line = replaceAll(line, '<!-- -->', '')
if (!skip) {
output.push(line)
}
})
await new Promise((resolve) => lines.once('close', resolve))
input.close()
const header = ['---', `id: ${id}`, `title: ${title}`, `hide_title: true`, '---']
let outputString = header.concat(output).join('\n')
outputString = outputString.replace(/<a\nhref=/g, '<a href=')
await writeFile(docPath, outputString)
} catch (err) {
console.error(`Could not process ${docFile}: ${err}`)
}
}
}
function escapeRegExp(string: string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') // $& means the whole matched string
}
function replaceAll(str: string, find: string, replace: string) {
return str.replace(new RegExp(escapeRegExp(find), 'g'), replace)
}
chokidar.watch(path.join(__dirname, '../src/'), {
ignoreInitial: true,
usePolling:true,
persistent:true,
interval:1000,
}).on('change', async (event, path) => {
console.log(`${event} - ${path} - present changes, building...`);
await main();
console.log('finished building...');
}).on('ready', async (event:unknown, path:unknown) => {
console.log('ready building...');
});
main();