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>
23 lines
632 B
JavaScript
23 lines
632 B
JavaScript
'use strict';
|
|
|
|
var core = require('@babel/core');
|
|
|
|
const removeJSXAttribute = (_, opts) => ({
|
|
visitor: {
|
|
JSXOpeningElement(path) {
|
|
if (!core.types.isJSXIdentifier(path.node.name))
|
|
return;
|
|
if (!opts.elements.includes(path.node.name.name))
|
|
return;
|
|
path.get("attributes").forEach((attribute) => {
|
|
if (core.types.isJSXAttribute(attribute.node) && core.types.isJSXIdentifier(attribute.node.name) && opts.attributes.includes(attribute.node.name.name)) {
|
|
attribute.remove();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
module.exports = removeJSXAttribute;
|
|
//# sourceMappingURL=index.js.map
|