@wordpress/components
Version:
UI components for WordPress.
157 lines (142 loc) • 6.03 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { createElement, Fragment } from "@wordpress/element";
/**
* 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(_ref) {
let {
currentInput,
label,
value,
onChange,
onUnitChange,
initialPosition,
min,
max,
separatorType,
units = CSS_UNITS,
unit,
getStylesFromColorScheme,
...props
} = _ref;
const pickerRef = useRef();
const anchorNodeRef = useRef();
const onPickerPresent = useCallback(() => {
if (pickerRef !== null && pickerRef !== void 0 && 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 === null || pickerRef === void 0 ? void 0 : 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 === null || units === void 0 ? void 0 : 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 !== null && anchorNodeRef !== void 0 && anchorNodeRef.current ? findNodeHandle(anchorNodeRef === null || anchorNodeRef === void 0 ? void 0 : 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 === null || anchorNodeRef === void 0 ? void 0 : 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 === null || units === void 0 ? void 0 : 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 === null || activeUnit === void 0 ? void 0 : activeUnit.step) !== null && _activeUnit$step !== void 0 ? _activeUnit$step : 1;
}
const decimalNum = getDecimal(step);
return createElement(Fragment, null, unit !== '%' ? createElement(StepperCell, _extends({
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, _extends({
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