forked from mrtnbroder/shared-worker-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
52 lines (51 loc) · 2.2 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
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 outputOptions = {
filename: '[hash].sharedworker.js',
chunkFilename: '[id].[hash].sharedworker.js',
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('sharedworker', 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 constructor = 'new SharedWorker(__webpack_public_path__ + ' + JSON.stringify(workerFile) + ', name)';
if (query.inline) {
constructor = 'require(' + JSON.stringify('!!' + path.join(__dirname, 'createInlineWorker.js')) + ')(' +
JSON.stringify(compilation.assets[workerFile].source()) + ', __webpack_public_path__ + ' + JSON.stringify(workerFile) + ', name)';
}
return callback(null, 'module.exports = function(name) {\n\treturn ' + constructor + ';\n};');
} else {
return callback(null, null);
}
});
};