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>
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
/** @typedef {import("./Chunk")} Chunk */
|
|
/** @typedef {import("./ChunkGroup")} ChunkGroup */
|
|
/** @typedef {import(".").Entrypoint} Entrypoint */
|
|
|
|
/**
|
|
* Connects chunk group and chunk.
|
|
* @param {ChunkGroup} chunkGroup the ChunkGroup to connect
|
|
* @param {Chunk} chunk chunk to tie to ChunkGroup
|
|
* @returns {void}
|
|
*/
|
|
const connectChunkGroupAndChunk = (chunkGroup, chunk) => {
|
|
if (chunkGroup.pushChunk(chunk)) {
|
|
chunk.addGroup(chunkGroup);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Connects chunk group parent and child.
|
|
* @param {ChunkGroup} parent parent ChunkGroup to connect
|
|
* @param {ChunkGroup} child child ChunkGroup to connect
|
|
* @returns {void}
|
|
*/
|
|
const connectChunkGroupParentAndChild = (parent, child) => {
|
|
if (parent.addChild(child)) {
|
|
child.addParent(parent);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Connects entrypoint and depend on.
|
|
* @param {Entrypoint} entrypoint the entrypoint
|
|
* @param {Entrypoint} dependOnEntrypoint the dependOnEntrypoint
|
|
* @returns {void}
|
|
*/
|
|
const connectEntrypointAndDependOn = (entrypoint, dependOnEntrypoint) => {
|
|
entrypoint.addDependOn(dependOnEntrypoint);
|
|
};
|
|
|
|
module.exports.connectChunkGroupAndChunk = connectChunkGroupAndChunk;
|
|
module.exports.connectChunkGroupParentAndChild =
|
|
connectChunkGroupParentAndChild;
|
|
module.exports.connectEntrypointAndDependOn = connectEntrypointAndDependOn;
|