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>
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
import { createElement } from "react";
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import classnames from 'classnames';
|
|
/**
|
|
* WordPress dependencies
|
|
*/
|
|
import { forwardRef } from '@wordpress/element';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
|
|
import { UnitSelect, UnitLabel } from './styles/unit-control-styles';
|
|
import { CSS_UNITS, hasUnits } from './utils';
|
|
function UnitSelectControl({
|
|
className,
|
|
isUnitSelectTabbable: isTabbable = true,
|
|
onChange,
|
|
size = 'default',
|
|
unit = 'px',
|
|
units = CSS_UNITS,
|
|
...props
|
|
}, ref) {
|
|
if (!hasUnits(units) || units?.length === 1) {
|
|
return createElement(UnitLabel, {
|
|
className: "components-unit-control__unit-label",
|
|
selectSize: size
|
|
}, unit);
|
|
}
|
|
const handleOnChange = event => {
|
|
const {
|
|
value: unitValue
|
|
} = event.target;
|
|
const data = units.find(option => option.value === unitValue);
|
|
onChange?.(unitValue, {
|
|
event,
|
|
data
|
|
});
|
|
};
|
|
const classes = classnames('components-unit-control__select', className);
|
|
return createElement(UnitSelect, {
|
|
ref: ref,
|
|
className: classes,
|
|
onChange: handleOnChange,
|
|
selectSize: size,
|
|
tabIndex: isTabbable ? undefined : -1,
|
|
value: unit,
|
|
...props
|
|
}, units.map(option => createElement("option", {
|
|
value: option.value,
|
|
key: option.value
|
|
}, option.label)));
|
|
}
|
|
export default forwardRef(UnitSelectControl);
|
|
//# sourceMappingURL=unit-select-control.js.map
|