forked from race604/ZhiHuDaily-React-Native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.js
127 lines (116 loc) · 2.74 KB
/
index.android.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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
var React = require('react-native');
var {
AppRegistry,
BackAndroid,
Text,
View,
Navigator,
StyleSheet,
ToolbarAndroid,
ToastAndroid,
} = React;
var ToolbarAndroid = require('ToolbarAndroid');
var TimerMixin = require('react-timer-mixin');
var WelcomeScreen = require('./WelcomeScreen');
var ListScreen = require('./ListScreen');
var StoryScreen = require('./StoryScreen');
var _navigator;
BackAndroid.addEventListener('hardwareBackPress', function() {
if (_navigator && _navigator.getCurrentRoutes().length > 1) {
_navigator.pop();
return true;
}
return false;
});
var backHandler = {
handler: null,
}
var RCTZhiHuDaily = React.createClass({
// mixins: [TimerMixin],
// componentDidMount: function() {
// this.setTimeout(
// () => {
// this.setState({splashed: true});
// },
// 50
// );
// },
RouteMapper: function(route, navigationOperations, onComponentRef) {
_navigator = navigationOperations;
if (route.name === 'home') {
return (
<View style={styles.container}>
<ListScreen navigator={navigationOperations}/>
</View>
);
} else if (route.name === 'story') {
return (
<View style={styles.container}>
<StoryScreen
style={{flex: 1}}
navigator={navigationOperations}
story={route.story} />
</View>
);
}
},
getInitialState: function() {
return {
splashed: false,
};
},
onActionSelected: function(position) {
},
render: function() {
var initialRoute = {name: 'home'};
return (
<Navigator
style={styles.container}
initialRoute={initialRoute}
configureScene={() => Navigator.SceneConfigs.FadeAndroid}
renderScene={this.RouteMapper}
/>
);
// if (!this.state.splashed) {
// return (
// <WelcomeScreen />
// );
// } else {
// return (
// <View style={styles.container}>
// <ToolbarAndroid
// navIcon={require('image!ic_menu_white')}
// title="知乎日报"
// titleColor="white"
// style={styles.toolbar}
// actions={toolbarActions}
// onActionSelected={this.onActionSelected} />
// <ListScreen />
// </View>
//
// );
// }
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
AppRegistry.registerComponent('RCTZhiHuDaily', () => RCTZhiHuDaily);