2013-01-31 01:49:25 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2013-03-26 23:54:41 +08:00
|
|
|
var ReplaceSource = require("webpack-core/lib/ReplaceSource");
|
|
|
|
var RawSource = require("webpack-core/lib/RawSource");
|
2013-01-31 01:49:25 +08:00
|
|
|
|
|
|
|
function DependenciesBlockVariable(name, expression, dependencies) {
|
|
|
|
this.name = name;
|
|
|
|
this.expression = expression;
|
|
|
|
this.dependencies = dependencies || [];
|
|
|
|
}
|
|
|
|
module.exports = DependenciesBlockVariable;
|
|
|
|
|
|
|
|
DependenciesBlockVariable.prototype.updateHash = function(hash) {
|
|
|
|
hash.update(this.name);
|
|
|
|
hash.update(this.expression);
|
|
|
|
this.dependencies.forEach(function(d) {
|
|
|
|
d.updateHash(hash);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
DependenciesBlockVariable.prototype.expressionSource = function(dependencyTemplates, outputOptions, requestShortener) {
|
2013-03-26 23:54:41 +08:00
|
|
|
var source = new ReplaceSource(new RawSource(this.expression));
|
2013-01-31 01:49:25 +08:00
|
|
|
this.dependencies.forEach(function(dep) {
|
|
|
|
var template = dependencyTemplates.get(dep.Class);
|
2015-07-16 06:19:23 +08:00
|
|
|
if(!template) throw new Error("No template for dependency: " + dep.Class.name);
|
2014-04-19 14:35:01 +08:00
|
|
|
template.apply(dep, source, outputOptions, requestShortener, dependencyTemplates);
|
2013-01-31 01:49:25 +08:00
|
|
|
});
|
|
|
|
return source;
|
|
|
|
};
|
|
|
|
|
|
|
|
DependenciesBlockVariable.prototype.disconnect = function() {
|
|
|
|
this.dependencies.forEach(function(d) {
|
|
|
|
d.disconnect();
|
|
|
|
});
|
2014-04-19 14:35:01 +08:00
|
|
|
};
|
2015-06-01 05:28:24 +08:00
|
|
|
|
|
|
|
DependenciesBlockVariable.prototype.hasDependencies = function() {
|
|
|
|
return this.dependencies.length > 0;
|
|
|
|
};
|