forked from Kureev/react-native-side-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
318 lines (273 loc) · 7.26 KB
/
index.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
const styles = require('./styles');
const React = require('react-native');
const { Dimensions, Animated, } = React;
const deviceScreen = Dimensions.get('window');
const {
PanResponder,
View,
TouchableWithoutFeedback,
Component,
} = React;
/**
* Default open menu offset. Describes a size of the amount you can
* move content view from the left and release without opening it
* @type {Number}
*/
const openMenuOffset = deviceScreen.width * 2 / 3;
/**
* Content view offset in the `hidden` state
* @type {Number}
*/
const hiddenMenuOffset = 0;
/**
* Size of the amount you can move content view in the opened menu state and
* release without menu closing
* @type {Number}
*/
const barrierForward = deviceScreen.width / 4;
/**
* Check if the current gesture offset bigger than allowed one
* before opening menu
* @param {Number} dx Gesture offset from the left side of the window
* @return {Boolean}
*/
function shouldOpenMenu(dx: Number) {
return dx > barrierForward;
}
class SideMenu extends Component {
constructor(props) {
super(props);
/**
* Current state of the menu, whether it is open or not
* @type {Boolean}
*/
this.isOpen = false;
/**
* Default left offset for content view
* @todo Check if it's possible to avoid using `prevLeft`
* @type {Number}
*/
this.prevLeft = 0;
this.state = {
left: new Animated.Value(0),
};
}
/**
* Set the initial responders
* @return {Void}
*/
componentWillMount() {
this.responder = PanResponder.create({
onStartShouldSetResponderCapture: this.props.onStartShouldSetResponderCapture.bind(this),
onMoveShouldSetPanResponder: this.handleMoveShouldSetPanResponder.bind(this),
onPanResponderMove: this.handlePanResponderMove.bind(this),
onPanResponderRelease: this.handlePanResponderEnd.bind(this),
});
}
/**
* Determines if gestures are enabled, based off of disableGestures prop
* @return {Boolean}
*/
gesturesAreEnabled() {
let { disableGestures, } = this.props;
if (typeof disableGestures === 'function') {
return !disableGestures();
}
return !disableGestures;
}
/**
* Permission to use responder
* @return {Boolean}
*/
handleMoveShouldSetPanResponder(e: Object, gestureState: Object) {
if (this.gesturesAreEnabled()) {
const x = Math.round(Math.abs(gestureState.dx));
const y = Math.round(Math.abs(gestureState.dy));
return x > this.props.toleranceX && y < this.props.toleranceY;
}
return false;
}
/**
* Handler on responder move
* @param {Synthetic Event} e
* @param {Object} gestureState
* @return {Void}
*/
handlePanResponderMove(e: Object, gestureState: Object) {
if (this.menuPositionMultiplier() *
this.state.left.__getValue() + gestureState.dx >= 0) {
this.state.left.setValue(this.prevLeft + gestureState.dx);
}
}
/**
* Handler on responder move ending
* @param {Synthetic Event} e
* @param {Object} gestureState
* @return {Void}
*/
handlePanResponderEnd(e: Object, gestureState: Object) {
const currentLeft = this.state.left.__getValue();
const shouldOpen = this.menuPositionMultiplier() *
(currentLeft + gestureState.dx);
if (shouldOpenMenu(shouldOpen)) {
this.openMenu();
} else {
this.closeMenu();
}
}
/**
* Returns 1 or -1 depending on the menuPosition
* @return {Number}
*/
menuPositionMultiplier() {
return this.props.menuPosition === 'right' ? -1 : 1;
}
/**
* Open menu
* @return {Void}
*/
openMenu() {
const openOffset = this.menuPositionMultiplier() *
(this.props.openMenuOffset || openMenuOffset);
this.props
.animationFunction(this.state.left, openOffset)
.start();
this.prevLeft = openOffset;
if (!this.isOpen) {
this.props.onChange(this.isOpen);
this.isOpen = true;
// Force update to make the overlay appear (if touchToClose is set)
if (this.props.touchToClose) {
this.forceUpdate();
}
}
}
/**
* Close menu
* @return {Void}
*/
closeMenu() {
const closeOffset = this.menuPositionMultiplier() *
(this.props.hiddenMenuOffset || hiddenMenuOffset);
this.props
.animationFunction(this.state.left, closeOffset)
.start();
this.prevLeft = closeOffset;
if (this.isOpen) {
this.props.onChange(this.isOpen);
this.isOpen = false;
// Force update to make the overlay disappear (if touchToClose is set)
if (this.props.touchToClose) {
this.forceUpdate();
}
}
}
/**
* Toggle menu
* @return {Void}
*/
toggleMenu() {
if (this.isOpen) {
this.closeMenu();
} else {
this.openMenu();
}
}
/**
* Get content view. This view will be rendered over menu
* @return {React.Component}
*/
getContentView() {
const menuActions = this.getMenuActions();
let overlay = null;
if (this.isOpen && this.props.touchToClose) {
overlay = (
<TouchableWithoutFeedback onPress={this.closeMenu.bind(this)}>
<View style={styles.overlay} />
</TouchableWithoutFeedback>
);
}
const children = React.Children.map(this.props.children,
(child) => React.cloneElement(child, { menuActions, }));
return (
<Animated.View
style={[styles.frontView, this.props.animationStyle(this.state.left), ]}
ref={(sideMenu) => this.sideMenu = sideMenu}
{...this.responder.panHandlers}>
{children}
{overlay}
</Animated.View>
);
}
/**
* Get menu actions to expose it to
* menu and children components
* @return {Object} Public API methods
*/
getMenuActions() {
return {
close: this.closeMenu.bind(this),
toggle: this.toggleMenu.bind(this),
open: this.openMenu.bind(this),
};
}
/**
* Get menu view. This view will be rendered under
* content view. Also, this function will decorate
* passed `menu` component with side menu API
* @return {React.Component}
*/
getMenuView() {
const menuActions = this.getMenuActions();
return (
<View style={styles.menu}>
{React.addons.cloneWithProps(this.props.menu, { menuActions, })}
</View>
);
}
/**
* Compose and render menu and content view
* @return {React.Component}
*/
render() {
return (
<View style={styles.container}>
{this.getMenuView()}
{this.getContentView()}
</View>
);
}
}
SideMenu.propTypes = {
toleranceX: React.PropTypes.number,
toleranceY: React.PropTypes.number,
onChange: React.PropTypes.func,
touchToClose: React.PropTypes.bool,
disableGestures: React.PropTypes.oneOfType([React.PropTypes.func, React.PropTypes.bool, ]),
animationFunction: React.PropTypes.func,
onStartShouldSetResponderCapture: React.PropTypes.func,
};
SideMenu.defaultProps = {
toleranceY: 10,
toleranceX: 10,
touchToClose: false,
onStartShouldSetResponderCapture: () => true,
onChange: () => {},
animationStyle: (value) => {
return {
transform: [{
translateX: value,
}, ],
};
},
animationFunction: (prop, value) => {
return Animated.spring(
prop,
{
toValue: value,
friction: 8,
}
);
},
};
module.exports = SideMenu;