react-native-navigation的迁移库

WelcomeScreen.js 8.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. const React = require('react');
  2. const { Component } = require('react');
  3. const { View, Text, Button } = require('react-native');
  4. const testIDs = require('../testIDs');
  5. const Navigation = require('react-native-navigation');
  6. class WelcomeScreen extends Component {
  7. static get options() {
  8. return {
  9. topBar: {
  10. largeTitle: false
  11. }
  12. };
  13. }
  14. constructor(props) {
  15. super(props);
  16. this.onClickPush = this.onClickPush.bind(this);
  17. this.onClickShowModal = this.onClickShowModal.bind(this);
  18. this.onClickLifecycleScreen = this.onClickLifecycleScreen.bind(this);
  19. this.onClickPushOptionsScreen = this.onClickPushOptionsScreen.bind(this);
  20. this.onClickPushOrientationMenuScreen = this.onClickPushOrientationMenuScreen.bind(this);
  21. this.onClickBackHandler = this.onClickBackHandler.bind(this);
  22. this.onClickPushTopTabsScreen = this.onClickPushTopTabsScreen.bind(this);
  23. }
  24. render() {
  25. return (
  26. <View style={styles.root}>
  27. <Text testID={testIDs.WELCOME_SCREEN_HEADER} style={styles.h1}>{`React Native Navigation!`}</Text>
  28. <Button title="Switch to tab based app" testID={testIDs.TAB_BASED_APP_BUTTON} onPress={this.onClickSwitchToTabs} />
  29. <Button title="Switch to app with side menus" testID={testIDs.TAB_BASED_APP_SIDE_BUTTON} onPress={this.onClickSwitchToSideMenus} />
  30. <Button title="Push Lifecycle Screen" testID={testIDs.PUSH_LIFECYCLE_BUTTON} onPress={this.onClickLifecycleScreen} />
  31. <Button title="Push" testID={testIDs.PUSH_BUTTON} onPress={this.onClickPush} />
  32. <Button title="Push Options Screen" testID={testIDs.PUSH_OPTIONS_BUTTON} onPress={this.onClickPushOptionsScreen} />
  33. <Button title="Push Top Tabs screen" testID={testIDs.PUSH_TOP_TABS_BUTTON} onPress={this.onClickPushTopTabsScreen} />
  34. <Button title="Back Handler" testID={testIDs.BACK_HANDLER_BUTTON} onPress={this.onClickBackHandler} />
  35. <Button title="Show Modal" testID={testIDs.SHOW_MODAL_BUTTON} onPress={this.onClickShowModal} />
  36. <Button title="Show Redbox" testID={testIDs.SHOW_REDBOX_BUTTON} onPress={this.onClickShowRedbox} />
  37. <Button title="Orientation" testID={testIDs.ORIENTATION_BUTTON} onPress={this.onClickPushOrientationMenuScreen} />
  38. <Text style={styles.footer}>{`this.props.componentId = ${this.props.componentId}`}</Text>
  39. </View>
  40. );
  41. }
  42. onClickSwitchToTabs() {
  43. Navigation.setRoot({
  44. bottomTabs: {
  45. children: [
  46. {
  47. stack: {
  48. children: [
  49. {
  50. component: {
  51. name: 'navigation.playground.TextScreen',
  52. passProps: {
  53. text: 'This is tab 1',
  54. myFunction: () => 'Hello from a function!'
  55. },
  56. options: {
  57. bottomTab: {
  58. title: 'Tab 1',
  59. testID: testIDs.FIRST_TAB_BAR_BUTTON
  60. },
  61. bottomTabs: {
  62. textColor: '#12766b',
  63. selectedTextColor: 'red',
  64. fontFamily: 'HelveticaNeue-Italic',
  65. fontSize: 13
  66. }
  67. }
  68. }
  69. }
  70. ]
  71. }
  72. },
  73. {
  74. stack: {
  75. children: [
  76. {
  77. component: {
  78. name: 'navigation.playground.TextScreen',
  79. passProps: {
  80. text: 'This is tab 2'
  81. },
  82. options: {
  83. bottomTab: {
  84. title: 'Tab 2',
  85. testID: testIDs.SECOND_TAB_BAR_BUTTON
  86. }
  87. }
  88. }
  89. }
  90. ]
  91. }
  92. }
  93. ]
  94. }
  95. });
  96. }
  97. onClickSwitchToSideMenus() {
  98. Navigation.setRoot({
  99. sideMenu: {
  100. left: {
  101. component: {
  102. name: 'navigation.playground.SideMenuScreen',
  103. passProps: {
  104. side: 'left'
  105. }
  106. }
  107. },
  108. center: {
  109. bottomTabs: {
  110. children: [
  111. {
  112. stack: {
  113. children: [
  114. {
  115. component: {
  116. name: 'navigation.playground.TextScreen',
  117. passProps: {
  118. text: 'This is a side menu center screen tab 1'
  119. }
  120. }
  121. }
  122. ]
  123. }
  124. },
  125. {
  126. stack: {
  127. children: [
  128. {
  129. component: {
  130. name: 'navigation.playground.TextScreen',
  131. passProps: {
  132. text: 'This is a side menu center screen tab 2'
  133. }
  134. }
  135. }
  136. ]
  137. }
  138. },
  139. {
  140. stack: {
  141. children: [
  142. {
  143. component: {
  144. name: 'navigation.playground.TextScreen',
  145. passProps: {
  146. text: 'This is a side menu center screen tab 3'
  147. }
  148. }
  149. }
  150. ]
  151. }
  152. }
  153. ]
  154. }
  155. },
  156. right: {
  157. component: {
  158. name: 'navigation.playground.SideMenuScreen',
  159. passProps: {
  160. side: 'right'
  161. }
  162. }
  163. }
  164. }
  165. });
  166. }
  167. async onClickPush() {
  168. await Navigation.push(this.props.componentId, {
  169. component: {
  170. name: 'navigation.playground.PushedScreen',
  171. options: {
  172. topBar: {
  173. title: 'pushed'
  174. }
  175. }
  176. }
  177. });
  178. }
  179. onClickLifecycleScreen() {
  180. Navigation.push(this.props.componentId, {
  181. component: {
  182. name: 'navigation.playground.LifecycleScreen'
  183. }
  184. });
  185. }
  186. async onClickShowModal() {
  187. await Navigation.showModal({
  188. stack: {
  189. children: [
  190. {
  191. component: {
  192. name: 'navigation.playground.ModalScreen'
  193. }
  194. }
  195. ]
  196. }
  197. });
  198. }
  199. onClickShowRedbox() {
  200. undefined();
  201. }
  202. onClickPushOptionsScreen() {
  203. Navigation.push(this.props.componentId, {
  204. component: {
  205. name: 'navigation.playground.OptionsScreen'
  206. }
  207. });
  208. }
  209. onClickPushTopTabsScreen() {
  210. Navigation.push(this.props.componentId, {
  211. topTabs: {
  212. children: [
  213. {
  214. component: {
  215. name: 'navigation.playground.TopTabOptionsScreen',
  216. passProps: {
  217. title: 'Tab 1',
  218. text: 'This is top tab 1'
  219. },
  220. options: {
  221. topTab: {
  222. title: 'Tab 1'
  223. },
  224. topBar: {
  225. title: 'One'
  226. }
  227. }
  228. }
  229. },
  230. {
  231. component: {
  232. name: 'navigation.playground.TopTabScreen',
  233. passProps: {
  234. title: 'Tab 2',
  235. text: 'This is top tab 2'
  236. },
  237. options: {
  238. topTab: {
  239. title: 'Tab 2',
  240. titleFontFamily: 'HelveticaNeue-Italic'
  241. },
  242. topBar: {
  243. title: 'Two'
  244. }
  245. }
  246. }
  247. },
  248. {
  249. component: {
  250. name: 'navigation.playground.TopTabScreen',
  251. passProps: {
  252. title: 'Tab 3',
  253. text: 'This is top tab 3'
  254. },
  255. options: {
  256. topTab: {
  257. title: 'Tab 3'
  258. },
  259. topBar: {
  260. title: 'Three'
  261. }
  262. }
  263. }
  264. }
  265. ]
  266. },
  267. options: {
  268. topTabs: {
  269. selectedTabColor: '#12766b',
  270. unselectedTabColor: 'red',
  271. fontSize: 6
  272. }
  273. }
  274. });
  275. }
  276. onClickBackHandler() {
  277. Navigation.push(this.props.componentId, {
  278. component: {
  279. name: 'navigation.playground.BackHandlerScreen'
  280. }
  281. });
  282. }
  283. onClickPushOrientationMenuScreen() {
  284. Navigation.push(this.props.componentId, {
  285. component: {
  286. name: 'navigation.playground.OrientationSelectScreen'
  287. }
  288. });
  289. }
  290. }
  291. module.exports = WelcomeScreen;
  292. const styles = {
  293. root: {
  294. flexGrow: 1,
  295. justifyContent: 'center',
  296. alignItems: 'center'
  297. },
  298. h1: {
  299. fontSize: 24,
  300. textAlign: 'center',
  301. margin: 30
  302. },
  303. footer: {
  304. fontSize: 10,
  305. color: '#888',
  306. marginTop: 10
  307. }
  308. };