-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathgap.tsx
135 lines (124 loc) · 3.35 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import * as React from 'react';
import { Circle, type ProgressProps } from 'rc-progress';
const colorMap = ['#3FC7FA', '#85D262', '#FE8C6A', '#FF5959', '#BC3FFA'];
function getColor(index) {
return colorMap[(index + colorMap.length) % colorMap.length];
}
class Example extends React.Component<ProgressProps, any> {
constructor(props) {
super(props);
this.state = {
percent: 100,
colorIndex: 0,
subPathsCount: 3,
};
this.changeState = this.changeState.bind(this);
this.changeCount = this.changeCount.bind(this);
}
changeState() {
const value = parseInt((Math.random() * 100).toString(), 10);
const colorIndex = parseInt((Math.random() * 3).toString(), 10);
this.setState({
percent: value,
colorIndex,
});
}
changeCount() {
this.setState({
...this.state,
subPathsCount: (this.state.subPathsCount % 6) + 1,
});
}
render() {
const circleContainerStyle = {
width: '200px',
height: '200px',
};
const { percent, colorIndex, subPathsCount } = this.state;
const color = getColor(colorIndex);
const multiPercentage = new Array(subPathsCount).fill(
percent / subPathsCount,
0,
subPathsCount,
);
const multiPercentageStrokeColors = multiPercentage.map((v, index) => getColor(index));
return (
<div>
<p>
<button type="button" onClick={this.changeState}>
Change State [{percent}]
</button>
<button type="button" onClick={this.changeCount}>
Change Count [{subPathsCount}]
</button>
</p>
<div style={circleContainerStyle}>
<Circle
percent={percent}
gapDegree={70}
gapPosition="top"
strokeWidth={6}
strokeLinecap="square"
strokeColor={color}
/>
</div>
<div style={circleContainerStyle}>
<Circle
percent={multiPercentage}
gapDegree={70}
gapPosition="bottom"
strokeWidth={6}
trailWidth={6}
strokeLinecap="round"
strokeColor={multiPercentageStrokeColors}
/>
</div>
<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 style={circleContainerStyle}>
<Circle
percent={percent}
gapDegree={70}
strokeWidth={6}
strokeColor={{
'0%': 'red',
'100%': 'blue',
}}
/>
</div>
<div style={circleContainerStyle}>
<Circle
percent={percent}
gapDegree={70}
strokeWidth={6}
strokeColor={{
conic: true,
'0%': 'red',
'99%': 'blue',
'100%': 'green',
}}
/>
</div>
</div>
);
}
}
export default Example;