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>
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.parseExpectCall = void 0;
|
|
const ast_1 = require("./ast");
|
|
const MODIFIER_NAMES = new Set(['not', 'resolves', 'rejects']);
|
|
function getExpectArguments(node) {
|
|
const grandparent = node.parent.parent;
|
|
return grandparent.type === 'CallExpression' ? grandparent.arguments : [];
|
|
}
|
|
function parseExpectCall(node) {
|
|
if (!(0, ast_1.isExpectCall)(node)) {
|
|
return;
|
|
}
|
|
const members = (0, ast_1.getMatchers)(node);
|
|
const modifiers = [];
|
|
let matcher;
|
|
// Separate the matchers (e.g. toBe) from modifiers (e.g. not)
|
|
members.forEach((item) => {
|
|
if (MODIFIER_NAMES.has((0, ast_1.getStringValue)(item))) {
|
|
modifiers.push(item);
|
|
}
|
|
else {
|
|
matcher = item;
|
|
}
|
|
});
|
|
// Rules only run against full expect calls with matchers
|
|
if (!matcher) {
|
|
return;
|
|
}
|
|
return {
|
|
args: getExpectArguments(matcher),
|
|
matcher,
|
|
matcherName: (0, ast_1.getStringValue)(matcher),
|
|
members,
|
|
modifiers,
|
|
};
|
|
}
|
|
exports.parseExpectCall = parseExpectCall;
|