react-native-circular-progress-gradient
Version:
React Native component for creating animated, circular progress with react-native-svg
89 lines (73 loc) • 2.22 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import { Animated, Easing } from 'react-native';
import CircularProgress from './CircularProgress';
const AnimatedProgress = Animated.createAnimatedComponent(CircularProgress);
export default class AnimatedCircularProgress extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
fillAnimation: new Animated.Value(props.prefill),
};
}
componentDidMount() {
this.animate();
}
componentDidUpdate(prevProps) {
if (prevProps.fill !== this.props.fill) {
this.animate();
}
}
reAnimate(prefill, toVal, dur, ease) {
this.setState(
{
fillAnimation: new Animated.Value(prefill),
},
() => this.animate(toVal, dur, ease)
);
}
animate(toVal, dur, ease) {
const toValue = toVal >= 0 ? toVal : this.props.fill;
const duration = dur || this.props.duration;
const easing = ease || this.props.easing;
const useNativeDriver = this.props.useNativeDriver;
const anim = Animated.timing(this.state.fillAnimation, {
useNativeDriver,
toValue,
easing,
duration,
});
anim.start(this.props.onAnimationComplete);
return anim;
}
animateColor() {
if (!this.props.tintColorSecondary) {
return this.props.tintColor
}
const tintAnimation = this.state.fillAnimation.interpolate({
inputRange: [0, 100],
outputRange: [this.props.tintColor, this.props.tintColorSecondary]
})
return tintAnimation
}
render() {
const { fill, prefill, reAnimateOnPress, ...other } = this.props;
return <AnimatedProgress {...other} fill={this.state.fillAnimation} onPress={reAnimateOnPress ? () => this.reAnimate(prefill) : undefined} />;
}
}
AnimatedCircularProgress.propTypes = {
...CircularProgress.propTypes,
prefill: PropTypes.number,
duration: PropTypes.number,
easing: PropTypes.func,
onAnimationComplete: PropTypes.func,
useNativeDriver: PropTypes.bool,
reAnimateOnPress: PropTypes.bool,
};
AnimatedCircularProgress.defaultProps = {
duration: 500,
easing: Easing.out(Easing.ease),
prefill: 0,
useNativeDriver: false,
reAnimateOnPress: true,
};