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>
38 lines
1004 B
JavaScript
38 lines
1004 B
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
var isObject = require('es-object-atoms/isObject');
|
|
|
|
var objectKeys = require('object-keys');
|
|
var callBound = require('call-bound');
|
|
var safePushApply = require('safe-push-apply');
|
|
|
|
var $isEnumerable = callBound('Object.prototype.propertyIsEnumerable');
|
|
|
|
var forEach = require('../helpers/forEach');
|
|
|
|
// https://262.ecma-international.org/8.0/#sec-enumerableownproperties
|
|
|
|
module.exports = function EnumerableOwnProperties(O, kind) {
|
|
if (!isObject(O)) {
|
|
throw new $TypeError('Assertion failed: Type(O) is not Object');
|
|
}
|
|
|
|
var keys = objectKeys(O);
|
|
if (kind === 'key') {
|
|
return keys;
|
|
}
|
|
if (kind === 'value' || kind === 'key+value') {
|
|
var results = [];
|
|
forEach(keys, function (key) {
|
|
if ($isEnumerable(O, key)) {
|
|
safePushApply(results, [
|
|
kind === 'value' ? O[key] : [key, O[key]]
|
|
]);
|
|
}
|
|
});
|
|
return results;
|
|
}
|
|
throw new $TypeError('Assertion failed: "kind" is not "key", "value", or "key+value": ' + kind);
|
|
};
|