This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathindex.js
171 lines (140 loc) · 3.78 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
'use strict';
var React = require('react-native');
var NavBarContainer = require('./components/NavBarContainer');
var {
StyleSheet,
Navigator,
StatusBarIOS,
View,
} = React;
var Router = React.createClass({
getInitialState: function() {
return {
route: {
name: null,
index: null
},
dragStartX: null,
didSwitchView: null,
}
},
/*
* This changes the title in the navigation bar
* It should preferrably be called for "onWillFocus" instad >
* > but a recent update to React Native seems to break the animation
*/
onDidFocus: function(route) {
this.setState({ route: route });
},
onBack: function(navigator) {
if (this.state.route.index > 0) {
navigator.pop();
}
},
onForward: function(route, navigator) {
route.index = this.state.route.index + 1 || 1;
navigator.push(route);
},
customAction: function(opts) {
this.props.customAction(opts);
},
renderScene: function(route, navigator) {
var goForward = function(route) {
route.index = this.state.route.index + 1 || 1;
navigator.push(route);
}.bind(this);
var goBackwards = function() {
this.onBack(navigator);
}.bind(this);
var goToFirstRoute = function() {
navigator.popToTop()
};
var customAction = function(opts) {
this.customAction(opts);
}.bind(this);
var didStartDrag = function(evt) {
var x = evt.nativeEvent.pageX;
if (x < 28) {
this.setState({
dragStartX: x,
didSwitchView: false
});
return true;
}
}.bind(this);
// Recognize swipe back gesture for navigation
var didMoveFinger = function(evt) {
var draggedAway = ((evt.nativeEvent.pageX - this.state.dragStartX) > 30);
if (!this.state.didSwitchView && draggedAway) {
this.onBack(navigator);
this.setState({ didSwitchView: true });
}
}.bind(this);
// Set to false to prevent iOS from hijacking the responder
var preventDefault = function(evt) {
return true;
};
var Content = route.component;
// Remove the margin of the navigation bar if not using navigation bar
var extraStyling = {};
if (this.props.hideNavigationBar) {
extraStyling.marginTop = 0;
}
return (
<View
style={[styles.container, this.props.bgStyle, extraStyling]}
onStartShouldSetResponder={didStartDrag}
onResponderMove={didMoveFinger}
onResponderTerminationRequest={preventDefault}>
<Content
name={route.name}
index={route.index}
data={route.data}
toRoute={goForward}
toBack={goBackwards}
reset={goToFirstRoute}
customAction={customAction}
/>
</View>
)
},
render: function() {
// Status bar color
if (this.props.statusBarColor === "black") {
StatusBarIOS.setStyle(0);
} else {
StatusBarIOS.setStyle(1);
}
var navigationBar;
if (!this.props.hideNavigationBar) {
navigationBar =
<NavBarContainer
style={this.props.headerStyle}
navigator={navigator}
currentRoute={this.state.route}
backButtonComponent={this.props.backButtonComponent}
rightCorner={this.props.rightCorner}
titleStyle={this.props.titleStyle}
toRoute={this.onForward}
toBack={this.onBack}
customAction={this.customAction}
/>
}
return (
<Navigator
initialRoute={this.props.firstRoute}
navigationBar={navigationBar}
renderScene={this.renderScene}
onDidFocus={this.onDidFocus}
/>
)
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#F5FCFF',
marginTop: 64
},
});
module.exports = Router;