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>
64 lines
1.1 KiB
JavaScript
64 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const blurInterpolation = require('./blurInterpolation');
|
|
const isStandardSyntaxValue = require('./isStandardSyntaxValue');
|
|
const valueParser = require('postcss-value-parser');
|
|
|
|
/**
|
|
* Get Dimension from value node;
|
|
* `unit` and `number` return null if neither is found
|
|
*
|
|
* @param {import('postcss-value-parser').Node} node
|
|
*
|
|
* @returns {{unit: null, number: null} | valueParser.Dimension}
|
|
*/
|
|
module.exports = function getDimension(node) {
|
|
if (!node || !node.value) {
|
|
return {
|
|
unit: null,
|
|
number: null,
|
|
};
|
|
}
|
|
|
|
// Ignore non-word nodes
|
|
if (node.type !== 'word') {
|
|
return {
|
|
unit: null,
|
|
number: null,
|
|
};
|
|
}
|
|
|
|
// Ignore non standard syntax
|
|
if (!isStandardSyntaxValue(node.value)) {
|
|
return {
|
|
unit: null,
|
|
number: null,
|
|
};
|
|
}
|
|
|
|
// Ignore HEX
|
|
if (node.value.startsWith('#')) {
|
|
return {
|
|
unit: null,
|
|
number: null,
|
|
};
|
|
}
|
|
|
|
// Remove non standard stuff
|
|
const value = blurInterpolation(node.value, '')
|
|
// ignore hack unit
|
|
.replace('\\0', '')
|
|
.replace('\\9', '');
|
|
|
|
const parsedUnit = valueParser.unit(value);
|
|
|
|
if (!parsedUnit) {
|
|
return {
|
|
unit: null,
|
|
number: null,
|
|
};
|
|
}
|
|
|
|
return parsedUnit;
|
|
};
|