forked from Kureev/react-native-side-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
323 lines (276 loc) · 7.11 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
319
320
321
322
323
var React = require('react-native');
var deviceScreen = require('Dimensions').get('window');
var styles = require('./styles');
var queueAnimation = require('./animations');
var {
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}
*/
var openMenuOffset = deviceScreen.width * 2 / 3;
/**
* Content view offset in the `hidden` state
* @type {Number}
*/
var hiddenMenuOffset = 0;
/**
* Size of the amount you can move content view in the opened menu state and
* release without menu closing
* @type {Number}
*/
var 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;
}
/**
* no operation function. does nothing.
*/
function noop() {}
class SideMenu extends Component {
constructor(props) {
super(props);
/**
* Current state of the menu, whether it is open or not
* @type {Boolean}
*/
this.isOpen = false;
/**
* Current style `left` attribute
* @todo Check if it's possible to avoid using `left`
* @type {Number}
*/
this.left = 0;
/**
* Default left offset for content view
* @todo Check if it's possible to avoid using `prevLeft`
* @type {Number}
*/
this.prevLeft = 0;
}
/**
* Creates PanResponders and links to appropriate functions
* @return {Void}
*/
createResponders(disableGestures) {
if (disableGestures || false) {
this.responder = PanResponder.create({});
return;
}
this.responder = PanResponder.create({
onMoveShouldSetPanResponder: this.handleMoveShouldSetPanResponder.bind(this),
onPanResponderMove: this.handlePanResponderMove.bind(this),
onPanResponderRelease: this.handlePanResponderEnd.bind(this),
});
}
/**
* Set the initial responders
* @return {Void}
*/
componentWillMount() {
this.createResponders(this.props.disableGestures);
}
/**
* Update responders on new props whenever possible
* @return {Void}
*/
componentWillReceiveProps(nextProps) {
this.createResponders(nextProps.disableGestures);
}
/**
* Change `left` style attribute
* Works only if `sideMenu` is a ref to React.Component
* @return {Void}
*/
updatePosition() {
this.sideMenu.setNativeProps({ left: this.left, });
}
/**
* Permission to use responder
* @return {Boolean} true
*/
handleMoveShouldSetPanResponder(e: Object, gestureState: Object) {
var x = Math.round(Math.abs(gestureState.dx));
var y = Math.round(Math.abs(gestureState.dy));
return x > this.props.toleranceX && y < this.props.toleranceY;
}
/**
* Handler on responder move
* @param {Synthetic Event} e
* @param {Object} gestureState
* @return {Void}
*/
handlePanResponderMove(e: Object, gestureState: Object) {
this.left = this.prevLeft + gestureState.dx;
if ((this.menuPositionMultiplier() * this.left) > 0) {
this.updatePosition();
}
}
/**
* Returns 1 or -1 depending on the menuPosition
* @return {Number}
*/
menuPositionMultiplier() {
return this.props.menuPosition === 'right' ? -1 : 1;
}
/**
* Open menu
* @return {Void}
*/
openMenu() {
queueAnimation(this.props.animation);
this.left = this.menuPositionMultiplier() *
(this.props.openMenuOffset || openMenuOffset);
this.updatePosition();
this.prevLeft = this.left;
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() {
queueAnimation(this.props.animation);
this.left = this.menuPositionMultiplier() *
(this.props.hiddenMenuOffset || hiddenMenuOffset);
this.updatePosition();
this.prevLeft = this.left;
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();
}
}
/**
* Handler on responder move ending
* @param {Synthetic Event} e
* @param {Object} gestureState
* @return {Void}
*/
handlePanResponderEnd(e: Object, gestureState: Object) {
var shouldOpen = this.menuPositionMultiplier() *
(this.left + gestureState.dx);
if (shouldOpenMenu(shouldOpen)) {
this.openMenu();
} else {
this.closeMenu();
}
this.updatePosition();
this.prevLeft = this.left;
}
handleOverlayPress(e: Object) {
this.closeMenu();
}
/**
* Get content view. This view will be rendered over menu
* @return {React.Component}
*/
getContentView() {
var getMenuActions = this.getMenuActions();
var overlay = null;
if (this.isOpen && this.props.touchToClose) {
overlay = (
<TouchableWithoutFeedback onPress={this.handleOverlayPress.bind(this)}>
<View style={styles.overlay} />
</TouchableWithoutFeedback>
);
}
var children = React.Children.map(this.props.children, (child) => {
return React.cloneElement(child, {
menuActions: getMenuActions,
});
});
return (
<View
style={styles.frontView}
ref={(sideMenu) => this.sideMenu = sideMenu}
{...this.responder.panHandlers}>
{children}
{overlay}
</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() {
var 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,
};
SideMenu.defaultProps = {
toleranceY: 10,
toleranceX: 10,
onChange: noop,
touchToClose: false,
};
module.exports = SideMenu;