-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.android.js
136 lines (131 loc) · 3.09 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
128
129
130
131
132
133
134
135
136
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
var React = require('react-native');
var {
AppRegistry,
StyleSheet,
Text,
View,
Navigator,
ToolbarAndroid,
ToastAndroid,
} = React;
var SplashScreen = require('./app/android/views/SplashScreen');
var TimerMixin = require('react-timer-mixin');
var ToolbarAndroid = require('ToolbarAndroid');
var MainToolbar = require('./app/android/views/MainToolbar');
var MovieScreen = require('./app/android/views/MovieScreen');
var _navigator;
var Hot = require('./app/android/views/Hot');
var CategoryList = require('./app/android/views/CategoryList');
var ListGrid = require('./app/android/views/ListGrid');
var Search = require('./app/android/views/Search');
var Demo = require('./app/android/views/Demo');
var doukanmv = React.createClass({
mixins: [TimerMixin],
getInitialState : function () {
return {
splashed: false,
currentRoute :{
name :'home'
}
};
},
componentDidMount: function () {
this.setTimeout(
() => {
this.setState({splashed: true});
},
2000,
);
console.log('aaa in mount');
},
RouteManager: function (route, navigationOperations, onComponentRef) {
_navigator = navigationOperations;
var name = route.name;
if (name == 'home') {
return (
<View style={styles.container}>
<Hot navigator={navigationOperations}/>
</View>
);
} else if (name === 'list_ol') {
return (
<View style={styles.container}>
<CategoryList navigator={navigationOperations}/>
</View>
);
} else if (name === 'search') {
return (
<View style={styles.container}>
<ListGrid />
</View>
);
} else if (name === 'user') {
return (
<View style={styles.container}>
<Search/>
</View>
);
} else if (name ==='settings') {
return (
<View style={styles.container}>
<Demo/>
</View>
);
} else if (name === 'video') {
return (<MovieScreen navigator= {navigationOperations} id = {route.id} video={route.video} />);
}
},
onSelectMenu : function (name) {
this.setState({currentRoute:{name:name}});
if (_navigator && _navigator.getCurrentRoutes().length > 0) {
_navigator.replace({name:this.state.currentRoute.name});
}
ToastAndroid.show('click ' + name,ToastAndroid.SHORT);
},
render: function() {
if(!this.state.splashed) {
return (
<SplashScreen />
);
}
var test = [{name:"chang"}];
return (
<View style={styles.container}>
<Navigator
style={styles.container}
initialRoute={this.state.currentRoute}
configureScene={() => Navigator.SceneConfigs.FadeAndroid}
renderScene={this.RouteManager}
>
</Navigator>
<MainToolbar
style={styles.maintoolbar}
currentroute={this.state.currentRoute} onselect={this.onSelectMenu}/>
</View>
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
maintoolbar: {
height: 56,
position: 'absolute',
left: 0 ,
right: 0,
bottom: 0
},
});
AppRegistry.registerComponent('doukanmv', () => doukanmv);