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>
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isShallowEqual;
|
|
Object.defineProperty(exports, "isShallowEqualArrays", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _arrays.default;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "isShallowEqualObjects", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _objects.default;
|
|
}
|
|
});
|
|
var _objects = _interopRequireDefault(require("./objects"));
|
|
var _arrays = _interopRequireDefault(require("./arrays"));
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
|
|
/**
|
|
* @typedef {Record<string, any>} ComparableObject
|
|
*/
|
|
|
|
/**
|
|
* Returns true if the two arrays or objects are shallow equal, or false
|
|
* otherwise. Also handles primitive values, just in case.
|
|
*
|
|
* @param {unknown} a First object or array to compare.
|
|
* @param {unknown} b Second object or array to compare.
|
|
*
|
|
* @return {boolean} Whether the two values are shallow equal.
|
|
*/
|
|
function isShallowEqual(a, b) {
|
|
if (a && b) {
|
|
if (a.constructor === Object && b.constructor === Object) {
|
|
return (0, _objects.default)(a, b);
|
|
} else if (Array.isArray(a) && Array.isArray(b)) {
|
|
return (0, _arrays.default)(a, b);
|
|
}
|
|
}
|
|
return a === b;
|
|
}
|
|
//# sourceMappingURL=index.js.map
|