forked from MikaelCarpenter/gb-native-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
210 lines (174 loc) · 4.91 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
'use strict';
var React = require('react-native');
var NavBarContainer = require('./components/NavBarContainer');
var {
StyleSheet,
Navigator,
StatusBarIOS,
View,
Platform
} = 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);
},
setRightProps: function(props) {
this.setState({ rightProps: props });
},
setLeftProps: function(props) {
this.setState({ leftProps: props });
},
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 replaceRoute = function(route) {
route.index = this.state.route.index || 0;
navigator.replace(route);
}.bind(this);
var goBackwards = function() {
this.onBack(navigator);
}.bind(this);
var goToFirstRoute = function() {
navigator.popToTop()
};
var setRightProps = function(props) {
this.setState({ rightProps: props });
}.bind(this);
var setLeftProps = function(props) {
this.setState({ leftProps: props });
}.bind(this);
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;
}
if(route.trans === true)
var margin = 0
else if (this.props.hideNavigationBar === true)
var margin = this.props.noStatusBar ? 0 : 20
else
var margin = 64
return (
<View
style={[styles.container, this.props.bgStyle, extraStyling, {marginTop: margin}]}
onStartShouldSetResponder={didStartDrag}
onResponderMove={didMoveFinger}
onResponderTerminationRequest={preventDefault}>
<Content
name={route.name}
index={route.index}
data={route.data}
toRoute={goForward}
toBack={goBackwards}
replaceRoute={replaceRoute}
reset={goToFirstRoute}
setRightProps={setRightProps}
setLeftProps={setLeftProps}
customAction={customAction}
{...route.passProps}
/>
</View>
)
},
render: function() {
// Status bar color
if (Platform.OS === 'ios') {
if (this.props.statusBarColor === "black") {
StatusBarIOS.setStyle(0);
} else {
StatusBarIOS.setStyle(1);
}
} else if (Platform.OS === 'android') {
// no android version yet
}
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}
borderBottomWidth={this.props.borderBottomWidth}
borderColor={this.props.borderColor}
toRoute={this.onForward}
toBack={this.onBack}
leftProps={this.state.leftProps}
rightProps={this.state.rightProps}
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: '#FFFFFF'
},
});
module.exports = Router;