This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
F8Navigator.js
175 lines (155 loc) · 5.66 KB
/
F8Navigator.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
/**
* Copyright 2016 Facebook, Inc.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright notice
* shall be included in all copies or substantial portions of the software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE
*/
"use strict";
import React from "react";
import Platform from "Platform";
import BackAndroid from "BackAndroid";
import F8TabsView from "./tabs/F8TabsView";
import FriendsScheduleView from "./tabs/schedule/FriendsScheduleView";
import FilterScreen from "./filter/FilterScreen";
import LoginModal from "./login/LoginModal";
import { Navigator } from "react-native-deprecated-custom-components";
import SessionsCarousel from "./tabs/schedule/SessionsCarousel";
import SharingSettingsScreen from "./tabs/schedule/SharingSettingsScreen";
import F8WebView from "./common/F8WebView";
import RatingScreen from "./rating/RatingScreen";
import { StyleSheet } from "react-native";
import { connect } from "react-redux";
import F8Colors from "./common/F8Colors";
import F8VideoView from "./tabs/videos/F8VideoView";
import { switchTab } from "./actions";
import F8MapView from "./tabs/maps/F8MapView";
import DemosCarousel from "./tabs/demos/DemosCarousel";
const F8Navigator = React.createClass({
_handlers: ([]: Array<() => boolean>),
componentDidMount: function() {
BackAndroid.addEventListener("hardwareBackPress", this.handleBackButton);
},
componentWillUnmount: function() {
BackAndroid.removeEventListener("hardwareBackPress", this.handleBackButton);
},
getChildContext() {
return {
addBackButtonListener: this.addBackButtonListener,
removeBackButtonListener: this.removeBackButtonListener
};
},
addBackButtonListener: function(listener) {
this._handlers.push(listener);
},
removeBackButtonListener: function(listener) {
this._handlers = this._handlers.filter(handler => handler !== listener);
},
handleBackButton: function() {
for (let i = this._handlers.length - 1; i >= 0; i--) {
if (this._handlers[i]()) {
return true;
}
}
const navigator = this._navigator;
if (navigator && navigator.getCurrentRoutes().length > 1) {
navigator.pop();
return true;
}
if (this.props.tab !== "schedule") {
this.props.dispatch(switchTab("schedule"));
return true;
}
return false;
},
render: function() {
return (
<Navigator
ref={c => (this._navigator = c)}
style={styles.container}
configureScene={route => {
if (Platform.OS === "android") {
return Navigator.SceneConfigs.FloatFromBottomAndroid;
}
// TODO: Proper scene support
if (
route.shareSettings ||
route.friend ||
route.webview ||
route.video ||
route.session ||
route.allSession ||
route.allDemos
) {
return Navigator.SceneConfigs.PushFromRight;
} else {
return Navigator.SceneConfigs.FloatFromBottom;
}
}}
initialRoute={{}}
renderScene={this.renderScene}
/>
);
},
renderScene: function(route, navigator) {
if (route.allSessions) {
return <SessionsCarousel {...route} navigator={navigator} />;
} else if (route.session) {
return <SessionsCarousel session={route.session} navigator={navigator} />;
} else if (route.filter) {
return <FilterScreen navigator={navigator} {...route} />;
} else if (route.friend) {
return (
<FriendsScheduleView friend={route.friend} navigator={navigator} />
);
} else if (route.login) {
return <LoginModal navigator={navigator} onLogin={route.callback} />;
} else if (route.shareSettings) {
// else if (route.share){ return <SharingSettingsModal navigator={navigator} />; }
return <SharingSettingsScreen navigator={navigator} />;
} else if (route.rate) {
return <RatingScreen navigator={navigator} survey={route.survey} />;
} else if (route.webview) {
return <F8WebView {...route} url={route.webview} navigator={navigator} />;
} else if (route.video) {
return <F8VideoView video={route.video} navigator={navigator} />;
} else if (route.maps) {
return <F8MapView directions={false} navigator={navigator} />;
} else if (route.allDemos) {
return <DemosCarousel {...route} navigator={navigator} />;
} else {
return <F8TabsView navigator={navigator} />;
}
}
});
F8Navigator.childContextTypes = {
addBackButtonListener: React.PropTypes.func,
removeBackButtonListener: React.PropTypes.func
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: F8Colors.bianca
}
});
function select(store) {
return {
tab: store.navigation.tab,
isLoggedIn: store.user.isLoggedIn || store.user.hasSkippedLogin
};
}
module.exports = connect(select)(F8Navigator);