Created
November 6, 2018 12:06
-
-
Save shafayeatsumit/2f288557faf0203b26fb248539e0784f to your computer and use it in GitHub Desktop.
making a pulse circle using mapboxgl api
This file contains hidden or 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 from 'react'; | |
import PropTypes from 'prop-types'; | |
import { Animated } from 'react-native'; | |
import MapboxGL from '@mapbox/react-native-mapbox-gl'; | |
const styles = MapboxGL.StyleSheet.create({ | |
innerCircle: { | |
circleColor: 'yellow', | |
circleStrokeWidth: 2, | |
circleStrokeColor: '#c6d2e1', | |
}, | |
innerCirclePulse: { | |
circleColor: '#4264fb', | |
circleStrokeColor: '#c6d2e1', | |
circleStrokeWidth: 2, | |
}, | |
outerCircle: { | |
circleOpacity: 0.4, | |
circleColor: '#c6d2e1', | |
}, | |
}); | |
class PulseCircleLayer extends React.Component { | |
static propTypes = { | |
radius: PropTypes.number, | |
pulseRadius: PropTypes.number, | |
duration: PropTypes.number, | |
innerCircleStyle: PropTypes.any, | |
outerCircleStyle: PropTypes.any, | |
shape: PropTypes.any, | |
aboveLayerID: PropTypes.string, | |
}; | |
static defaultProps = { | |
radius: 8, | |
pulseRadius: 30, | |
duration: 1000, | |
}; | |
constructor(props) { | |
super(props); | |
this.state = { | |
innerRadius: new Animated.Value(props.radius * 0.5), | |
pulseOpacity: new Animated.Value(1), | |
pulseRadius: new Animated.Value(props.radius), | |
}; | |
this._loopAnim = null; | |
} | |
componentDidMount() { | |
const expandOutAnim = Animated.parallel([ | |
Animated.timing(this.state.pulseOpacity, { | |
toValue: 0, | |
duration: this.props.duration, | |
}), | |
Animated.timing(this.state.pulseRadius, { | |
toValue: this.props.pulseRadius, | |
duration: this.props.duration, | |
}), | |
Animated.timing(this.state.innerRadius, { | |
toValue: this.props.radius * 0.7, | |
duration: this.props.duration / 2, | |
}), | |
]); | |
const shrinkInAnim = Animated.parallel([ | |
Animated.timing(this.state.pulseRadius, { | |
toValue: this.props.radius, | |
duration: this.props.duration / 2, | |
}), | |
Animated.timing(this.state.innerRadius, { | |
toValue: this.props.radius * 0.5, | |
duration: this.props.duration / 2, | |
}), | |
]); | |
this._loopAnim = Animated.loop( | |
Animated.sequence([expandOutAnim, shrinkInAnim]), | |
); | |
this._loopAnim.start(() => { | |
this.setState({ pulseOpacity: 1 }); | |
}); | |
} | |
componentWillUnmount() { | |
this._loopAnim.stop(); | |
} | |
render() { | |
if (!this.props.shape) { | |
return null; | |
} | |
const innerCircleStyle = [ | |
styles.innerCircle, | |
this.props.innerCircleStyle, | |
{ circleRadius: this.props.radius }, | |
]; | |
const innerCirclePulseStyle = [ | |
styles.innerCirclePulse, | |
{ circleRadius: this.state.innerRadius }, | |
]; | |
const outerCircleStyle = [ | |
styles.outerCircle, | |
this.props.outerCircleStyle, | |
{ | |
circleRadius: this.state.pulseRadius, | |
circleOpacity: this.state.pulseOpacity, | |
}, | |
]; | |
return ( | |
<MapboxGL.Animated.ShapeSource | |
id="pulseCircleSource" | |
shape={this.props.shape}> | |
<MapboxGL.Animated.CircleLayer | |
id="pulseOuterCircle" | |
style={outerCircleStyle} | |
aboveLayerID={this.props.aboveLayerID} | |
/> | |
<MapboxGL.Animated.CircleLayer | |
id="pulseInnerCircleCnt" | |
style={innerCircleStyle} | |
aboveLayerID="pulseOuterCircle" | |
/> | |
<MapboxGL.Animated.CircleLayer | |
id="pulseInnerCircle" | |
style={innerCirclePulseStyle} | |
aboveLayerID="pulseInnerCircleCnt" | |
/> | |
</MapboxGL.Animated.ShapeSource> | |
); | |
} | |
} | |
export default Animated.createAnimatedComponent(PulseCircleLayer); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment