forked from oblador/react-native-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bar.js
195 lines (181 loc) · 5.09 KB
/
Bar.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
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
import React, { Component } from "react"
import PropTypes from "prop-types"
import { Animated, Easing, View, ViewPropTypes } from "react-native"
const INDETERMINATE_WIDTH_FACTOR = 0.3
const BAR_WIDTH_ZERO_POSITION =
INDETERMINATE_WIDTH_FACTOR / (1 + INDETERMINATE_WIDTH_FACTOR)
const RNViewPropTypes = ViewPropTypes || View.propTypes
export default class ProgressBar extends Component {
static propTypes = {
animated: PropTypes.bool,
borderColor: PropTypes.string,
borderRadius: PropTypes.number,
borderWidth: PropTypes.number,
backgroundColorOfParentElement: PropTypes.string,
children: PropTypes.node,
color: PropTypes.string,
height: PropTypes.number,
indeterminate: PropTypes.bool,
onLayout: PropTypes.func,
progress: PropTypes.number,
style: RNViewPropTypes.style,
unfilledColor: PropTypes.string,
width: PropTypes.number,
useNativeDriver: PropTypes.bool,
// eslint-disable-next-line react/forbid-prop-types
animationConfig: PropTypes.object.isRequired,
animationType: PropTypes.oneOf(["decay", "timing", "spring"])
}
static defaultProps = {
animated: true,
borderRadius: 4,
borderWidth: 1,
backgroundColorOfParentElement: "white",
color: "rgba(0, 122, 255, 1)",
height: 6,
indeterminate: false,
progress: 0,
width: 150,
useNativeDriver: false,
animationConfig: { bounciness: 0 },
animationType: "spring"
}
constructor(props) {
super(props)
const progress = Math.min(Math.max(props.progress, 0), 1)
this.state = {
width: 0,
progress: new Animated.Value(
props.indeterminate ? INDETERMINATE_WIDTH_FACTOR : progress
),
animationValue: new Animated.Value(BAR_WIDTH_ZERO_POSITION)
}
}
componentDidMount() {
if (this.props.indeterminate) {
this.animate()
}
}
componentWillReceiveProps(props) {
if (props.indeterminate !== this.props.indeterminate) {
if (props.indeterminate) {
this.animate()
} else {
Animated.spring(this.state.animationValue, {
toValue: BAR_WIDTH_ZERO_POSITION,
useNativeDriver: props.useNativeDriver
}).start()
}
}
if (
props.indeterminate !== this.props.indeterminate ||
props.progress !== this.props.progress
) {
const progress = props.indeterminate
? INDETERMINATE_WIDTH_FACTOR
: Math.min(Math.max(props.progress, 0), 1)
if (props.animated) {
const { animationType, animationConfig } = this.props
Animated[animationType](this.state.progress, {
...animationConfig,
toValue: progress,
useNativeDriver: props.useNativeDriver
}).start()
} else {
this.state.progress.setValue(progress)
}
}
}
animate() {
this.state.animationValue.setValue(0)
Animated.timing(this.state.animationValue, {
toValue: 1,
duration: 1000,
easing: Easing.linear,
isInteraction: false,
useNativeDriver: this.props.useNativeDriver
}).start(endState => {
if (endState.finished) {
this.animate()
}
})
}
handleLayout = event => {
if (!this.props.width) {
this.setState({ width: event.nativeEvent.layout.width })
}
if (this.props.onLayout) {
this.props.onLayout(event)
}
}
render() {
const {
borderColor,
borderRadius,
backgroundColorOfParentElement,
borderWidth,
children,
color,
height,
style,
unfilledColor,
width,
...restProps
} = this.props
const innerWidth = Math.max(0, width || this.state.width) - borderWidth * 2
const containerStyle = {
width,
borderWidth,
borderColor: borderColor || color,
borderRadius,
overflow: "hidden",
backgroundColor: unfilledColor
}
const progressStyle = {
backgroundColor: color,
height,
transform: [
{
translateX: this.state.animationValue.interpolate({
inputRange: [0, 1],
outputRange: [innerWidth * -INDETERMINATE_WIDTH_FACTOR, innerWidth]
})
},
{
translateX: this.state.progress.interpolate({
inputRange: [0, 1],
outputRange: [innerWidth / -2, 0]
})
},
{
// Interpolation a temp workaround for https://github.com/facebook/react-native/issues/6278
scaleX: this.state.progress.interpolate({
inputRange: [0, 1],
outputRange: [0.0001, 1]
})
}
]
}
const fixCircleClipping = {
position: "absolute",
top: -borderRadius,
bottom: -borderRadius,
right: -borderRadius,
left: -borderRadius,
borderRadius: height / 2 + borderRadius / 2,
borderWidth: borderRadius,
borderColor: backgroundColorOfParentElement
}
return (
<View
style={[containerStyle, style]}
onLayout={this.handleLayout}
{...restProps}
>
<Animated.View style={progressStyle} />
<View style={fixCircleClipping} />
{children}
</View>
)
}
}