-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
393 lines (347 loc) · 11.6 KB
/
index.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
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
const fs = require("fs");
const path = require("path");
const babel = require("@babel/core");
const traverse = require("@babel/traverse").default;
const generate = require("@babel/generator").default;
const t = require("@babel/types");
const getFileAbsolutePath = require("./getFilePath");
const EXPORTS = "_exports";
const GET_MODULE = "_getModule";
let outputFolderPath = "";
let entryFilePath = "";
const buildModuleGraph = (entryFile, outputFolder) => {
outputFolderPath = outputFolder;
try {
const moduleGraph = getModuleGraph(entryFile);
const outputFile = path.join(outputFolder, path.basename(entryFile));
fs.writeFileSync(outputFile, buildTemplate(entryFile, moduleGraph));
outputFolderPath = null;
entryFilePath = null;
// return outputFile;
return { folder: outputFolder, main: outputFile };
} catch (e) {
throw e;
}
};
const buildChunkModuleGraph = (filePath) => {
try {
const moduleGraph = getModuleGraph(filePath);
const outputFile = path.join(outputFolderPath, path.basename(filePath));
fs.writeFileSync(outputFile, buildChunkTemplate(filePath, moduleGraph));
} catch (e) {
throw e;
}
};
const CssLoader = (filePath) => {
try {
const fileName = path.basename(filePath);
const outputFile = path.join(outputFolderPath, path.basename(filePath));
fs.copyFileSync(outputFile, filePath);
} catch (e) {
throw e;
}
};
// TODO: Better way to write into file
const buildTemplate = (entryFile, moduleGraph) => {
return `const moduleGraph = {\n${moduleGraph}};
(function () {
const entryFilePath = '${entryFile}';
const memoModule = {};
const visitedModule = new Set();
const installedChunks = new Set();
globalThis._add_async_modules = (chunkId, chunkModuleGraph) => {
installedChunks.add(chunkId);
Object.assign(moduleGraph, chunkModuleGraph);
}
const _getModule = path => {
if (memoModule[path]) {
return memoModule[path];
}
memoModule[path] = {};
moduleGraph[path](memoModule[path], _getModule);
return memoModule[path];
};
const getChunkPath = chunkId => {
const paths = chunkId.split('/');
return '/' + paths.pop();
};
const loadModule = modulePath => new Promise((resolve, reject) => {
const newScript = document.createElement('script');
newScript.setAttribute('src', modulePath);
document.body.appendChild(newScript);
newScript.onload = () => {
resolve();
}
});
_getModule.async = async (chunkId) => {
if (!installedChunks.has(chunkId)) {
const chunkPath = getChunkPath(chunkId);
await loadModule(chunkPath);
}
return _getModule(chunkId);
};
moduleGraph[entryFilePath]({}, _getModule);
})();`;
};
const buildChunkTemplate = (filePath, moduleGraph) => {
return `globalThis._add_async_modules('${filePath}', {${moduleGraph}});`;
};
const getFunc = (code) => `function(${EXPORTS}, ${GET_MODULE}){\n${code}\n}`;
const getReExportVariables = (node) => {
// [localName, exportName]
const imports = [];
if (t.isExportAllDeclaration(node)) {
return [["*", "*"]];
}
node.specifiers.forEach((specifier) => {
if (t.isExportSpecifier(specifier)) {
imports.push([specifier.exported, specifier.local]);
} else if (t.isExportNamespaceSpecifier(specifier)) {
imports.push([specifier.exported, "*"]);
}
});
return imports;
};
// To build id map
const getIdMemberExpression = (objName, property) =>
property
? t.memberExpression(
t.identifier(objName),
t.isIdentifier(property) ? property : t.identifier(property)
)
: t.identifier(objName);
const buildImportIdMap = (node, mapName, map) => {
node.specifiers.forEach((specifier) => {
if (t.isImportDefaultSpecifier(specifier)) {
map[specifier.local.name] = getIdMemberExpression(mapName, "default");
} else if (t.isImportSpecifier(specifier)) {
map[specifier.local.name] = getIdMemberExpression(
mapName,
specifier.imported.name
);
}
});
};
const getExportsVariables = (node) => {
if (t.isExportNamedDeclaration(node)) {
if (t.isFunctionDeclaration(node.declaration)) {
return [[node.declaration.id, node.declaration.id, node.declaration]];
} else if (t.isVariableDeclaration(node.declaration)) {
return node.declaration.declarations.map((declarator) => [
declarator.id,
declarator.id,
t.variableDeclaration(node.declaration.kind, [declarator]),
]);
} else {
// for export list
return node.specifiers.map((specifier) => [
specifier.exported,
specifier.local,
]);
}
}
// exportDefaultDeclaration
const isDefaultVarOrAnonyFunc = !(
t.isDeclaration(node.declaration) && node.declaration.id
);
return [
[
t.identifier("default"),
isDefaultVarOrAnonyFunc ? node.declaration : node.declaration.id,
isDefaultVarOrAnonyFunc ? null : node.declaration,
],
];
};
const buildGetModuleExpression = (filePath, param = "*") => {
if (param === "*") {
return t.callExpression(t.identifier(GET_MODULE), [
t.stringLiteral(filePath),
]);
}
return t.memberExpression(
t.callExpression(t.identifier(GET_MODULE), [t.stringLiteral(filePath)]),
param
);
};
// TODO: better way to handle export all expression
// TODO: Use babel/template not type?
const buildExportAllExpression = (filePath) => {
const temp = t.identifier("temp");
// NOTE: export * from 'XX' doesn't include default
// Object.assign(_exports, ((...temp) => {delete temp.default; return temp})(_getModule('XXX')))
return t.expressionStatement(
t.callExpression(
t.memberExpression(t.identifier("Object"), t.identifier("assign")),
[
t.identifier(EXPORTS),
t.callExpression(
t.arrowFunctionExpression(
[t.objectPattern([t.restElement(temp)])],
t.blockStatement([
t.expressionStatement(
t.unaryExpression(
"delete",
t.memberExpression(temp, t.identifier("default"))
)
),
t.returnStatement(temp),
])
),
[buildGetModuleExpression(filePath)]
),
]
)
);
};
const buildExportExpression = (id) => {
return getIdMemberExpression(EXPORTS, id);
};
const getModuleGraph = (filePath) => {
let moduleGraph = "";
let visitedModule = new Set();
const buildGraph = (filePath) => {
if (visitedModule.has(filePath)) return;
visitedModule.add(filePath);
const sourceCode = String(fs.readFileSync(filePath));
const fileAST = babel.parseSync(sourceCode);
transform()(fileAST, filePath);
const { code } = generate(fileAST);
moduleGraph += `${JSON.stringify(filePath)}: ${getFunc(code)},\n`;
};
const transform = () => {
const importIdMap = {};
const exportIdMap = {};
let idIndex = 0;
return (ast, filePath) => {
traverse(ast, {
ImportDeclaration(path) {
const importedFileRelativePath = path.node.source.value;
const newName = t.isImportNamespaceSpecifier(path.node.specifiers[0])
? path.node.specifiers[0].local.name
: `_v${idIndex++}`;
buildImportIdMap(path.node, newName, importIdMap);
const importedFileAbsolutePath = getFileAbsolutePath(
importedFileRelativePath,
filePath
);
buildGraph(importedFileAbsolutePath);
const replacement = path.node.specifiers.length
? t.variableDeclaration("const", [
t.variableDeclarator(
t.identifier(newName),
buildGetModuleExpression(importedFileAbsolutePath)
),
])
: buildGetModuleExpression(importedFileAbsolutePath);
path.replaceWith(replacement);
},
ExportDeclaration(path) {
// TODO: Better way to handle export statements
let replacements = [];
let isPush = false;
if (path.node.source) {
// for re-exports
const importedFileRelativePath = path.node.source.value;
const importedVariables = getReExportVariables(path.node);
const importedFileAbsolutePath = getFileAbsolutePath(
importedFileRelativePath,
filePath
);
buildGraph(importedFileAbsolutePath);
replacements = importedVariables.map((_v) =>
_v[0] === "*"
? buildExportAllExpression(importedFileAbsolutePath)
: t.expressionStatement(
t.assignmentExpression(
"=",
buildExportExpression(_v[0]),
buildGetModuleExpression(importedFileAbsolutePath, _v[1])
)
)
);
} else {
const exports = getExportsVariables(path.node);
// for export list
isPush = !!(!path.node.declaration && path.node.specifiers);
exports.forEach((_e) => {
const [id, ref, declaration] = _e;
if (declaration) {
replacements.push(declaration);
}
if (!isPush && ref?.name) {
exportIdMap[ref.name] = buildExportExpression(id);
}
replacements.push(
t.expressionStatement(
t.assignmentExpression("=", buildExportExpression(id), ref)
)
);
});
}
if (isPush) {
path.container.push(...replacements);
path.remove();
} else {
path.replaceWithMultiple(replacements);
}
},
Identifier(path) {
const pathWithBinding = path.scope.getBinding(path.node.name)?.path;
if (
path.isReferencedIdentifier() &&
t.isProgram(pathWithBinding?.scope?.block)
) {
if (importIdMap[path.node.name]) {
path.replaceWith(importIdMap[path.node.name]);
} else if (exportIdMap[path.node.name]) {
const isExportAssignment =
t.isAssignmentExpression(path.parentPath.node) &&
path.parentPath.node?.left?.object?.name === EXPORTS;
if (!isExportAssignment)
path.replaceWith(exportIdMap[path.node.name]);
}
}
},
Import(path) {
const importedFileRelativePath =
path.parentPath.node.arguments[0].value;
const importedFileAbsolutePath = getFileAbsolutePath(
importedFileRelativePath,
filePath
);
// TODO:
if (visitedModule.has(importedFileAbsolutePath)) {
path.parentPath.replaceWith(
t.callExpression(
t.memberExpression(
t.identifier("Promise"),
t.identifier("resolve")
),
[
t.callExpression(t.identifier(GET_MODULE), [
t.stringLiteral(importedFileAbsolutePath),
]),
]
)
);
} else {
buildChunkModuleGraph(importedFileAbsolutePath);
// for dynamic import
path.parentPath.replaceWith(
t.callExpression(
t.memberExpression(
t.identifier(GET_MODULE),
t.identifier("async")
),
[t.stringLiteral(importedFileAbsolutePath)]
)
);
}
},
});
};
};
buildGraph(filePath);
return moduleGraph;
};
module.exports = buildModuleGraph;