UNPKG

expo-dev-menu

Version:

Expo/React Native module with the developer menu.

66 lines (58 loc) 1.81 kB
import { Animated, Easing, StyleSheet, View } from 'react-native'; import GenericTouchable, { TOUCHABLE_STATE } from './GenericTouchable'; import React, { Component } from 'react'; import PropTypes from 'prop-types'; /** * TouchableOpacity bases on timing animation which has been used in RN's core */ export default class TouchableOpacity extends Component { static defaultProps = { ...GenericTouchable.defaultProps, activeOpacity: 0.2, }; static propTypes = { ...GenericTouchable.publicPropTypes, style: PropTypes.any, activeOpacity: PropTypes.number, }; // opacity is 1 one by default but could be overwritten getChildStyleOpacityWithDefault = () => { const childStyle = StyleSheet.flatten(this.props.style) || {}; return childStyle.opacity == null ? 1 : childStyle.opacity; }; opacity = new Animated.Value(this.getChildStyleOpacityWithDefault()); setOpacityTo = (value, duration) => { Animated.timing(this.opacity, { toValue: value, duration: duration, easing: Easing.inOut(Easing.quad), useNativeDriver: true, }).start(); }; onStateChange = (from, to) => { if (to === TOUCHABLE_STATE.BEGAN) { this.setOpacityTo(this.props.activeOpacity, 0); } else if ( to === TOUCHABLE_STATE.UNDETERMINED || to === TOUCHABLE_STATE.MOVED_OUTSIDE ) { this.setOpacityTo(this.getChildStyleOpacityWithDefault(), 150); } }; render() { const { style = {}, ...rest } = this.props; return ( <GenericTouchable {...rest} style={[ style, { opacity: this.opacity, }, ]} onStateChange={this.onStateChange}> {this.props.children ? this.props.children : <View />} </GenericTouchable> ); } }