-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
87 lines (84 loc) · 2.11 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
var imports = {};
var systemNormalize = System.normalize;
System.normalize = function (path, importFrom) {
var promise = systemNormalize.apply(this, arguments);
promise.then(function (normalizedPath) {
updateData(normalizedPath, {
importPath: path,
path: normalizedPath,
from: importFrom,
deps: []
});
});
return promise;
};
var systemLocate = System.locate;
System.locate = function (load) {
var importData = updateData(load.name, {
metadata: load.metadata
})
var fromData = imports[importData.from];
if (fromData) {
fromData.deps.push(importData);
}
return systemLocate.apply(this, arguments);
};
function updateData(normalizedPath, data) {
// create data if doesn't exist
var currData = imports[normalizedPath] = imports[normalizedPath] || {};
// extend data
for(var key in data) {
currData[key] = data[key];
}
return currData;
}
export function logImport (importData) {
console.groupCollapsed(importData.importPath);
console.log('path: ', importData.path);
var metadata = importData.metadata;
for (let metaKey in metadata) {
if (metaKey === 'deps') continue;
var metaValue = metadata[metaKey];
if (metaValue !== undefined) {
console.log(`${metaKey}:`, metaValue);
}
}
if (importData.deps) {
console.group(' deps: ', importData.deps.length);
for (let depData of importData.deps) {
logImport(depData);
}
console.groupEnd();
}
console.groupEnd();
}
export function logImports () {
console.group('Imports');
for (let index in imports) {
var importData = imports[index];
// root imports?
if (importData.from === undefined) {
logImport(importData);
}
}
console.groupEnd();
}
export function getImports () {
return imports;
}
export function loggedImport (path) {
// log imports on errors
var orgOnError = self.onerror;
self.onerror = logImports;
return System.import(path)
.then(function (module) {
logImports();
self.onerror = orgOnError;
return module;
})
.catch(function (err) {
//console.error(err);
logImports();
throw err;
});
}