-
Notifications
You must be signed in to change notification settings - Fork 427
/
Copy pathrouter.js
216 lines (212 loc) · 10.2 KB
/
router.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/**
* Created by guoshuyu on 2017/11/7.
*/
import React, {Component} from 'react';
import {
Scene,
Router,
Lightbox, Drawer,
} from 'react-native-router-flux';
import DynamicPage from './components/DynamicPage';
import LoginPage from './components/LoginPage';
import LoginWebPage from './components/LoginWebPage';
import MyPage from './components/MyPage';
import PersonInfoPage from './components/PersonInfoPage';
import PhotoPage from './components/PhotoPage';
import AboutPage from './components/AboutPage';
import NotifyPage from './components/NotifyPage';
import IssueDetail from './components/IssueDetailPage';
import VersionPage from './components/ReleasePage';
import PersonPage from './components/PersonPage';
import CodeDetailPage from './components/CodeDetailPage';
import SettingPage from './components/SettingPage';
import RepositoryDetail from './components/RepositoryDetailPage';
import PushDetailPage from './components/PushDetailPage';
import TrendPage from './components/TrendPage';
import WebPage from './components/WebPage';
import SearchPage from './components/SearchPage';
import ListPage from './components/ListPage';
import TabIcon from './components/widget/TabIcon';
import TextInputModal from './components/common/CommonTextInputModal';
import CommentConfirmModal from './components/common/CommonConfirmModal';
import LoadingModal from './components/common/LoadingModal';
import CommonOptionModal from './components/common/CommonOptionModal';
import DrawerFilter from './components/widget/SearchDrawerFilter';
import CustomBackButton from './components/widget/CustomBackButton';
import CustomDrawerButton from './components/widget/CustomDrawerButton';
import SearchButton from './components/widget/CustomSearchButton';
import CommonIconButton from './components/common/CommonIconButton';
import styles from './style';
import I18n, {changeLocale} from './style/i18n';
import * as Constant from './style/constant';
import BackUtils from './utils/backUtils';
import {CommonMoreRightBtnPress, RepositoryDetailRightBtnPress} from './utils/actionUtils';
import WelcomePage from './components/WelcomePage';
import {screenWidth, drawerWidth} from './style/index';
/**
* 全局路由
*/
const getRouter = () => {
return (
<Router
getSceneStyle={() => {
return styles.routerStyle;
}}
backAndroidHandler={
BackUtils()}>
<Lightbox>
<Scene key="main">
<Scene key="WelcomePage" component={WelcomePage} hideNavBar hideTabBar hide/>
</Scene>
<Scene key="LoginPage"
navigationBarStyle={styles.navigationBar}
titleStyle={{color: Constant.titleTextColor}}>
<Scene component={LoginPage}
showLabel={false}
hideNavBar/>
<Scene key="LoginWebPage"
renderLeftButton={() => <CustomBackButton/>}
component={LoginWebPage}
title={I18n('Login')}
showLabel={false}/>
</Scene>
<Scene key="root"
navigationBarStyle={styles.navigationBar}
titleStyle={{color: Constant.titleTextColor}}>
<Scene key="mainTabPage"
tabs
lazy
wrap={false}
showLabel={false}
tabBarPosition={'bottom'}
title={I18n('appName')}
renderRightButton={
() => <SearchButton/>
}
tabBarStyle={{
height: Constant.tabBarHeight,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: Constant.tabBackgroundColor,
}}>
<Scene
key="DynamicPage"
component={DynamicPage}
icon={TabIcon}
title={I18n('tabDynamic')}
tabIconName={'tabDynamic'}
/>
<Scene
key="TrendPage"
component={TrendPage}
icon={TabIcon}
title={I18n('tabRecommended')}
tabIconName={'tabRecommended'}
/>
<Scene
key="MyPage"
component={MyPage}
icon={TabIcon}
title={I18n('tabMy')}
tabIconName={'tabMy'}
/>
</Scene>
<Scene key="PersonPage" component={PersonPage}
needRightBtn={true}
rightBtn={'ios-more'}
iconType={2}
rightBtnPress={(params) => {
return CommonMoreRightBtnPress(params);
}}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}/>
<Scene key="SettingPage" component={SettingPage} title={I18n('setting')}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="ListPage" component={ListPage}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}
/>
<Drawer key="SearchPageDrawer"
contentComponent={DrawerFilter}
drawerPosition={'right'}
hideNavBar
drawerWidth={drawerWidth}
drawerIcon={<CustomDrawerButton/>}
renderLeftButton={() => <CustomBackButton/>}>
<Scene key="SearchPage" component={SearchPage} title={I18n('search')}/>
</Drawer>
<Scene key="RepositoryDetail" component={RepositoryDetail}
needRightBtn={true}
rightBtn={'ios-more'}
iconType={2}
rightBtnPress={(params) => {
return RepositoryDetailRightBtnPress(params);
}}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="IssueDetail" component={IssueDetail}
rightBtn={'ios-more'}
iconType={2}
rightBtnPress={(params) => {
return CommonMoreRightBtnPress(params);
}}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="PushDetailPage" component={PushDetailPage}
needRightBtn={true}
rightBtn={'ios-more'}
iconType={2}
rightBtnPress={(params) => {
return CommonMoreRightBtnPress(params);
}}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="VersionPage" component={VersionPage}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="NotifyPage" component={NotifyPage}
title={I18n('notify')}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="CodeDetailPage" component={CodeDetailPage}
title={I18n('notify')}
needRightBtn={true}
rightBtn={'ios-more'}
iconType={2}
rightBtnPress={(params) => {
return CommonMoreRightBtnPress(params);
}}
renderRightButton={(params) => <CommonIconButton data={params}/>}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="AboutPage" component={AboutPage}
title={I18n('about')}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="PersonInfoPage" component={PersonInfoPage}
title={I18n('about')}
renderLeftButton={() => <CustomBackButton/>}
/>
<Scene key="WebPage" component={WebPage}
hideNavBar
/>
<Scene key="PhotoPage" component={PhotoPage}
hideNavBar
/>
</Scene>
<Scene key="LoadingModal" component={LoadingModal}/>
<Scene key="TextInputModal" component={TextInputModal}/>
<Scene key="ConfirmModal" component={CommentConfirmModal}/>
<Scene key="OptionModal" component={CommonOptionModal}/>
<Scene key="PhotoPage" component={PhotoPage}/>
</Lightbox>
</Router>
);
};
export default getRouter;