Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
86 lines
2.3 KiB
JavaScript
86 lines
2.3 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const {
|
|
JAVASCRIPT_MODULE_TYPE_AUTO,
|
|
JAVASCRIPT_MODULE_TYPE_DYNAMIC
|
|
} = require("./ModuleTypeConstants");
|
|
const RuntimeGlobals = require("./RuntimeGlobals");
|
|
const ConstDependency = require("./dependencies/ConstDependency");
|
|
const {
|
|
toConstantDependency
|
|
} = require("./javascript/JavascriptParserHelpers");
|
|
|
|
/** @typedef {import("../declarations/WebpackOptions").JavascriptParserOptions} JavascriptParserOptions */
|
|
/** @typedef {import("./Compiler")} Compiler */
|
|
/** @typedef {import("./javascript/JavascriptParser")} JavascriptParser */
|
|
|
|
const PLUGIN_NAME = "RequireJsStuffPlugin";
|
|
|
|
module.exports = class RequireJsStuffPlugin {
|
|
/**
|
|
* Applies the plugin by registering its hooks on the compiler.
|
|
* @param {Compiler} compiler the compiler instance
|
|
* @returns {void}
|
|
*/
|
|
apply(compiler) {
|
|
compiler.hooks.compilation.tap(
|
|
PLUGIN_NAME,
|
|
(compilation, { normalModuleFactory }) => {
|
|
compilation.dependencyTemplates.set(
|
|
ConstDependency,
|
|
new ConstDependency.Template()
|
|
);
|
|
/**
|
|
* Handles the hook callback for this code path.
|
|
* @param {JavascriptParser} parser the parser
|
|
* @param {JavascriptParserOptions} parserOptions options
|
|
* @returns {void}
|
|
*/
|
|
const handler = (parser, parserOptions) => {
|
|
if (
|
|
parserOptions.requireJs === undefined ||
|
|
!parserOptions.requireJs
|
|
) {
|
|
return;
|
|
}
|
|
|
|
parser.hooks.call
|
|
.for("require.config")
|
|
.tap(PLUGIN_NAME, toConstantDependency(parser, "undefined"));
|
|
parser.hooks.call
|
|
.for("requirejs.config")
|
|
.tap(PLUGIN_NAME, toConstantDependency(parser, "undefined"));
|
|
|
|
parser.hooks.expression
|
|
.for("require.version")
|
|
.tap(
|
|
PLUGIN_NAME,
|
|
toConstantDependency(parser, JSON.stringify("0.0.0"))
|
|
);
|
|
parser.hooks.expression
|
|
.for("requirejs.onError")
|
|
.tap(
|
|
PLUGIN_NAME,
|
|
toConstantDependency(
|
|
parser,
|
|
RuntimeGlobals.uncaughtErrorHandler,
|
|
[RuntimeGlobals.uncaughtErrorHandler]
|
|
)
|
|
);
|
|
};
|
|
normalModuleFactory.hooks.parser
|
|
.for(JAVASCRIPT_MODULE_TYPE_AUTO)
|
|
.tap(PLUGIN_NAME, handler);
|
|
normalModuleFactory.hooks.parser
|
|
.for(JAVASCRIPT_MODULE_TYPE_DYNAMIC)
|
|
.tap(PLUGIN_NAME, handler);
|
|
}
|
|
);
|
|
}
|
|
};
|