Created
September 10, 2023 13:12
-
-
Save jamesholcomb/15b69d886da0f8d23318eac2b26decb7 to your computer and use it in GitHub Desktop.
ProgressBar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useState, useCallback } from "react" | |
import { Animated, StyleSheet, View } from "react-native" | |
type ProgressBarProps = { | |
height?: number | |
progress?: number | |
animated?: boolean | |
indeterminate?: boolean | |
progressDuration?: number | |
indeterminateDuration?: number | |
onCompletion?: () => void | |
backgroundColor?: string | |
trackColor?: string | |
} | |
const ProgressBar = ({ | |
height = 2, | |
progress = 0, | |
animated = true, | |
indeterminate = false, | |
progressDuration = 1100, | |
indeterminateDuration = 500, | |
onCompletion = () => {}, | |
backgroundColor, | |
trackColor = "#A6A6A6" | |
}: ProgressBarProps) => { | |
const [timer] = useState(new Animated.Value(0)) | |
const [width] = useState(new Animated.Value(0)) | |
const indeterminateAnimation = Animated.timing(timer, { | |
duration: indeterminateDuration, | |
toValue: 1, | |
useNativeDriver: true, | |
isInteraction: false | |
}) | |
const startAnimation = useCallback(() => { | |
if (indeterminate) { | |
timer.setValue(0) | |
Animated.loop(indeterminateAnimation).start() | |
} else { | |
Animated.timing(width, { | |
duration: animated ? progressDuration : 0, | |
toValue: progress, | |
useNativeDriver: false | |
}).start(() => { | |
onCompletion() | |
}) | |
} | |
}, [ | |
animated, | |
indeterminate, | |
indeterminateAnimation, | |
onCompletion, | |
progress, | |
progressDuration, | |
timer, | |
width | |
]) | |
const stopAnimation = useCallback(() => { | |
if (indeterminateAnimation) indeterminateAnimation.stop() | |
Animated.timing(width, { | |
duration: 200, | |
toValue: 0, | |
useNativeDriver: true, | |
isInteraction: false | |
}).start() | |
}, [indeterminateAnimation, width]) | |
useEffect(() => { | |
if (indeterminate || typeof progress === "number") { | |
startAnimation() | |
} else { | |
stopAnimation() | |
} | |
}, [indeterminate, progress, startAnimation, stopAnimation]) | |
const styleAnimation = () => { | |
return indeterminate | |
? { | |
transform: [ | |
{ | |
translateX: timer.interpolate({ | |
inputRange: [0, 0.5, 1], | |
outputRange: [-0.6 * 320, -0.5 * 0.8 * 320, 0.7 * 320] | |
}) | |
}, | |
{ | |
scaleX: timer.interpolate({ | |
inputRange: [0, 0.5, 1], | |
outputRange: [0.0001, 0.8, 0.0001] | |
}) | |
} | |
] | |
} | |
: { | |
width: width.interpolate({ | |
inputRange: [0, 100], | |
outputRange: ["0%", "100%"] | |
}) | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
width: "100%", | |
height, | |
overflow: "hidden", | |
borderRadius: 4 | |
}, | |
progressBar: { | |
flex: 1, | |
borderRadius: height / 2 | |
} | |
}) | |
return ( | |
<View> | |
<Animated.View | |
style={[styles.container, { backgroundColor: trackColor }]} | |
> | |
<Animated.View | |
style={[ | |
styles.progressBar, | |
{ | |
backgroundColor, | |
...styleAnimation() | |
} | |
]} | |
/> | |
</Animated.View> | |
</View> | |
) | |
} | |
export default ProgressBar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment