forked from 7kfpun/FinanceReactNative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
142 lines (129 loc) · 3.67 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
'use strict';
var React = require('react-native');
var store = require('react-native-simple-store');
var NavigationBar = require('react-native-navbar');
var {
Navigator,
PixelRatio,
StatusBarIOS,
StyleSheet,
Text,
TouchableHighlight,
TouchableOpacity,
View,
Platform,
} = React;
// Views
var AddNewView = require('./App/Views/AddNew');
var SettingsView = require('./App/Views/Settings');
var StocksView = require('./App/Views/Stocks');
var WebView = require('./App/Views/Web');
// Styles
var styles = require('./style');
Platform.OS === 'ios' ? StatusBarIOS.setStyle('light-content', false): null;
var Finance = React.createClass({
getInitialState: function() {
return {};
},
configureScene : function(route){
switch (route.id) {
case 'settings':
return Navigator.SceneConfigs.FloatFromBottom;
case 'add':
return Navigator.SceneConfigs.FloatFromBottom;
case 'yahoo':
return Navigator.SceneConfigs.HorizontalSwipeJump;
default:
return Navigator.SceneConfigs.HorizontalSwipeJump;
}
},
renderScene: function(route, navigator) {
var Component = route.component;
var navBar = route.navigationBar;
switch (route.id) {
case 'empty':
//Com <View />;
case 'stocks':
Component = StocksView;
navBar = null;
break;
case 'settings':
Component = SettingsView;
navBar = <NavigationBar
style={styles.navBar}
customPrev={<TouchableOpacity
onPress={() => navigator.push({title: 'Add', id: 'add'})}
style={styles.navBarLeftButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
+
</Text>
</TouchableOpacity>}
customNext={<TouchableOpacity
onPress={() => navigator.pop()}
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Done
</Text>
</TouchableOpacity>}
title='Settings'
titleColor='white'/>;
break;
case 'add':
Component = AddNewView;
navBar = <NavigationBar
style={styles.navBar}
customPrev={<TouchableOpacity
onPress={() => navigator.pop()}
style={styles.navBarLeftButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Cancel
</Text>
</TouchableOpacity>}
title='Add'
titleColor='white'/>;
navBar = null;
break;
case 'yahoo':
Component = WebView;
navBar = <NavigationBar
style={styles.navBar}
customPrev={<TouchableOpacity
onPress={() => navigator.pop()}
style={styles.navBarLeftButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Cancel
</Text>
</TouchableOpacity>}
title='Yahoo'
titleColor='white'/>;
break;
}
if (navBar) {
navBar = React.addons.cloneWithProps(navBar, {
navigator: navigator,
route: route
});
}
return (
<View style={styles.container}>
<View style={styles.statusBar} />
{navBar}
<Component
navigator={navigator}
route={route} />
</View>
);
},
render: function() {
return (
<Navigator
debugOverlay={false}
style={styles.nav}
initialRoute={{title: 'Finance', index: 0, id: 'stocks'}}
renderScene={this.renderScene}
configureScene={this.configureScene}
/>
);
}
});
module.exports = Finance;