2021-09-13 20:41:05 +00:00
|
|
|
import { Animated, Easing } from 'react-native';
|
2022-01-12 12:54:04 +00:00
|
|
|
import { HeaderStyleInterpolators, TransitionPreset, TransitionPresets } from '@react-navigation/stack';
|
|
|
|
// eslint-disable-next-line import/no-unresolved
|
|
|
|
import { StackCardStyleInterpolator, TransitionSpec } from '@react-navigation/stack/lib/typescript/src/types';
|
2020-06-15 14:00:46 +00:00
|
|
|
|
|
|
|
import { isAndroid } from '../deviceInfo';
|
|
|
|
import conditional from './conditional';
|
|
|
|
|
|
|
|
const { multiply } = Animated;
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
const forFadeFromCenter: StackCardStyleInterpolator = ({ current, closing }) => {
|
2020-06-15 14:00:46 +00:00
|
|
|
const opacity = conditional(
|
|
|
|
closing,
|
|
|
|
current.progress,
|
|
|
|
current.progress.interpolate({
|
|
|
|
inputRange: [0, 0.5, 0.9, 1],
|
|
|
|
outputRange: [0, 0.25, 0.7, 1]
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
return {
|
|
|
|
cardStyle: {
|
|
|
|
opacity
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
const FadeIn: TransitionSpec = {
|
2020-06-15 14:00:46 +00:00
|
|
|
animation: 'timing',
|
|
|
|
config: {
|
|
|
|
duration: 250,
|
|
|
|
easing: Easing.out(Easing.poly(5))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
const FadeOut: TransitionSpec = {
|
2020-06-15 14:00:46 +00:00
|
|
|
animation: 'timing',
|
|
|
|
config: {
|
|
|
|
duration: 150,
|
|
|
|
easing: Easing.in(Easing.poly(5))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const FadeFromCenterModal = {
|
|
|
|
gestureDirection: 'vertical',
|
|
|
|
transitionSpec: {
|
|
|
|
open: FadeIn,
|
|
|
|
close: FadeOut
|
|
|
|
},
|
|
|
|
cardStyleInterpolator: forFadeFromCenter
|
|
|
|
};
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
const forStackAndroid: StackCardStyleInterpolator = ({ current, inverted, layouts: { screen } }) => {
|
2020-06-15 14:00:46 +00:00
|
|
|
const translateX = multiply(
|
|
|
|
current.progress.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [screen.width, 0]
|
|
|
|
}),
|
|
|
|
inverted
|
|
|
|
);
|
|
|
|
|
2020-11-30 21:47:05 +00:00
|
|
|
const opacity = current.progress.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0, 1]
|
|
|
|
});
|
2020-06-15 14:00:46 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
cardStyle: {
|
|
|
|
opacity,
|
|
|
|
transform: [{ translateX }]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
const StackAndroid: TransitionPreset = {
|
2020-06-15 14:00:46 +00:00
|
|
|
gestureDirection: 'horizontal',
|
|
|
|
transitionSpec: {
|
|
|
|
open: FadeIn,
|
|
|
|
close: FadeOut
|
|
|
|
},
|
|
|
|
cardStyleInterpolator: forStackAndroid,
|
|
|
|
headerStyleInterpolator: HeaderStyleInterpolators.forFade
|
|
|
|
};
|
|
|
|
|
|
|
|
export const StackAnimation = isAndroid ? StackAndroid : TransitionPresets.SlideFromRightIOS;
|
|
|
|
export const ModalAnimation = TransitionPresets.ModalTransition;
|