36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import Styles from "@/constants/Styles";
|
|
import { useEffect, useState } from "react";
|
|
import { Animated, View } from "react-native";
|
|
|
|
|
|
type Props = {
|
|
margin?: number
|
|
value: number
|
|
category: "page" | "carousel" | "list"
|
|
}
|
|
|
|
export default function ProgressBar({ margin, value, category }: Props) {
|
|
const [progress, setProgress] = useState(new Animated.Value(0));
|
|
const [totalProgress, setTotalProgress] = useState(category == 'carousel' ? 232 : category == 'page' ? 245 : 290);
|
|
|
|
|
|
useEffect(() => {
|
|
Animated.timing(progress, {
|
|
// carousel:: 100% = 255
|
|
// page:: 100% = 290
|
|
// wrapbar :: 90%
|
|
toValue: value / 100 * totalProgress,
|
|
duration: 1000,
|
|
useNativeDriver: false
|
|
}).start();
|
|
}, [value]);
|
|
|
|
|
|
return (
|
|
<View style={[Styles.contentItemCenter]}>
|
|
<View style={[Styles.wrapBar, { margin: margin && margin }]}>
|
|
<Animated.View style={[Styles.contentBar, { width: progress }]} />
|
|
</View>
|
|
</View>
|
|
)
|
|
} |