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>
199 lines
7.2 KiB
JavaScript
199 lines
7.2 KiB
JavaScript
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.UnitControl = void 0;
|
|
Object.defineProperty(exports, "parseQuantityAndUnitFromRawValue", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _utils.parseQuantityAndUnitFromRawValue;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "useCustomUnits", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _utils.useCustomUnits;
|
|
}
|
|
});
|
|
var _react = require("react");
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
var _deprecated = _interopRequireDefault(require("@wordpress/deprecated"));
|
|
var _element = require("@wordpress/element");
|
|
var _i18n = require("@wordpress/i18n");
|
|
var _unitControlStyles = require("./styles/unit-control-styles");
|
|
var _unitSelectControl = _interopRequireDefault(require("./unit-select-control"));
|
|
var _utils = require("./utils");
|
|
var _hooks = require("../utils/hooks");
|
|
var _strings = require("../utils/strings");
|
|
var _useDeprecatedProps = require("../utils/use-deprecated-props");
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
|
|
/**
|
|
* WordPress dependencies
|
|
*/
|
|
|
|
function UnforwardedUnitControl(unitControlProps, forwardedRef) {
|
|
const {
|
|
__unstableStateReducer,
|
|
autoComplete = 'off',
|
|
// @ts-expect-error Ensure that children is omitted from restProps
|
|
children,
|
|
className,
|
|
disabled = false,
|
|
disableUnits = false,
|
|
isPressEnterToChange = false,
|
|
isResetValueOnUnitChange = false,
|
|
isUnitSelectTabbable = true,
|
|
label,
|
|
onChange: onChangeProp,
|
|
onUnitChange,
|
|
size = 'default',
|
|
unit: unitProp,
|
|
units: unitsProp = _utils.CSS_UNITS,
|
|
value: valueProp,
|
|
onFocus: onFocusProp,
|
|
...props
|
|
} = (0, _useDeprecatedProps.useDeprecated36pxDefaultSizeProp)(unitControlProps, 'wp.components.UnitControl', '6.4');
|
|
if ('unit' in unitControlProps) {
|
|
(0, _deprecated.default)('UnitControl unit prop', {
|
|
since: '5.6',
|
|
hint: 'The unit should be provided within the `value` prop.',
|
|
version: '6.2'
|
|
});
|
|
}
|
|
|
|
// The `value` prop, in theory, should not be `null`, but the following line
|
|
// ensures it fallback to `undefined` in case a consumer of `UnitControl`
|
|
// still passes `null` as a `value`.
|
|
const nonNullValueProp = valueProp !== null && valueProp !== void 0 ? valueProp : undefined;
|
|
const [units, reFirstCharacterOfUnits] = (0, _element.useMemo)(() => {
|
|
const list = (0, _utils.getUnitsWithCurrentUnit)(nonNullValueProp, unitProp, unitsProp);
|
|
const [{
|
|
value: firstUnitValue = ''
|
|
} = {}, ...rest] = list;
|
|
const firstCharacters = rest.reduce((carry, {
|
|
value
|
|
}) => {
|
|
const first = (0, _strings.escapeRegExp)(value?.substring(0, 1) || '');
|
|
return carry.includes(first) ? carry : `${carry}|${first}`;
|
|
}, (0, _strings.escapeRegExp)(firstUnitValue.substring(0, 1)));
|
|
return [list, new RegExp(`^(?:${firstCharacters})$`, 'i')];
|
|
}, [nonNullValueProp, unitProp, unitsProp]);
|
|
const [parsedQuantity, parsedUnit] = (0, _utils.getParsedQuantityAndUnit)(nonNullValueProp, unitProp, units);
|
|
const [unit, setUnit] = (0, _hooks.useControlledState)(units.length === 1 ? units[0].value : unitProp, {
|
|
initial: parsedUnit,
|
|
fallback: ''
|
|
});
|
|
(0, _element.useEffect)(() => {
|
|
if (parsedUnit !== undefined) {
|
|
setUnit(parsedUnit);
|
|
}
|
|
}, [parsedUnit, setUnit]);
|
|
const classes = (0, _classnames.default)('components-unit-control',
|
|
// This class is added for legacy purposes to maintain it on the outer
|
|
// wrapper. See: https://github.com/WordPress/gutenberg/pull/45139
|
|
'components-unit-control-wrapper', className);
|
|
const handleOnQuantityChange = (nextQuantityValue, changeProps) => {
|
|
if (nextQuantityValue === '' || typeof nextQuantityValue === 'undefined' || nextQuantityValue === null) {
|
|
onChangeProp?.('', changeProps);
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* Customizing the onChange callback.
|
|
* This allows as to broadcast a combined value+unit to onChange.
|
|
*/
|
|
const onChangeValue = (0, _utils.getValidParsedQuantityAndUnit)(nextQuantityValue, units, parsedQuantity, unit).join('');
|
|
onChangeProp?.(onChangeValue, changeProps);
|
|
};
|
|
const handleOnUnitChange = (nextUnitValue, changeProps) => {
|
|
const {
|
|
data
|
|
} = changeProps;
|
|
let nextValue = `${parsedQuantity !== null && parsedQuantity !== void 0 ? parsedQuantity : ''}${nextUnitValue}`;
|
|
if (isResetValueOnUnitChange && data?.default !== undefined) {
|
|
nextValue = `${data.default}${nextUnitValue}`;
|
|
}
|
|
onChangeProp?.(nextValue, changeProps);
|
|
onUnitChange?.(nextUnitValue, changeProps);
|
|
setUnit(nextUnitValue);
|
|
};
|
|
let handleOnKeyDown;
|
|
if (!disableUnits && isUnitSelectTabbable && units.length) {
|
|
handleOnKeyDown = event => {
|
|
props.onKeyDown?.(event);
|
|
// Unless the meta key was pressed (to avoid interfering with
|
|
// shortcuts, e.g. pastes), moves focus to the unit select if a key
|
|
// matches the first character of a unit.
|
|
if (!event.metaKey && reFirstCharacterOfUnits.test(event.key)) refInputSuffix.current?.focus();
|
|
};
|
|
}
|
|
const refInputSuffix = (0, _element.useRef)(null);
|
|
const inputSuffix = !disableUnits ? (0, _react.createElement)(_unitSelectControl.default, {
|
|
ref: refInputSuffix,
|
|
"aria-label": (0, _i18n.__)('Select unit'),
|
|
disabled: disabled,
|
|
isUnitSelectTabbable: isUnitSelectTabbable,
|
|
onChange: handleOnUnitChange,
|
|
size: ['small', 'compact'].includes(size) || size === 'default' && !props.__next40pxDefaultSize ? 'small' : 'default',
|
|
unit: unit,
|
|
units: units,
|
|
onFocus: onFocusProp,
|
|
onBlur: unitControlProps.onBlur
|
|
}) : null;
|
|
let step = props.step;
|
|
|
|
/*
|
|
* If no step prop has been passed, lookup the active unit and
|
|
* try to get step from `units`, or default to a value of `1`
|
|
*/
|
|
if (!step && units) {
|
|
var _activeUnit$step;
|
|
const activeUnit = units.find(option => option.value === unit);
|
|
step = (_activeUnit$step = activeUnit?.step) !== null && _activeUnit$step !== void 0 ? _activeUnit$step : 1;
|
|
}
|
|
return (0, _react.createElement)(_unitControlStyles.ValueInput, {
|
|
...props,
|
|
autoComplete: autoComplete,
|
|
className: classes,
|
|
disabled: disabled,
|
|
spinControls: "none",
|
|
isPressEnterToChange: isPressEnterToChange,
|
|
label: label,
|
|
onKeyDown: handleOnKeyDown,
|
|
onChange: handleOnQuantityChange,
|
|
ref: forwardedRef,
|
|
size: size,
|
|
suffix: inputSuffix,
|
|
type: isPressEnterToChange ? 'text' : 'number',
|
|
value: parsedQuantity !== null && parsedQuantity !== void 0 ? parsedQuantity : '',
|
|
step: step,
|
|
onFocus: onFocusProp,
|
|
__unstableStateReducer: __unstableStateReducer
|
|
});
|
|
}
|
|
|
|
/**
|
|
* `UnitControl` allows the user to set a numeric quantity as well as a unit (e.g. `px`).
|
|
*
|
|
*
|
|
* ```jsx
|
|
* import { __experimentalUnitControl as UnitControl } from '@wordpress/components';
|
|
* import { useState } from '@wordpress/element';
|
|
*
|
|
* const Example = () => {
|
|
* const [ value, setValue ] = useState( '10px' );
|
|
*
|
|
* return <UnitControl onChange={ setValue } value={ value } />;
|
|
* };
|
|
* ```
|
|
*/
|
|
const UnitControl = (0, _element.forwardRef)(UnforwardedUnitControl);
|
|
exports.UnitControl = UnitControl;
|
|
var _default = UnitControl;
|
|
exports.default = _default;
|
|
//# sourceMappingURL=index.js.map
|