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>
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
var callBound = require('call-bound');
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
var isObject = require('es-object-atoms/isObject');
|
|
var $indexOf = callBound('Array.prototype.indexOf', true) || callBound('String.prototype.indexOf');
|
|
|
|
var Get = require('./Get');
|
|
var IsArray = require('./IsArray');
|
|
var ToLength = require('./ToLength');
|
|
var ToString = require('./ToString');
|
|
var Type = require('./Type');
|
|
|
|
var defaultElementTypes = ['Undefined', 'Null', 'Boolean', 'String', 'Symbol', 'Number', 'Object'];
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-createlistfromarraylike
|
|
module.exports = function CreateListFromArrayLike(obj) {
|
|
var elementTypes = arguments.length > 1
|
|
? arguments[1]
|
|
: defaultElementTypes;
|
|
|
|
if (!isObject(obj)) {
|
|
throw new $TypeError('Assertion failed: `obj` must be an Object');
|
|
}
|
|
if (!IsArray(elementTypes)) {
|
|
throw new $TypeError('Assertion failed: `elementTypes`, if provided, must be an array');
|
|
}
|
|
var len = ToLength(Get(obj, 'length'));
|
|
var list = [];
|
|
var index = 0;
|
|
while (index < len) {
|
|
var indexName = ToString(index);
|
|
var next = Get(obj, indexName);
|
|
var nextType = Type(next);
|
|
if ($indexOf(elementTypes, nextType) < 0) {
|
|
throw new $TypeError('item type ' + nextType + ' is not a valid elementType');
|
|
}
|
|
list[list.length] = next;
|
|
index += 1;
|
|
}
|
|
return list;
|
|
};
|