@fto-consult/expo-ui
Version:
Bibliothèque de composants UI Expo,react-native
57 lines (47 loc) • 1.22 kB
JavaScript
import React, { useEffect, useRef } from "react";
import { Animated, StyleSheet, ViewProps } from "react-native";
import { AnimationContext } from "./context";
const START_VALUE = 0;
const END_VALUE = 100;
const isInteraction = false;
export const Shine = ({
duration,
children,
style,
reverse,
}) => {
const animation = useRef(new Animated.Value(START_VALUE));
const start = () => {
animation.current.setValue(START_VALUE);
Animated.timing(animation.current, {
duration: duration || 750,
isInteraction,
toValue: END_VALUE,
useNativeDriver: false,
}).start((e) => {
if (e.finished) {
start();
}
});
};
useEffect(() => {
start();
}, []);
const left = animation.current.interpolate({
inputRange: [START_VALUE, END_VALUE],
outputRange: reverse ? ["100%", "0%"] : ["0%", "100%"],
});
return (
<AnimationContext.Provider value={[styles.shine, { left }, style]}>
{children}
</AnimationContext.Provider>
);
};
const styles = StyleSheet.create({
shine: {
backgroundColor: "white",
height: "100%",
opacity: 0.5,
width: "40%",
},
});