59 lines
2.0 KiB
JavaScript
59 lines
2.0 KiB
JavaScript
"use strict";
|
|
|
|
import { Animated, Easing, StyleSheet, View } from 'react-native';
|
|
import GenericTouchable, { TOUCHABLE_STATE } from './GenericTouchable';
|
|
import * as React from 'react';
|
|
import { Component } from 'react';
|
|
|
|
/**
|
|
* @deprecated TouchableOpacity will be removed in the future version of Gesture Handler. Use Pressable instead.
|
|
*/
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
/**
|
|
* @deprecated TouchableOpacity will be removed in the future version of Gesture Handler. Use Pressable instead.
|
|
*
|
|
* 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
|
|
};
|
|
|
|
// 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.valueOf();
|
|
};
|
|
opacity = new Animated.Value(this.getChildStyleOpacityWithDefault());
|
|
setOpacityTo = (value, duration) => {
|
|
Animated.timing(this.opacity, {
|
|
toValue: value,
|
|
duration: duration,
|
|
easing: Easing.inOut(Easing.quad),
|
|
useNativeDriver: this.props.useNativeAnimations ?? 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 /*#__PURE__*/_jsx(GenericTouchable, {
|
|
...rest,
|
|
style: [style, {
|
|
opacity: this.opacity // TODO: fix this
|
|
}],
|
|
onStateChange: this.onStateChange,
|
|
children: this.props.children ? this.props.children : /*#__PURE__*/_jsx(View, {})
|
|
});
|
|
}
|
|
}
|
|
//# sourceMappingURL=TouchableOpacity.js.map
|