-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCircularSlider.js
More file actions
243 lines (222 loc) · 7.13 KB
/
Copy pathCircularSlider.js
File metadata and controls
243 lines (222 loc) · 7.13 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import React, { PureComponent } from 'react'
import Svg, { Path, Defs, LinearGradient, Stop, Circle } from 'react-native-svg'
import { StyleSheet, View, PanResponder } from 'react-native'
export default class CircularSlider extends PureComponent {
static defaultProps = {
radius: 100, // 半径
strokeWidth: 20, // 线宽
openingRadian: Math.PI / 4, // 开口弧度,为了便于计算值为实际开口弧度的一半
backgroundTrackColor: '#e8e8e8', // 底部轨道颜色
linearGradient: [{ stop: '0%', color: '#1890ff' }, { stop: '100%', color: '#f5222d' }], // 渐变色
min: 0, // 最小值
max: 100, // 最大值
buttonRadius: 12, // 按钮半径
buttonBorderColor: '#fff', // 按钮边框颜色
buttonStrokeWidth: 1, // 按钮线宽
}
constructor(props) {
super(props)
this._panResponder = PanResponder.create({
onStartShouldSetPanResponder: () => true,
onMoveShouldSetPanResponder: () => false,
onPanResponderGrant: this._handlePanResponderGrant,
onPanResponderMove: this._handlePanResponderMove,
onPanResponderRelease: this._handlePanResponderEnd,
onPanResponderTerminationRequest: () => false,
onPanResponderTerminate: this._handlePanResponderEnd,
})
this.state = {
value: props.value || props.min
}
this._containerRef = React.createRef()
}
_handlePanResponderGrant = () => {
/*
* 记录开始滑动开始时的滑块值、弧度和坐标,用户后续值的计算
*/
const { value } = this.state
this._moveStartValue = value
this._moveStartRadian = this.getRadianByValue(value)
this._startCartesian = this.polarToCartesian(this._moveStartRadian)
};
_handlePanResponderMove = (e, gestureState) => {
const { min, max, step, openingRadian } = this.props
let { x, y } = this._startCartesian
x += gestureState.dx
y += gestureState.dy
const radian = this.cartesianToPolar(x, y) // 当前弧度
const ratio = (this._moveStartRadian - radian) / ((Math.PI - openingRadian) * 2) // 弧度变化所占比例
const diff = max - min // 最大值和最小值的差
let value
if (step) {
value = this._moveStartValue + Math.round(ratio * diff / step) * step
} else {
value = this._moveStartValue + ratio * diff
}
// 处理极值
value = Math.max(
min,
Math.min(max, value),
)
this.setState(({ value: curValue }) => {
value = Math.abs(value - curValue) > diff / 4 ? curValue : value // 避免直接从最小值变为最大值
return { value: Math.round(value) }
})
this._fireChangeEvent('onChange');
}
_handlePanResponderEnd = (e, gestureState) => {
if (this.props.disabled) {
return;
}
this._fireChangeEvent('onComplete');
}
_fireChangeEvent = event => {
if (this.props[event]) {
this.props[event](this.state.value);
}
};
/**
* 极坐标转笛卡尔坐标
* @param {number} radian - 弧度表示的极角
*/
polarToCartesian(radian) {
const { radius } = this.props
const distance = radius + this._getExtraSize() / 2 // 圆心距离坐标轴的距离
const x = distance + radius * Math.sin(radian)
const y = distance + radius * Math.cos(radian)
return { x, y }
}
/**
* 笛卡尔坐标转极坐标
* @param {*} x
* @param {*} y
*/
cartesianToPolar(x, y) {
const { radius } = this.props
const distance = radius + this._getExtraSize() / 2 // 圆心距离坐标轴的距离
if (x === distance) {
return y > distance ? 0 : Math.PI / 2
}
const a = Math.atan((y - distance) / (x - distance)) // 计算点与圆心连线和 x 轴的夹角
return (x < distance ? Math.PI * 3 / 2 : Math.PI / 2) - a
}
/**
* 获取当前弧度
*/
getCurrentRadian() {
return this.getRadianByValue(this.state.value)
}
/**
* 根据滑块的值获取弧度
* @param {*} value
*/
getRadianByValue(value) {
const { openingRadian, min, max } = this.props
return (Math.PI - openingRadian) * 2 * (max - value) / (max - min) + openingRadian
}
/**
* 获取除半径外额外的大小,返回线宽和按钮直径中较大的
*/
_getExtraSize() {
const { strokeWidth, buttonRadius, buttonStrokeWidth } = this.props
return Math.max(strokeWidth, (buttonRadius + buttonStrokeWidth) * 2)
}
_onLayout = () => {
const ref = this._containerRef.current
if (ref) {
ref.measure((x, y, width, height, pageX, pageY) => {
this.vertexX = pageX
this.vertexY = pageY
})
}
}
render() {
const {
radius,
strokeWidth,
backgroundTrackColor,
openingRadian,
linearGradient,
buttonRadius,
buttonBorderColor,
buttonFillColor,
buttonStrokeWidth,
style,
contentContainerStyle,
children
} = this.props
const svgSize = radius * 2 + this._getExtraSize()
const startRadian = 2 * Math.PI - openingRadian // 起点弧度
const startPoint = this.polarToCartesian(startRadian)
const endPoint = this.polarToCartesian(openingRadian)
const currentRadian = this.getCurrentRadian() // 当前弧度
const curPoint = this.polarToCartesian(currentRadian)
const contentStyle = [
styles.content,
contentContainerStyle
]
return (
<View onLayout={this._onLayout} ref={this._containerRef} style={[styles.container, style]}>
<Svg width={svgSize} height={svgSize}>
<Defs>
<LinearGradient
x1="0%"
y1="100%"
x2="100%"
y2="0%"
id="gradient">
{
linearGradient.map((item, index) => (
<Stop
key={index}
offset={item.stop}
stopColor={item.color}
/>
))
}
</LinearGradient>
</Defs>
<Path
strokeWidth={strokeWidth}
stroke={backgroundTrackColor}
fill="none"
strokeLinecap="round"
d={`M${startPoint.x},${startPoint.y} A ${radius},${radius},0,${startRadian - openingRadian >= Math.PI ? '1' : '0'},1,${endPoint.x},${endPoint.y}`}
/>
<Path
strokeWidth={strokeWidth}
stroke="url(#gradient)"
fill="none"
strokeLinecap="round"
d={`M${startPoint.x},${startPoint.y} A ${radius},${radius},0,${startRadian - currentRadian >= Math.PI ? '1' : '0'},1,${curPoint.x},${curPoint.y}`}
/>
<Circle
cx={curPoint.x}
cy={curPoint.y}
r={buttonRadius}
fill={buttonFillColor || buttonBorderColor}
stroke={buttonBorderColor}
strokeWidth={buttonStrokeWidth}
{...this._panResponder.panHandlers}
/>
</Svg>
<View style={contentStyle} pointerEvents="box-none">
{children}
</View>
</View>
)
}
}
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center'
},
content: {
position: 'absolute',
left: 0,
top: 0,
bottom: 0,
right: 0
}
})