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>
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
var callBound = require('call-bound');
|
|
var $toString = callBound('Object.prototype.toString');
|
|
var hasSymbols = require('has-symbols')();
|
|
var safeRegexTest = require('safe-regex-test');
|
|
|
|
if (hasSymbols) {
|
|
var $symToStr = callBound('Symbol.prototype.toString');
|
|
var isSymString = safeRegexTest(/^Symbol\(.*\)$/);
|
|
|
|
/** @type {(value: object) => value is Symbol} */
|
|
var isSymbolObject = function isRealSymbolObject(value) {
|
|
if (typeof value.valueOf() !== 'symbol') {
|
|
return false;
|
|
}
|
|
return isSymString($symToStr(value));
|
|
};
|
|
|
|
/** @type {import('.')} */
|
|
module.exports = function isSymbol(value) {
|
|
if (typeof value === 'symbol') {
|
|
return true;
|
|
}
|
|
if (!value || typeof value !== 'object' || $toString(value) !== '[object Symbol]') {
|
|
return false;
|
|
}
|
|
try {
|
|
return isSymbolObject(value);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
};
|
|
} else {
|
|
/** @type {import('.')} */
|
|
module.exports = function isSymbol(value) {
|
|
// this environment does not support Symbols.
|
|
return false && value;
|
|
};
|
|
}
|