import * as React from 'react'; import { PressableAndroidRippleConfig, StyleProp, Platform, ViewStyle, StyleSheet, Pressable, GestureResponderEvent, } from 'react-native'; import { useInternalTheme } from '../../core/theming'; import type { ThemeProp } from '../../types'; import { getTouchableRippleColors } from './utils'; const ANDROID_VERSION_LOLLIPOP = 21; const ANDROID_VERSION_PIE = 28; export type Props = React.ComponentProps & { borderless?: boolean; background?: PressableAndroidRippleConfig; centered?: boolean; disabled?: boolean; onPress?: (e: GestureResponderEvent) => void | null; onLongPress?: (e: GestureResponderEvent) => void; rippleColor?: string; underlayColor?: string; children: React.ReactNode; style?: StyleProp; theme?: ThemeProp; }; const TouchableRipple = ({ style, background, borderless = false, disabled: disabledProp, rippleColor, underlayColor, children, theme: themeOverrides, ...rest }: Props) => { const theme = useInternalTheme(themeOverrides); const [showUnderlay, setShowUnderlay] = React.useState(false); const disabled = disabledProp || !rest.onPress; const { calculatedRippleColor, calculatedUnderlayColor } = getTouchableRippleColors({ theme, rippleColor, underlayColor, }); // A workaround for ripple on Android P is to use useForeground + overflow: 'hidden' // https://github.com/facebook/react-native/issues/6480 const useForeground = Platform.OS === 'android' && Platform.Version >= ANDROID_VERSION_PIE && borderless; const handlePressIn = (e: GestureResponderEvent) => { setShowUnderlay(true); rest.onPressIn?.(e); }; const handlePressOut = (e: GestureResponderEvent) => { setShowUnderlay(false); rest.onPressOut?.(e); }; if (TouchableRipple.supported) { return ( {React.Children.only(children)} ); } return ( {React.Children.only(children)} ); }; TouchableRipple.supported = Platform.OS === 'android' && Platform.Version >= ANDROID_VERSION_LOLLIPOP; const styles = StyleSheet.create({ overflowHidden: { overflow: 'hidden', }, }); export default TouchableRipple;