import color from 'color'; import * as React from 'react'; import { Animated, StyleSheet, View } from 'react-native'; import { withTheme } from '../../core/theming'; import type { $RemoveChildren } from '../../types'; import MaterialCommunityIcon from '../MaterialCommunityIcon'; import TouchableRipple from '../TouchableRipple/TouchableRipple'; type Props = $RemoveChildren & { /** * Status of checkbox. */ status: 'checked' | 'unchecked' | 'indeterminate'; /** * Whether checkbox is disabled. */ disabled?: boolean; /** * Function to execute on press. */ onPress?: () => void; /** * Custom color for unchecked checkbox. */ uncheckedColor?: string; /** * Custom color for checkbox. */ color?: string; /** * @optional */ theme: ReactNativePaper.Theme; /** * testID to be used on tests. */ testID?: string; }; // From https://material.io/design/motion/speed.html#duration const ANIMATION_DURATION = 100; /** * Checkboxes allow the selection of multiple options from a set. * This component follows platform guidelines for Android, but can be used * on any platform. * *
*
* *
Enabled
*
*
* *
Disabled
*
*
*/ const CheckboxAndroid = ({ status, theme, disabled, onPress, testID, ...rest }: Props) => { const { current: scaleAnim } = React.useRef( new Animated.Value(1) ); const isFirstRendering = React.useRef(true); const { animation: { scale }, } = theme; React.useEffect(() => { // Do not run animation on very first rendering if (isFirstRendering.current) { isFirstRendering.current = false; return; } const checked = status === 'checked'; Animated.sequence([ Animated.timing(scaleAnim, { toValue: 0.85, duration: checked ? ANIMATION_DURATION * scale : 0, useNativeDriver: false, }), Animated.timing(scaleAnim, { toValue: 1, duration: checked ? ANIMATION_DURATION * scale : ANIMATION_DURATION * scale * 1.75, useNativeDriver: false, }), ]).start(); }, [status, scaleAnim, scale]); const checked = status === 'checked'; const indeterminate = status === 'indeterminate'; const checkedColor = rest.color || theme.colors.accent; const uncheckedColor = rest.uncheckedColor || color(theme.colors.text) .alpha(theme.dark ? 0.7 : 0.54) .rgb() .string(); let rippleColor, checkboxColor; if (disabled) { rippleColor = color(theme.colors.text).alpha(0.16).rgb().string(); checkboxColor = theme.colors.disabled; } else { rippleColor = color(checkedColor).fade(0.32).rgb().string(); checkboxColor = checked ? checkedColor : uncheckedColor; } const borderWidth = scaleAnim.interpolate({ inputRange: [0.8, 1], outputRange: [7, 0], }); const icon = indeterminate ? 'minus-box' : checked ? 'checkbox-marked' : 'checkbox-blank-outline'; return ( ); }; CheckboxAndroid.displayName = 'Checkbox.Android'; const styles = StyleSheet.create({ container: { borderRadius: 18, width: 36, height: 36, padding: 6, }, fillContainer: { alignItems: 'center', justifyContent: 'center', }, fill: { height: 14, width: 14, }, }); export default withTheme(CheckboxAndroid); // @component-docs ignore-next-line const CheckboxAndroidWithTheme = withTheme(CheckboxAndroid); // @component-docs ignore-next-line export { CheckboxAndroidWithTheme as CheckboxAndroid };