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>
148 lines
5.4 KiB
JavaScript
148 lines
5.4 KiB
JavaScript
import { createElement, Fragment } from "react";
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { Text, View, TouchableWithoutFeedback, Platform, findNodeHandle } from 'react-native';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import RangeCell from '../mobile/bottom-sheet/range-cell';
|
|
import StepperCell from '../mobile/bottom-sheet/stepper-cell';
|
|
import Picker from '../mobile/picker';
|
|
import styles from './style.scss';
|
|
import { CSS_UNITS, hasUnits, getAccessibleLabelForUnit } from './utils';
|
|
|
|
/**
|
|
* WordPress dependencies
|
|
*/
|
|
import { useRef, useCallback, useMemo, memo } from '@wordpress/element';
|
|
import { withPreferredColorScheme } from '@wordpress/compose';
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
function UnitControl({
|
|
currentInput,
|
|
label,
|
|
value,
|
|
onChange,
|
|
onUnitChange,
|
|
initialPosition,
|
|
min,
|
|
max,
|
|
separatorType,
|
|
units = CSS_UNITS,
|
|
unit,
|
|
getStylesFromColorScheme,
|
|
...props
|
|
}) {
|
|
const pickerRef = useRef();
|
|
const anchorNodeRef = useRef();
|
|
const onPickerPresent = useCallback(() => {
|
|
if (pickerRef?.current) {
|
|
pickerRef.current.presentPicker();
|
|
}
|
|
// Disable reason: this should be fixed by the native team.
|
|
// It would be great if this could be done in the context of
|
|
// https://github.com/WordPress/gutenberg/pull/39218
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [pickerRef?.current]);
|
|
const currentInputValue = currentInput === null ? value : currentInput;
|
|
const initialControlValue = isFinite(currentInputValue) ? currentInputValue : initialPosition;
|
|
const unitButtonTextStyle = getStylesFromColorScheme(styles.unitButtonText, styles.unitButtonTextDark);
|
|
|
|
/* translators: accessibility text. Inform about current unit value. %s: Current unit value. */
|
|
const accessibilityLabel = sprintf(__('Current unit is %s'), unit);
|
|
const accessibilityHint = Platform.OS === 'ios' ? __('Double tap to open Action Sheet with available options') : __('Double tap to open Bottom Sheet with available options');
|
|
const renderUnitButton = useMemo(() => {
|
|
const unitButton = createElement(View, {
|
|
style: styles.unitButton
|
|
}, createElement(Text, {
|
|
style: unitButtonTextStyle
|
|
}, unit));
|
|
if (hasUnits(units) && units?.length > 1) {
|
|
return createElement(TouchableWithoutFeedback, {
|
|
onPress: onPickerPresent,
|
|
accessibilityLabel: accessibilityLabel,
|
|
accessibilityRole: "button",
|
|
accessibilityHint: accessibilityHint
|
|
}, unitButton);
|
|
}
|
|
return unitButton;
|
|
}, [onPickerPresent, accessibilityLabel, accessibilityHint, unitButtonTextStyle, unit, units]);
|
|
const getAnchor = useCallback(() => anchorNodeRef?.current ? findNodeHandle(anchorNodeRef?.current) : undefined,
|
|
// Disable reason: this should be fixed by the native team.
|
|
// It would be great if this could be done in the context of
|
|
// https://github.com/WordPress/gutenberg/pull/39218
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[anchorNodeRef?.current]);
|
|
const getDecimal = step => {
|
|
// Return the decimal offset based on the step size.
|
|
// if step size is 0.1 we expect the offset to be 1.
|
|
// for example 12 + 0.1 we would expect the see 12.1 (not 12.10 or 12 );
|
|
// steps are defined in the CSS_UNITS and they vary from unit to unit.
|
|
const stepToString = step;
|
|
const splitStep = stepToString.toString().split('.');
|
|
return splitStep[1] ? splitStep[1].length : 0;
|
|
};
|
|
const renderUnitPicker = useCallback(() => {
|
|
// Keeping for legacy reasons, although `false` should not be a valid
|
|
// value for the `units` prop anymore.
|
|
if (units === false) {
|
|
return null;
|
|
}
|
|
return createElement(View, {
|
|
style: styles.unitMenu,
|
|
ref: anchorNodeRef
|
|
}, renderUnitButton, hasUnits(units) && units?.length > 1 ? createElement(Picker, {
|
|
ref: pickerRef,
|
|
options: units,
|
|
onChange: onUnitChange,
|
|
hideCancelButton: true,
|
|
leftAlign: true,
|
|
getAnchor: getAnchor
|
|
}) : null);
|
|
}, [pickerRef, units, onUnitChange, getAnchor, renderUnitButton]);
|
|
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;
|
|
}
|
|
const decimalNum = getDecimal(step);
|
|
return createElement(Fragment, null, unit !== '%' ? createElement(StepperCell, {
|
|
label: label,
|
|
max: max,
|
|
min: min,
|
|
onChange: onChange,
|
|
separatorType: separatorType,
|
|
value: value,
|
|
step: step,
|
|
defaultValue: initialControlValue,
|
|
shouldDisplayTextInput: true,
|
|
decimalNum: decimalNum,
|
|
openUnitPicker: onPickerPresent,
|
|
unitLabel: getAccessibleLabelForUnit(unit),
|
|
...props
|
|
}, renderUnitPicker()) : createElement(RangeCell, {
|
|
label: label,
|
|
onChange: onChange,
|
|
minimumValue: min,
|
|
maximumValue: max,
|
|
value: value,
|
|
step: step,
|
|
unit: unit,
|
|
defaultValue: initialControlValue,
|
|
separatorType: separatorType,
|
|
decimalNum: decimalNum,
|
|
openUnitPicker: onPickerPresent,
|
|
unitLabel: getAccessibleLabelForUnit(unit),
|
|
...props
|
|
}, renderUnitPicker()));
|
|
}
|
|
export { useCustomUnits } from './utils';
|
|
export default memo(withPreferredColorScheme(UnitControl));
|
|
//# sourceMappingURL=index.native.js.map
|