@fto-consult/expo-ui
Version:
Bibliothèque de composants UI Expo,react-native
63 lines (55 loc) • 1.42 kB
JavaScript
import React, { useRef } from "react";
import { Animated, StyleSheet, ViewProps } from "react-native";
import { AnimationContext } from "./context";
const START_VALUE = 0;
const END_VALUE = 100;
const DURATION = 750;
const isInteraction = false;
export const Progressive = ({
style,
color = "rgba(0,0,0,0.1)",
children,
}) => {
const animation = useRef(new Animated.Value(START_VALUE));
const start = () => {
Animated.sequence([
Animated.timing(animation.current, {
duration: DURATION,
isInteraction,
toValue: END_VALUE,
useNativeDriver: false,
}),
Animated.timing(animation.current, {
duration: DURATION,
isInteraction,
toValue: START_VALUE,
useNativeDriver: false,
}),
]).start((e) => {
if (e.finished) {
start();
}
});
};
React.useEffect(() => {
start();
}, []);
const right = animation.current.interpolate({
inputRange: [START_VALUE, END_VALUE],
outputRange: ["0%", "100%"],
});
return (
<AnimationContext.Provider
value={[styles.animationStyle, style, { right, backgroundColor: color }]}
>
{children}
</AnimationContext.Provider>
);
};
const styles = StyleSheet.create({
animationStyle: {
height: "100%",
position: "absolute",
width: "100%",
},
});