@wordpress/components
Version:
UI components for WordPress.
176 lines (163 loc) • 5.19 kB
JavaScript
import { createElement, Fragment } from "@wordpress/element";
/**
* External dependencies
*/
import { View, Text, TouchableWithoutFeedback, Platform } from 'react-native';
import HsvColorPicker from 'react-native-hsv-color-picker';
import tinycolor from 'tinycolor2';
/**
* WordPress dependencies
*/
import { useState, useEffect, useRef } from '@wordpress/element';
import { __ } from '@wordpress/i18n';
import { BottomSheet } from '@wordpress/components';
import { usePreferredColorSchemeStyle } from '@wordpress/compose';
import { Icon, check, close } from '@wordpress/icons';
/**
* Internal dependencies
*/
import styles from './style.scss';
function ColorPicker({
shouldEnableBottomSheetScroll,
shouldEnableBottomSheetMaxHeight,
isBottomSheetContentScrolling,
setColor,
activeColor,
isGradientColor,
onNavigationBack,
onHandleClosingBottomSheet,
onBottomSheetClosed,
onHandleHardwareButtonPress,
bottomLabelText
}) {
const didMount = useRef(false);
const isIOS = Platform.OS === 'ios';
const hitSlop = {
top: 22,
bottom: 22,
left: 22,
right: 22
};
const {
h: initH,
s: initS,
v: initV
} = !isGradientColor && activeColor ? tinycolor(activeColor).toHsv() : {
h: 0,
s: 0.5,
v: 0.5
};
const [hue, setHue] = useState(initH);
const [sat, setSaturation] = useState(initS);
const [val, setValue] = useState(initV);
const [savedColor] = useState(activeColor);
const {
paddingLeft: spacing,
height: pickerHeight,
borderRadius
} = styles.picker;
const {
height: pickerPointerSize
} = styles.pickerPointer;
const pickerWidth = BottomSheet.getWidth() - 2 * spacing;
const applyButtonStyle = usePreferredColorSchemeStyle(styles.applyButton, styles.applyButtonDark);
const cancelButtonStyle = usePreferredColorSchemeStyle(styles.cancelButton, styles.cancelButtonDark);
const colorTextStyle = usePreferredColorSchemeStyle(styles.colorText, styles.colorTextDark);
const selectColorTextStyle = usePreferredColorSchemeStyle(styles.selectColorText, styles.selectColorTextDark);
const footerStyle = usePreferredColorSchemeStyle(styles.footer, styles.footerDark);
const currentColor = tinycolor(`hsv ${hue} ${sat} ${val}`).toHexString();
useEffect(() => {
if (!didMount.current) {
didMount.current = true;
return;
}
setColor(currentColor);
}, [currentColor]);
useEffect(() => {
shouldEnableBottomSheetMaxHeight(false);
onHandleClosingBottomSheet(() => {
if (savedColor) {
setColor(savedColor);
}
if (onBottomSheetClosed) {
onBottomSheetClosed();
}
});
if (onHandleHardwareButtonPress) {
onHandleHardwareButtonPress(onButtonPress);
}
}, []);
function onHuePickerChange({
hue: h
}) {
setHue(h);
}
function onSatValPickerChange({
saturation: s,
value: v
}) {
setSaturation(s);
setValue(v);
}
function onButtonPress(action) {
onNavigationBack();
onHandleClosingBottomSheet(null);
shouldEnableBottomSheetMaxHeight(true);
setColor(action === 'apply' ? currentColor : savedColor);
if (onBottomSheetClosed) {
onBottomSheetClosed();
}
}
return createElement(Fragment, null, createElement(HsvColorPicker, {
huePickerHue: hue,
onHuePickerDragMove: onHuePickerChange,
onHuePickerPress: !isBottomSheetContentScrolling && onHuePickerChange,
satValPickerHue: hue,
satValPickerSaturation: sat,
satValPickerValue: val,
onSatValPickerDragMove: onSatValPickerChange,
onSatValPickerPress: !isBottomSheetContentScrolling && onSatValPickerChange,
onSatValPickerDragStart: () => {
shouldEnableBottomSheetScroll(false);
},
onSatValPickerDragEnd: () => shouldEnableBottomSheetScroll(true),
onHuePickerDragStart: () => shouldEnableBottomSheetScroll(false),
onHuePickerDragEnd: () => shouldEnableBottomSheetScroll(true),
huePickerBarWidth: pickerWidth,
huePickerBarHeight: pickerPointerSize / 2,
satValPickerSize: {
width: pickerWidth,
height: pickerHeight
},
satValPickerSliderSize: pickerPointerSize * 2,
satValPickerBorderRadius: borderRadius,
huePickerBorderRadius: borderRadius
}), createElement(View, {
style: footerStyle
}, createElement(TouchableWithoutFeedback, {
onPress: () => onButtonPress('cancel'),
hitSlop: hitSlop
}, createElement(View, null, isIOS ? createElement(Text, {
style: cancelButtonStyle
}, __('Cancel')) : createElement(Icon, {
icon: close,
size: 24,
style: cancelButtonStyle
}))), bottomLabelText ? createElement(Text, {
style: selectColorTextStyle
}, bottomLabelText) : createElement(Text, {
style: colorTextStyle,
selectable: true
}, currentColor.toUpperCase()), createElement(TouchableWithoutFeedback, {
onPress: () => onButtonPress('apply'),
hitSlop: hitSlop
}, createElement(View, null, isIOS ? createElement(Text, {
style: applyButtonStyle
}, __('Apply')) : createElement(Icon, {
icon: check,
size: 24,
style: applyButtonStyle
})))));
}
export default ColorPicker;
//# sourceMappingURL=index.native.js.map