forked from sreejithr/react-native-slide-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SlideButton.js
229 lines (202 loc) · 5.99 KB
/
SlideButton.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
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
'use strict';
import React, { Component } from 'react';
import {
StyleSheet,
View,
Text,
Image,
TouchableHighlight,
PanResponder,
Animated
} from 'react-native';
export var SlideDirection = {
LEFT: "left",
RIGHT: "right",
BOTH: "both"
};
export class SlideButton extends Component {
constructor(props) {
super(props);
this.buttonWidth = 0;
this.state = {
initialX: 0,
locationX: 0,
dx: 0,
animatedX: new Animated.Value(0),
released: false,
swiped: true,
};
}
/* Button movement of > 40% is considered a successful slide by default*/
isSlideSuccessful() {
var slidePercent = this.props.successfulSlidePercent || 40;
var successfulSlideWidth = this.buttonWidth * slidePercent / 100;
if (!this.props.slideDirection) {
return this.state.dx > this.props.successfulSlideWidth; // Defaults to right slide
} else if (this.props.slideDirection === SlideDirection.RIGHT) {
return this.state.dx > this.props.successfulSlideWidth;
} else if (this.props.slideDirection === SlideDirection.LEFT) {
return this.state.dx < (-1 * this.props.successfulSlideWidth);
} else if (this.props.slideDirection === SlideDirection.BOTH) {
return Math.abs(this.state.dx) > this.props.successfulSlideWidth;
}
}
onSlide(x) {
if (this.props.onSlide){
this.props.onSlide(x);
}
}
componentWillMount() {
var self = this;
// TODO: Raise error if slideDirection prop is invalid.
this.panResponder = PanResponder.create({
onStartShouldSetPanResponder: (evt, gestureState) => true,
onStartShouldSetPanResponderCapture: (evt, gestureState) => true,
onMoveShouldSetPanResponder: (evt, gestureState) => true,
onMoveShouldSetPanResponderCapture: (evt, gestureState) => true,
onPanResponderTerminationRequest: (evt, gestureState) => true,
onPanResponderGrant: (evt, gestureState) => {},
onPanResponderMove: (evt, gestureState) => {
self.setState({
locationX: evt.nativeEvent.locationX,
dx: gestureState.dx
});
self.onSlide(gestureState.dx);
},
onPanResponderRelease: (evt, gestureState) => {
if (this.isSlideSuccessful()) {
// Move the button out
this.moveButtonOut(() => {
self.setState({ swiped: true });
self.props.onSlideSuccess();
});
// Slide it back in after 1 sec
setTimeout(() => {
self.moveButtonIn(() => {
self.setState({
released: false,
dx: self.state.initialX
});
});
}, 1000);
} else {
this.snapToPosition(() => {
self.setState({
released: false,
dx: self.state.initialX
});
});
}
},
onPanResponderTerminate: (evt, gestureState) => {
// Another component has become the responder, so this gesture
// should be cancelled
this.snapToPosition(() => {
self.setState({
released: false,
dx: self.state.initialX
});
});
},
onShouldBlockNativeResponder: (evt, gestureState) => {
// Returns whether this component should block native components from
// becoming the JS responder. Returns true by default. Is currently only
// supported on android.
return true;
}
});
}
onSlideSuccess() {
if (this.props.onSlideSuccess !== undefined) {
this.props.onSlideSuccess();
}
}
moveButtonIn(onCompleteCallback) {
var self = this;
var startPos = this.state.dx < 0 ? this.state.initialX + this.buttonWidth :
this.state.initialX - this.buttonWidth;
var endPos = this.state.initialX;
this.setState({
released: true,
animatedX: new Animated.Value(startPos)
}, () => {
Animated.timing(
self.state.animatedX,
{ toValue: endPos }
).start(onCompleteCallback);
});
}
moveButtonOut(onCompleteCallback) {
var self = this;
var startPos = this.state.initialX + this.state.dx;
var endPos = this.state.dx < 0 ? -this.buttonWidth : this.buttonWidth * 2;
this.setState({
released: true,
animatedX: new Animated.Value(startPos)
}, () => {
Animated.timing(
self.state.animatedX,
{ toValue: endPos }
).start(onCompleteCallback);
});
}
snapToPosition(onCompleteCallback) {
var self = this;
var startPos = this.state.initialX + this.state.dx;
var endPos = this.state.initialX;
this.setState({
released: true,
animatedX: new Animated.Value(startPos)
}, () => {
Animated.timing(
self.state.animatedX,
{ toValue: endPos }
).start(onCompleteCallback);
});
}
onLayout(event) {
this.buttonWidth = event.nativeEvent.layout.width;
this.setState({
initialX: event.nativeEvent.layout.x
});
}
render() {
var style = [styles.button, this.props.style, {left: this.state.dx}];
if (this.state.released) {
style = [styles.button, this.props.style, {left: this.state.animatedX}];
var button = (
<Animated.View style={style}>
{this.props.children}
</Animated.View>
);
} else {
var button = (
<View style={style}>
<View onLayout={this.onLayout.bind(this)}>
{this.props.children}
</View>
</View>
);
}
return (
<View style={{width: this.props.width, height: this.props.height, overflow: 'hidden'}}>
<View style={styles.container} {...this.panResponder.panHandlers}>
{ button }
</View>
</View>
);
}
}
SlideButton.propTypes = {
width: React.PropTypes.number.isRequired,
height: React.PropTypes.number.isRequired,
successfulSlidePercent: React.PropTypes.number
};
const styles = StyleSheet.create({
container: {
position: 'relative'
},
button: {
position: 'absolute'
}
})