webpack/lib/dependencies/AMDRequireDependency.js

175 lines
5.0 KiB
JavaScript
Raw Permalink Normal View History

2013-01-31 01:49:25 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2018-07-30 23:08:51 +08:00
"use strict";
2018-07-30 23:08:51 +08:00
2018-11-17 01:18:44 +08:00
const RuntimeGlobals = require("../RuntimeGlobals");
const makeSerializable = require("../util/makeSerializable");
const NullDependency = require("./NullDependency");
2013-01-31 01:49:25 +08:00
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
/** @typedef {import("../AsyncDependenciesBlock")} AsyncDependenciesBlock */
2018-07-30 23:08:51 +08:00
/** @typedef {import("../Dependency")} Dependency */
/** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */
class AMDRequireDependency extends NullDependency {
constructor(outerRange, arrayRange, functionRange, errorCallbackRange) {
super();
this.outerRange = outerRange;
this.arrayRange = arrayRange;
this.functionRange = functionRange;
this.errorCallbackRange = errorCallbackRange;
this.functionBindThis = false;
this.errorCallbackBindThis = false;
}
2020-05-27 04:56:24 +08:00
get category() {
return "amd";
2020-05-27 04:56:24 +08:00
}
serialize(context) {
const { write } = context;
write(this.outerRange);
write(this.arrayRange);
write(this.functionRange);
write(this.errorCallbackRange);
write(this.functionBindThis);
write(this.errorCallbackBindThis);
super.serialize(context);
}
deserialize(context) {
const { read } = context;
this.outerRange = read();
this.arrayRange = read();
this.functionRange = read();
this.errorCallbackRange = read();
this.functionBindThis = read();
this.errorCallbackBindThis = read();
super.deserialize(context);
}
2013-01-31 01:49:25 +08:00
}
makeSerializable(
AMDRequireDependency,
"webpack/lib/dependencies/AMDRequireDependency"
);
2020-11-26 17:52:55 +08:00
AMDRequireDependency.Template = class AMDRequireDependencyTemplate extends (
NullDependency.Template
) {
/**
* @param {Dependency} dependency the dependency for which the template should be applied
* @param {ReplaceSource} source the current replace source which can be modified
* @param {DependencyTemplateContext} templateContext the context object
* @returns {void}
*/
2018-11-17 01:18:44 +08:00
apply(
dependency,
source,
{ runtimeTemplate, moduleGraph, chunkGraph, runtimeRequirements }
) {
const dep = /** @type {AMDRequireDependency} */ (dependency);
2021-05-11 15:31:46 +08:00
const depBlock = /** @type {AsyncDependenciesBlock} */ (
moduleGraph.getParentBlock(dep)
);
const promise = runtimeTemplate.blockPromise({
chunkGraph,
block: depBlock,
2018-11-17 01:18:44 +08:00
message: "AMD require",
runtimeRequirements
});
// has array range but no function range
if (dep.arrayRange && !dep.functionRange) {
const startBlock = `${promise}.then(function() {`;
2021-10-15 13:40:47 +08:00
const endBlock = `;})['catch'](${RuntimeGlobals.uncaughtErrorHandler})`;
2018-11-17 01:18:44 +08:00
runtimeRequirements.add(RuntimeGlobals.uncaughtErrorHandler);
source.replace(dep.outerRange[0], dep.arrayRange[0] - 1, startBlock);
source.replace(dep.arrayRange[1], dep.outerRange[1] - 1, endBlock);
return;
}
// has function range but no array range
if (dep.functionRange && !dep.arrayRange) {
const startBlock = `${promise}.then((`;
2021-10-15 13:40:47 +08:00
const endBlock = `).bind(exports, __webpack_require__, exports, module))['catch'](${RuntimeGlobals.uncaughtErrorHandler})`;
2018-11-17 01:18:44 +08:00
runtimeRequirements.add(RuntimeGlobals.uncaughtErrorHandler);
source.replace(dep.outerRange[0], dep.functionRange[0] - 1, startBlock);
source.replace(dep.functionRange[1], dep.outerRange[1] - 1, endBlock);
return;
}
// has array range, function range, and errorCallbackRange
if (dep.arrayRange && dep.functionRange && dep.errorCallbackRange) {
const startBlock = `${promise}.then(function() { `;
2018-02-25 09:00:20 +08:00
const errorRangeBlock = `}${
dep.functionBindThis ? ".bind(this)" : ""
2021-10-15 13:40:47 +08:00
})['catch'](`;
const endBlock = `${dep.errorCallbackBindThis ? ".bind(this)" : ""})`;
source.replace(dep.outerRange[0], dep.arrayRange[0] - 1, startBlock);
source.insert(dep.arrayRange[0], "var __WEBPACK_AMD_REQUIRE_ARRAY__ = ");
source.replace(dep.arrayRange[1], dep.functionRange[0] - 1, "; (");
2018-02-25 09:00:20 +08:00
source.insert(
dep.functionRange[1],
2018-02-25 09:00:20 +08:00
").apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);"
);
2018-02-25 09:00:20 +08:00
source.replace(
dep.functionRange[1],
dep.errorCallbackRange[0] - 1,
2018-02-25 09:00:20 +08:00
errorRangeBlock
);
2018-02-25 09:00:20 +08:00
source.replace(
dep.errorCallbackRange[1],
dep.outerRange[1] - 1,
2018-02-25 09:00:20 +08:00
endBlock
);
return;
}
// has array range, function range, but no errorCallbackRange
if (dep.arrayRange && dep.functionRange) {
const startBlock = `${promise}.then(function() { `;
const endBlock = `}${
dep.functionBindThis ? ".bind(this)" : ""
2021-10-15 13:40:47 +08:00
})['catch'](${RuntimeGlobals.uncaughtErrorHandler})`;
2018-11-17 01:18:44 +08:00
runtimeRequirements.add(RuntimeGlobals.uncaughtErrorHandler);
source.replace(dep.outerRange[0], dep.arrayRange[0] - 1, startBlock);
source.insert(dep.arrayRange[0], "var __WEBPACK_AMD_REQUIRE_ARRAY__ = ");
source.replace(dep.arrayRange[1], dep.functionRange[0] - 1, "; (");
2018-02-25 09:00:20 +08:00
source.insert(
dep.functionRange[1],
2018-02-25 09:00:20 +08:00
").apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);"
);
source.replace(dep.functionRange[1], dep.outerRange[1] - 1, endBlock);
}
2013-01-31 01:49:25 +08:00
}
2017-01-11 17:51:58 +08:00
};
module.exports = AMDRequireDependency;