This repository was archived by the owner on Oct 14, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.js
More file actions
227 lines (204 loc) · 5.9 KB
/
cli.js
File metadata and controls
227 lines (204 loc) · 5.9 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
#!/usr/bin/env node
import { program } from "commander";
import { existsSync, readFileSync, writeFileSync } from "fs";
import * as path from "path";
import ts from "typescript";
const dtsFiles = [
"node_modules/typescript/lib/lib.dom.d.ts",
"node_modules/@types/node/web-globals/events.d.ts",
"node_modules/undici-types/eventsource.d.ts",
"node_modules/undici-types/websocket.d.ts",
];
program
.name("easyAddEventListener parser")
.description("Parses TS files in order to obtain addEventListener signatures")
.argument(
"[files...]",
`Files to parse (default: ${JSON.stringify(dtsFiles, null, 2)})`
)
.option("-o,--output <dir>", "Output dir", process.cwd())
.option(
"--patch",
"Patch input files with `addEventListener(): VoidFunction`",
false
)
.parse();
const { output: outputDir, patch } = program.opts();
const files = program.args.length
? program.args
: dtsFiles
.map((file) => path.resolve(process.cwd(), file))
.filter((file) => existsSync(file));
if (!files) {
program.error("Files not found");
}
const sourceFiles = files.map((file) =>
ts.createSourceFile(
file,
readFileSync(file).toString(),
ts.ScriptTarget.Latest
)
);
/**
* @type {{ node: ts.InterfaceDeclaration, signatures: ts.MethodSignature[], type: string, eventMap: string, ancestors: string[] }[]}
*/
const nodes = [];
sourceFiles.forEach((sourceFile) => {
ts.forEachChild(sourceFile, (child) => visit(child, sourceFile));
});
const condition = nodes
.filter(({ eventMap }) => !!eventMap)
// Sort so that the condition is correct for subclasses
.sort((a, b) =>
b.ancestors.includes(a.type)
? 1
: a.ancestors.includes(b.type)
? -1
: b.ancestors.length - a.ancestors.length
)
.map(({ type, eventMap }) => `T extends ${type} ? ${eventMap} : `)
.concat("never")
.join("");
const value = `export type EventMap<T extends EventTarget> = ${condition}`;
const typesFile = path.resolve(outputDir, "types.d.ts");
writeFileSync(typesFile, value);
console.log(`Successfully created ${path.relative(process.cwd(), typesFile)}`);
const printer = ts.createPrinter({ newLine: ts.NewLineKind.LineFeed });
const shimTypesFile = path.resolve(outputDir, "shims.d.ts");
writeFileSync(
shimTypesFile,
nodes
.map(({ node, signatures }) =>
printer.printNode(
ts.EmitHint.Unspecified,
ts.factory.createInterfaceDeclaration(
undefined,
node.name,
node.typeParameters,
undefined,
signatures.map((methodDeclarationNode) => {
return ts.factory.createMethodDeclaration(
methodDeclarationNode.modifiers,
undefined,
methodDeclarationNode.name,
methodDeclarationNode.questionToken,
methodDeclarationNode.typeParameters,
methodDeclarationNode.parameters,
ts.factory.createTypeReferenceNode("VoidFunction")
);
})
)
)
)
.join("\n\n")
);
console.log(
`Successfully created ${path.relative(process.cwd(), shimTypesFile)}`
);
if (patch) {
// Change return type => mutate AST
nodes.forEach(({ signatures }) => {
signatures.forEach((methodDeclarationNode) => {
methodDeclarationNode.type =
ts.factory.createTypeReferenceNode("VoidFunction");
});
});
sourceFiles.forEach((sourceFile) => {
writeFileSync(
sourceFile.fileName,
printer.printNode(ts.EmitHint.Unspecified, sourceFile)
);
console.log(
`Successfully patched ${path.relative(
process.cwd(),
sourceFile.fileName
)}`
);
});
}
/**
* Finds a node in the source file by its name and kind.
* @param {string} nodeName
* @param {ts.SyntaxKind} nodeKind
* @param {ts.SourceFile} sourceFile
* @returns {ts.Node | undefined}
*/
function findNode(nodeName, nodeKind, sourceFile) {
let foundNode;
/**
* @param {ts.Node} node
*/
function search(node) {
if (foundNode) return;
if (node.kind === nodeKind && node.name?.getText(sourceFile) === nodeName) {
foundNode = node;
return;
}
ts.forEachChild(node, search);
}
search(sourceFile);
return foundNode;
}
/**
* @param {ts.Node} node
* @param {string[]} tree
* @param {ts.SourceFile} sourceFile
*/
function visitHeritageClauses(node, tree, sourceFile) {
node.heritageClauses?.flatMap((clause) =>
clause.types.forEach((type) => {
const name = type.expression.getText(sourceFile);
tree.push(name);
const found = findNode(
name,
ts.SyntaxKind.InterfaceDeclaration,
sourceFile
);
found && visitHeritageClauses(found, tree, sourceFile);
})
);
}
/**
*
* @param {ts.Node} node
* @param {ts.SourceFile} sourceFile
*/
function visit(node, sourceFile) {
if (!ts.isInterfaceDeclaration(node)) {
ts.forEachChild(node, (child) => visit(child, sourceFile));
return;
}
/**
* @type {ts.MethodSignature[]}
*/
const addEventListenerDeclarations = node.members.filter(
(member) =>
ts.isMethodSignature(member) &&
member.name?.getText(sourceFile) === "addEventListener"
);
if (!addEventListenerDeclarations.length) {
return;
}
const heritageClauses = [];
visitHeritageClauses(node, heritageClauses, sourceFile);
const eventMap = addEventListenerDeclarations
.filter((member) => member.typeParameters?.length)
.flatMap((member) => member.typeParameters)
.map((typeParam) => typeParam.constraint.getText(sourceFile))
.find((k) => k.startsWith("keyof"))
?.replace("keyof", "")
.trim();
const generics =
node.typeParameters?.filter((node) => !node.default).length ?? 0;
nodes.push({
node,
signatures: addEventListenerDeclarations,
type: generics
? `${node.name.getText(sourceFile)}<${new Array(generics)
.fill("any")
.join(", ")}>`
: node.name.getText(sourceFile),
eventMap,
ancestors: heritageClauses,
});
}