-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSegment.js
65 lines (54 loc) · 1.83 KB
/
Segment.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import React, { useEffect, useRef, useContext } from 'react';
import PropTypes from 'prop-types';
import { Animated } from 'react-native';
import { G, Path } from 'react-native-svg';
import { SegmentedArcContext } from '../SegmentedArc';
import { drawArc } from '../utils/arcHelpers';
const AnimatedPath = Animated.createAnimatedComponent(Path);
export const Segment = ({ arc }) => {
const segmentedArcContext = useContext(SegmentedArcContext);
const { filledArcWidth, radius, isAnimated, emptyArcWidth, arcAnimatedValue } = segmentedArcContext;
const arcRef = useRef();
useEffect(() => {
if (!isAnimated) return;
const listener = arcAnimatedValue.addListener(v => {
if (!arcRef.current) return;
if (v.value <= arc.start) return;
if (v.value >= arc.end) {
arcRef.current.setNativeProps({
d: drawArc(arc.centerX, arc.centerY, radius, arc.start, arc.end)
});
} else {
arcRef.current.setNativeProps({
d: drawArc(arc.centerX, arc.centerY, radius, arc.start, v.value)
});
}
});
return () => arcAnimatedValue.removeListener(listener);
}, []);
return (
<G>
<Path
fill="none"
stroke={arc.emptyColor}
strokeWidth={emptyArcWidth}
d={drawArc(arc.centerX, arc.centerY, radius, arc.start, arc.end)}
/>
{isAnimated && arc.filled > arc.start && (
<AnimatedPath ref={arcRef} fill="none" stroke={arc.filledColor} strokeWidth={filledArcWidth} />
)}
{!isAnimated && arc.filled > arc.start && (
<Path
fill="none"
stroke={arc.filledColor}
strokeWidth={filledArcWidth}
d={drawArc(arc.centerX, arc.centerY, radius, arc.start, arc.filled)}
/>
)}
</G>
);
};
export default Segment;
Segment.propTypes = {
arc: PropTypes.object
};