-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.js
More file actions
159 lines (133 loc) · 3.7 KB
/
index.js
File metadata and controls
159 lines (133 loc) · 3.7 KB
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
'use strict';
var React = require('react-native');
var NavBarContainer = require('./components/NavBarContainer');
var {
StyleSheet,
Navigator,
StatusBarIOS,
View,
} = React;
var self;
var Router = React.createClass({
getInitialState: function() {
self = this;
return {
route: 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);
},
onFirst: function(navigator) {
navigator.popToTop();
},
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 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 updateNavbarProps = function(props) {
route.updateNavbarProps && route.updateNavbarProps(props);
route.updateStaticNavbarProps && route.updateStaticNavbarProps(props);
}
var Content = route.component;
return (
<View
style={[styles.container]}
onStartShouldSetResponder={didStartDrag}
onResponderMove={didMoveFinger}
onResponderTerminationRequest={preventDefault}>
<Content
route={{
index:route.index,
push:goForward,
pop:goBackwards,
popToTop:goToFirstRoute,
}}
updateBarBackgroundStyle={
(style)=>{
route.updateBarBackgroundStyle &&
route.updateBarBackgroundStyle(style)
}
}
updateNavbarProps={updateNavbarProps}
{...route.passProps}/>
</View>
)
},
render: function() {
// Status bar color
if (this.props.statusBarColor === "black") {
StatusBarIOS.setStyle(0);
} else {
StatusBarIOS.setStyle(1);
}
var navigationBar =
<NavBarContainer
navbarComponent={this.props.navbarComponent}
navbarPassProps={this.props.navbarPassProps}
currentRoute={this.state.route}
backButtonComponent={this.props.backButtonComponent}
onForward={this.onForward}
onBack={this.onBack}
onFirst={this.onFirst}/>
var initialRoute = this.props.initialRoute;
initialRoute.index = 0;
return (
<Navigator
initialRoute={initialRoute}
navigationBar={navigationBar}
renderScene={this.renderScene}
onDidFocus={this.onDidFocus}/>)
},
});
var styles = StyleSheet.create({
container: {
flex: 1,
},
});
module.exports = Router;