-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
56 lines (55 loc) · 2.3 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
var WebWorkerTemplatePlugin = require("webpack/lib/webworker/WebWorkerTemplatePlugin");
var SingleEntryPlugin = require("webpack/lib/SingleEntryPlugin");
var path = require("path");
var loaderUtils = require("loader-utils");
module.exports = function() {};
module.exports.pitch = function(request) {
if(!this.webpack) throw new Error("Only usable with webpack");
var callback = this.async();
var query = loaderUtils.parseQuery(this.query);
var filename = loaderUtils.interpolateName(this, query.name || "[hash].worker.js", {
context: query.context || this.options.context,
regExp: query.regExp
});
var outputOptions = {
filename: filename,
chunkFilename: "[id]." + filename,
namedChunkFilename: null
};
if(this.options && this.options.worker && this.options.worker.output) {
for(var name in this.options.worker.output) {
outputOptions[name] = this.options.worker.output[name];
}
}
var workerCompiler = this._compilation.createChildCompiler("worker-static", outputOptions);
workerCompiler.apply(new WebWorkerTemplatePlugin(outputOptions));
workerCompiler.apply(new SingleEntryPlugin(this.context, "!!" + request, "main"));
if(this.options && this.options.worker && this.options.worker.plugins) {
this.options.worker.plugins.forEach(function(plugin) {
workerCompiler.apply(plugin);
});
}
var subCache = "subcache " + __dirname + " " + request;
workerCompiler.plugin("compilation", function(compilation) {
if(compilation.cache) {
if(!compilation.cache[subCache])
compilation.cache[subCache] = {};
compilation.cache = compilation.cache[subCache];
}
});
workerCompiler.runAsChild(function(err, entries, compilation) {
if(err) return callback(err);
if (entries[0]) {
var workerFile = entries[0].files[0];
var staticPath = query.staticPath ? query.staticPath : '';
var constructor = "new Worker(__webpack_public_path__ + " + JSON.stringify(staticPath+workerFile) + ")";
if(query.inline) {
constructor = "require(" + JSON.stringify("!!" + path.join(__dirname, "createInlineWorker.js")) + ")(" +
JSON.stringify(compilation.assets[workerFile].source()) + ", __webpack_public_path__ + " + JSON.stringify(staticPath+workerFile) + ")";
}
return callback(null, "module.exports = function() {\n\treturn " + constructor + ";\n};");
} else {
return callback(null, null);
}
});
};