-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathgap.tsx
95 lines (88 loc) · 2.37 KB
/
gap.tsx
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import * as React from 'react';
import { Circle, ProgressProps } from 'rc-progress';
const colorMap = ['#3FC7FA', '#85D262', '#FE8C6A'];
function getColor(index) {
return colorMap[(index + colorMap.length) % colorMap.length];
}
class Example extends React.Component<ProgressProps, any> {
constructor(props) {
super(props);
this.state = {
percent: 30,
colorIndex: 0,
};
this.changeState = this.changeState.bind(this);
}
changeState() {
const value = parseInt((Math.random() * 100).toString(), 10);
const colorIndex = parseInt((Math.random() * 3).toString(), 10);
this.setState({
percent: value,
colorIndex,
});
}
render() {
const circleContainerStyle = {
width: '200px',
height: '200px',
marginBottom: '60px'
};
const { percent, colorIndex } = this.state;
const color = getColor(colorIndex);
return (
<div>
<p>
<button type="button" onClick={this.changeState}>
Change State [{percent}]
</button>
</p>
<h3>within dot</h3>
<div style={circleContainerStyle}>
<Circle
percent={percent}
gapDegree={70}
gapPosition="top"
strokeWidth={6}
strokeLinecap="square"
strokeColor={color}
dot={{ size: 10 }}
/>
</div>
<div style={circleContainerStyle}>
<Circle
percent={[percent / 3, percent / 3, percent / 3]}
gapDegree={70}
gapPosition="bottom"
strokeWidth={6}
trailWidth={6}
strokeLinecap="round"
strokeColor={[color, getColor(colorIndex + 1), getColor(colorIndex + 2)]}
dot={true}
/>
</div>
<h3>without dot</h3>
<div style={circleContainerStyle}>
<Circle
percent={percent}
gapDegree={70}
gapPosition="left"
strokeWidth={6}
strokeLinecap="square"
strokeColor={color}
/>
</div>
<div style={circleContainerStyle}>
<Circle
percent={percent}
gapDegree={70}
gapPosition="right"
strokeWidth={6}
strokeLinecap="square"
strokeColor={color}
/>
</div>
</div>
);
}
}
export default Example;