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>
72 lines
1.7 KiB
JavaScript
72 lines
1.7 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const asyncLib = require("neo-async");
|
|
const NormalModule = require("./NormalModule");
|
|
const PrefetchDependency = require("./dependencies/PrefetchDependency");
|
|
|
|
/** @typedef {import("./Compiler")} Compiler */
|
|
|
|
const PLUGIN_NAME = "AutomaticPrefetchPlugin";
|
|
|
|
/**
|
|
* Records modules from one compilation and adds them back as prefetch
|
|
* dependencies in the next compilation.
|
|
*/
|
|
class AutomaticPrefetchPlugin {
|
|
/**
|
|
* Registers hooks that remember previously built normal modules and enqueue
|
|
* them as `PrefetchDependency` requests during the next make phase.
|
|
* @param {Compiler} compiler the compiler instance
|
|
* @returns {void}
|
|
*/
|
|
apply(compiler) {
|
|
compiler.hooks.compilation.tap(
|
|
PLUGIN_NAME,
|
|
(compilation, { normalModuleFactory }) => {
|
|
compilation.dependencyFactories.set(
|
|
PrefetchDependency,
|
|
normalModuleFactory
|
|
);
|
|
}
|
|
);
|
|
/** @type {{ context: string | null, request: string }[] | null} */
|
|
let lastModules = null;
|
|
compiler.hooks.afterCompile.tap(PLUGIN_NAME, (compilation) => {
|
|
lastModules = [];
|
|
|
|
for (const m of compilation.modules) {
|
|
if (m instanceof NormalModule) {
|
|
lastModules.push({
|
|
context: m.context,
|
|
request: m.request
|
|
});
|
|
}
|
|
}
|
|
});
|
|
compiler.hooks.make.tapAsync(PLUGIN_NAME, (compilation, callback) => {
|
|
if (!lastModules) return callback();
|
|
asyncLib.each(
|
|
lastModules,
|
|
(m, callback) => {
|
|
compilation.addModuleChain(
|
|
m.context || compiler.context,
|
|
new PrefetchDependency(`!!${m.request}`),
|
|
callback
|
|
);
|
|
},
|
|
(err) => {
|
|
lastModules = null;
|
|
callback(err);
|
|
}
|
|
);
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = AutomaticPrefetchPlugin;
|