-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathloader.js
350 lines (310 loc) · 9.7 KB
/
loader.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
//@ts-check
// @ts-ignore
window.process = { env: { NODE_ENV: 'dev' } }
// local to getPath
var relativeElement = document.createElement("a");
var baseElement = document.createElement("base");
document.head.appendChild(baseElement);
export function BsGetPath(id, parent) {
var oldPath = baseElement.href
baseElement.href = parent
relativeElement.href = id
var result = relativeElement.href
baseElement.href = oldPath
return result
}
/**
*
* Given current link and its parent, return the new link
* @param {string} id
* @param {string} parent
* @return {string}
*/
function getPathWithJsSuffix(id, parent) {
var oldPath = baseElement.href
baseElement.href = parent
relativeElement.href = id
var result = addSuffixJsIfNot(relativeElement.href)
baseElement.href = oldPath
return result
}
/**
*
* @param {string} x
*/
function addSuffixJsIfNot(x) {
if (x.endsWith('.js')) {
return x
} else {
return x + '.js'
}
}
var falsePromise = Promise.resolve(false)
// package.json semantics
// a string to module object
// from url -> module object
// Modules : Map<string, Promise < boolean | string >
// fetch the link:
// - if it is already fetched before, return the stored promise
// otherwise create the promise which will be filled with the text if successful
// or filled with boolean false when failed
var MODULES = new Map()
function cachedFetch(link) {
var linkResult = MODULES.get(link)
if (linkResult) {
return linkResult
} else {
var p = fetch(link)
.then(resp => {
if (resp.ok) {
return resp.text()
} else {
return falsePromise
}
})
MODULES.set(link, p)
return p
}
}
// from location id -> url
// There are two rounds of caching:
// 1. if location and relative path is hit, no need to run
// 2. if location and relative path is not hit, but the resolved link is hit, no need
// for network request
/**
* @type {Map<string, Map<string, Promise<any> > > }
*/
var IDLocations = new Map()
/**
* @type {Map<string, Map<string, any> > }
*/
var SyncedIDLocations = new Map()
// Its value is an object
// { link : String }
// We will first mark it when visiting (to avoid duplicated computation)
// and populate its link later
/**
*
* @param {string} id
* @param {string} location
*/
function getIdLocation(id, location) {
var idMap = IDLocations.get(location)
if (idMap) {
return idMap.get(id)
}
}
/**
*
* @param {string} id
* @param {string} location
*/
function getIdLocationSync(id, location) {
var idMap = SyncedIDLocations.get(location)
if (idMap) {
return idMap.get(id)
}
}
function countIDLocations() {
var count = 0
for (let [k, vv] of IDLocations) {
for (let [kv, v] of vv) {
count += 1
}
}
console.log(count, 'modules loaded')
}
/**
*
* @param {string} id
* @param {string} location
* @param {Function} cb
* @returns Promise<any>
*/
function visitIdLocation(id, location, cb) {
var result;
var idMap = IDLocations.get(location)
if (idMap && (result = idMap.get(id))) {
return result
}
else {
result = new Promise(resolve => {
return (cb()).then(res => {
var idMap = SyncedIDLocations.get(location)
if (idMap) {
idMap.set(id, res)
} else {
SyncedIDLocations.set(location, new Map([[id, res]]))
}
return resolve(res)
})
})
if (idMap) {
idMap.set(id, result)
}
else {
IDLocations.set(location, new Map([[id, result]]))
}
return result
}
}
/**
*
* @param {string} text
* @return {string[]}
*/
function getDeps(text) {
var deps = []
text.replace(/(\/\*[\w\W]*?\*\/|\/\/[^\n]*|[.$]r)|\brequire\s*\(\s*["']([^"']*)["']\s*\)/g, function (_, ignore, id) {
if (!ignore) deps.push(id);
});
return deps;
}
// By using a named "eval" most browsers will execute in the global scope.
// http://www.davidflanagan.com/2010/12/global-eval-in.html
var globalEval = eval;
// function parentURL(url) {
// if (url.endsWith('/')) {
// return url + '../'
// } else {
// return url + '/../'
// }
// }
// loader.js:23 http://localhost:8080/node_modules/react-dom/cjs/react-dom.development.js/..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//../ fbjs/lib/containsNode Promise {<pending>}
// 23:10:02.884 loader.js:23 http://localhost:8080/node_modules/react-dom/cjs/react-dom.development.js/..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//..//../ fbjs/lib/invariant Promise {<pending>}
// In the beginning
// it is `resolveModule('./main.js', '')
// return the promise of link and text
/**
*
* @param {string} id
* @param {string} parent
* can return Promise <boolean | object>, false means
* this module can not be resolved
*/
function getModulePromise(id, parent) {
var done = getIdLocation(id, parent)
if (!done) {
return visitIdLocation(id, parent, async () => {
if (id[0] != '.') { // package path
var link = getPathWithJsSuffix('./node_modules/' + id, parent)
var text = await cachedFetch(link)
if (text !== false) {
return { text, link }
} else if (!id.endsWith('.js')) {
var link = getPathWithJsSuffix(`./node_modules/` + id + `/index.js`, parent)
var text = await cachedFetch(link)
if (text !== false) {
return { text, link }
} else {
return getParentModulePromise(id, parent)
}
} else {
return getParentModulePromise(id, parent)
}
} else { // relative path, one shot resolve
let link = getPathWithJsSuffix(id, parent)
var text = await cachedFetch(link)
if (text !== false) {
return { text, link }
} else {
throw new Error(` ${id} : ${parent} could not be resolved`)
}
}
})
} else {
return done
}
}
/**
*
* @param {string} id
* @param {string} parent
*/
function getParentModulePromise(id, parent) {
var parentLink = BsGetPath('..', parent)
if (parentLink === parent) {
return falsePromise
}
return getModulePromise(id, parentLink)
}
/**
*
* @param {string} id
* @param {string} parent
* @returns {Promise<any>}
*/
function getAll(id, parent) {
return getModulePromise(id, parent)
.then(function (obj) {
if (obj) {
var deps = getDeps(obj.text)
return Promise.all(deps.map(x => getAll(x, obj.link)))
} else {
throw new Error(`${id}@${parent} was not resolved successfully`)
}
})
};
/**
*
* @param {string} text
* @param {string} parent
* @returns {Promise<any>}
*/
function getAllFromText(text, parent) {
var deps = getDeps(text)
return Promise.all(deps.map(x => getAll(x, parent)))
}
function loadSync(id, parent) {
var baseOrModule = getIdLocationSync(id, parent)
if (baseOrModule) {
if (!baseOrModule.exports) {
baseOrModule.exports = {}
globalEval(`(function(require,exports,module){${baseOrModule.text}\n})//# sourceURL=${baseOrModule.link}`)(
function require(id) {
return loadSync(id, baseOrModule.link);
}, // require
baseOrModule.exports = {}, // exports
baseOrModule // module
);
}
return baseOrModule.exports
} else {
throw new Error(`${id} : ${parent} could not be resolved`)
}
}
function genEvalName() {
return "eval-" + (("" + Math.random()).substr(2, 5))
}
/**
*
* @param {string} text
* @param {string} link
* In this case [text] evaluated result will not be cached
*/
function loadTextSync(text, link) {
// var link = getPath(".", document.baseURI)
var baseOrModule = { exports: {}, text, link }
globalEval(`(function(require,exports,module){${baseOrModule.text}\n})//# sourceURL=${baseOrModule.link}/${genEvalName()}.js`)(
function require(id) {
return loadSync(id, baseOrModule.link);
}, // require
baseOrModule.exports, // exports
baseOrModule // module
);
}
function load(id, parent) {
return getAll(id, parent).then(function(){
loadSync(id, parent)
})
};
/**
*
* @param {string} text
*/
export function BSloadText(text) {
var parent = BsGetPath(".", document.baseURI)
return getAllFromText(text, parent).then(function(){
loadTextSync(text, parent)
})
}