-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapiDeclaration.js
77 lines (67 loc) · 2.7 KB
/
apiDeclaration.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
74
75
76
77
const ts = require('typescript');
const path = require('path');
const fs = require('fs');
const prettier = require('prettier');
function generateTypeDefinitions(folderPath, outputFile) {
const files = fs.readdirSync(folderPath).filter((file) => file.endsWith('.ts'));
const program = ts.createProgram(files.map((file) => path.join(folderPath, file)), {
target: ts.ScriptTarget.ESNext,
module: ts.ModuleKind.CommonJS,
declaration: true,
emitDeclarationOnly: true,
outDir: folderPath,
});
const interfaces = [];
const objects = [];
const writeFileCallback = (filePath, data, writeByteOrderMark, onError, sourceFiles) => {
if (filePath.endsWith('.d.ts')) {
const lines = data.split(/\n/);
let inInterface = false;
let currentInterface = '';
let currentComment = '';
lines.forEach((line) => {
if (line.startsWith('/**')) {
currentComment = line;
} else if (line.startsWith(' * ')) {
currentComment += '\n' + line;
} else if (line.startsWith(' */')) {
currentComment += '\n' + line;
} else if (line.startsWith('export interface')) {
inInterface = true;
currentInterface = currentComment + '\n' + line.replace('export ', '');
currentComment = '';
} else if (inInterface) {
if (line.startsWith('}')) {
inInterface = false;
interfaces.push(currentInterface + '\n' + line);
} else {
currentInterface += '\n' + line;
}
} else if (line.trim().length > 0 && !line.startsWith('export class') && !line.startsWith('export type') && !line.startsWith('import ')) {
objects.push(currentComment + line.replace(/(export|declare|const)\s+/g, ''));
currentComment = '';
}
});
} else {
fs.writeFileSync(filePath, data, { encoding: 'utf8', flag: 'w' });
}
};
program.emit(undefined, writeFileCallback);
const wrappedDeclarations = `
// Generated by apiDeclaration.js script - DO NOT EDIT MANUALLY
// Last update: ${new Date().toISOString()}
declare global {
${interfaces.map((intf) => ' ' + intf).join('\n')}
interface Window {
${objects.map((obj) => ' ' + obj.replace(/\n/g, '\n ')).join('\n')}
}
}
export {};`;
// Format the wrappedDeclarations string with Prettier
const formattedDeclarations = prettier.format(wrappedDeclarations, { parser: 'typescript' });
fs.writeFileSync(outputFile, formattedDeclarations, 'utf8');
}
const folderPath = path.resolve(__dirname, 'electron', 'API');
const outputFile = path.resolve(__dirname, 'src', 'electron.d.ts');
generateTypeDefinitions(folderPath, outputFile);
console.log('[electron.d.ts] has been updated successfully!');