react-native-navigation的迁移库

PushedScreen.js 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. const _ = require('lodash');
  2. const React = require('react');
  3. const {Component} = require('react');
  4. const {View, Text, Platform} = require('react-native');
  5. const {Navigation} = require('react-native-navigation');
  6. const Button = require('./Button');
  7. const testIDs = require('../testIDs');
  8. class PushedScreen extends Component {
  9. static get options() {
  10. return {
  11. _statusBar: {
  12. visible: false,
  13. drawBehind: true
  14. },
  15. topBar: {
  16. testID: testIDs.TOP_BAR_ELEMENT,
  17. rightButtons: {
  18. id: 'singleBtn',
  19. text: 'single',
  20. testID: testIDs.TOP_BAR_BUTTON
  21. },
  22. rightButtonColor: 'red',
  23. noBorder: true
  24. },
  25. bottomTabs: {
  26. visible: false
  27. }
  28. };
  29. }
  30. constructor(props) {
  31. super(props);
  32. if (this.props.simulateLongRunningTask) {
  33. this.simulateLongRunningTask();
  34. }
  35. this.onClickPush = this.onClickPush.bind(this);
  36. this.onClickPushBottomTabs = this.onClickPushBottomTabs.bind(this);
  37. this.onClickPop = this.onClickPop.bind(this);
  38. this.onClickPopPrevious = this.onClickPopPrevious.bind(this);
  39. this.onClickPopToFirstPosition = this.onClickPopToFirstPosition.bind(this);
  40. this.onClickPopToRoot = this.onClickPopToRoot.bind(this);
  41. this.onClickSetStackRoot = this.onClickSetStackRoot.bind(this);
  42. this.state = {disabled: false};
  43. }
  44. simulateLongRunningTask() {
  45. // tslint:disable-next-line
  46. for (let i = 0; i < Math.pow(2, 25); i++);
  47. }
  48. listeners = [];
  49. componentDidMount() {
  50. this.listeners.push(
  51. Navigation.events().registerComponentDidAppearListener((event) => {
  52. if (this.state.previewComponentId === event.componentId) {
  53. this.setState({disabled: event.type === 'ComponentDidAppear'});
  54. }
  55. })
  56. );
  57. if (Platform.OS === 'ios') {
  58. // this.listeners.push(
  59. // Navigation.events().registerNativeEventListener((name, params) => {
  60. // if (name === 'previewContext') {
  61. // const { previewComponentId } = params;
  62. // this.setState({ previewComponentId });
  63. // }
  64. // })
  65. // );
  66. }
  67. }
  68. componentWillUnmount() {
  69. this.listeners.forEach(listener => listener.remove && listener.remove());
  70. }
  71. render() {
  72. const stackPosition = this.getStackPosition();
  73. return (
  74. <View style={styles.root}>
  75. <Text testID={testIDs.PUSHED_SCREEN_HEADER} style={styles.h1}>{`Pushed Screen`}</Text>
  76. <Text style={styles.h2}>{`Stack Position: ${stackPosition}`}</Text>
  77. <Button title='Push' testID={testIDs.PUSH_BUTTON} onPress={this.onClickPush} />
  78. <Button title='Push bottomTabs' testID={testIDs.PUSH_BOTTOM_TABS_BUTTON} onPress={this.onClickPushBottomTabs} />
  79. {Platform.OS === 'ios' && <Button testID={testIDs.SHOW_PREVIEW_BUTTON} onPress={this.onClickPush} onPressIn={this.onClickShowPreview} title='Push Preview' />}
  80. <Button title='Pop' testID={testIDs.POP_BUTTON} onPress={this.onClickPop} />
  81. <Button title='Pop Previous' testID={testIDs.POP_PREVIOUS_BUTTON} onPress={this.onClickPopPrevious} />
  82. <Button title='Pop To Root' testID={testIDs.POP_TO_ROOT} onPress={this.onClickPopToRoot} />
  83. <Button title='Set Stack Root' testID={testIDs.SET_STACK_ROOT_BUTTON} onPress={this.onClickSetStackRoot} />
  84. <Button title='Push and Wait for Render' testID={testIDs.PUSH_BUTTON_WAIT_FOR_RENDER} onPress={this.onClickPushWaitForRender} />
  85. {stackPosition > 2 && <Button title='Pop To Stack Position 1' testID={testIDs.POP_STACK_POSITION_ONE_BUTTON} onPress={this.onClickPopToFirstPosition} />}
  86. <Text style={styles.footer}>{`this.props.componentId = ${this.props.componentId}`}</Text>
  87. </View>
  88. );
  89. }
  90. onClickShowPreview = async ({reactTag}) => {
  91. await Navigation.push(this.props.componentId, {
  92. component: {
  93. name: 'navigation.playground.PushedScreen',
  94. passProps: {
  95. stackPosition: this.getStackPosition() + 1,
  96. previousScreenIds: _.concat([], this.props.previousScreenIds || [], this.props.componentId)
  97. },
  98. options: {
  99. topBar: {
  100. title: {
  101. text: `Pushed ${this.getStackPosition() + 1}`
  102. }
  103. },
  104. animations: {
  105. push: {
  106. enabled: false
  107. }
  108. },
  109. preview: {
  110. reactTag,
  111. height: 400,
  112. commit: true,
  113. actions: [{
  114. id: 'action-cancel',
  115. title: 'Cancel'
  116. }]
  117. }
  118. }
  119. }
  120. });
  121. }
  122. async onClickPush() {
  123. if (this.state.disabled) {
  124. return;
  125. }
  126. await Navigation.push(this.props.componentId, {
  127. component: {
  128. name: 'navigation.playground.PushedScreen',
  129. passProps: {
  130. stackPosition: this.getStackPosition() + 1,
  131. previousScreenIds: _.concat([], this.props.previousScreenIds || [], this.props.componentId)
  132. },
  133. options: {
  134. topBar: {
  135. title: {
  136. text: `Pushed ${this.getStackPosition() + 1}`
  137. }
  138. }
  139. }
  140. }
  141. });
  142. }
  143. async onClickPop() {
  144. await Navigation.pop(this.props.componentId);
  145. }
  146. async onClickPopPrevious() {
  147. await Navigation.pop(_.last(this.props.previousScreenIds));
  148. }
  149. async onClickPopToFirstPosition() {
  150. await Navigation.popTo(this.props.previousScreenIds[0]);
  151. }
  152. async onClickPopToRoot() {
  153. await Navigation.popToRoot(this.props.componentId);
  154. }
  155. async onClickSetStackRoot() {
  156. await Navigation.setStackRoot(this.props.componentId, [
  157. {
  158. component: {
  159. name: 'navigation.playground.PushedScreen',
  160. passProps: {
  161. stackPosition: this.getStackPosition() + 1,
  162. previousScreenIds: _.concat([], this.props.previousScreenIds || [], this.props.componentId)
  163. },
  164. options: {
  165. animations: {
  166. setStackRoot: {
  167. enabled: false
  168. }
  169. },
  170. topBar: {
  171. title: {
  172. text: `Pushed ${this.getStackPosition() + 1} a`
  173. }
  174. }
  175. }
  176. }
  177. },
  178. {
  179. component: {
  180. name: 'navigation.playground.PushedScreen',
  181. passProps: {
  182. stackPosition: this.getStackPosition() + 1,
  183. previousScreenIds: _.concat([], this.props.previousScreenIds || [], this.props.componentId)
  184. },
  185. options: {
  186. animations: {
  187. setStackRoot: {
  188. enabled: false
  189. }
  190. },
  191. topBar: {
  192. title: {
  193. text: `Pushed ${this.getStackPosition() + 1} b`
  194. }
  195. }
  196. }
  197. }
  198. }
  199. ]);
  200. }
  201. onClickPushWaitForRender = async () => {
  202. await Navigation.push(this.props.componentId, {
  203. component: {
  204. name: 'navigation.playground.PushedScreen',
  205. passProps: {
  206. stackPosition: this.getStackPosition() + 1,
  207. previousScreenIds: _.concat([], this.props.previousScreenIds || [], this.props.componentId),
  208. simulateLongRunningTask: true
  209. },
  210. options: {
  211. layout: {
  212. backgroundColor: 'transparent'
  213. },
  214. topBar: {
  215. title: {
  216. text: `Pushed ${this.getStackPosition() + 1}`
  217. }
  218. },
  219. animations: {
  220. push: {
  221. waitForRender: true
  222. }
  223. }
  224. }
  225. }
  226. });
  227. }
  228. async onClickPushBottomTabs() {
  229. await Navigation.push(this.props.componentId, {
  230. bottomTabs: {
  231. id: 'BottomTabs',
  232. children: [
  233. {
  234. stack: {
  235. id: 'TAB1_ID',
  236. children: [
  237. {
  238. component: {
  239. name: 'navigation.playground.TextScreen',
  240. passProps: {
  241. text: 'This is tab 1',
  242. myFunction: () => 'Hello from a function!'
  243. },
  244. options: {
  245. topBar: {
  246. visible: true,
  247. animate: false,
  248. title: {
  249. text: 'React Native Navigation!'
  250. }
  251. },
  252. bottomTab: {
  253. text: 'Tab 1',
  254. icon: require('../images/one.png'),
  255. selectedIcon: require('../images/one.png'),
  256. testID: testIDs.FIRST_TAB_BAR_BUTTON
  257. }
  258. }
  259. }
  260. }
  261. ],
  262. options: {
  263. topBar: {
  264. visible: false
  265. }
  266. }
  267. }
  268. },
  269. {
  270. stack: {
  271. children: [
  272. {
  273. component: {
  274. name: 'navigation.playground.TextScreen',
  275. passProps: {
  276. text: 'This is tab 2'
  277. }
  278. }
  279. }
  280. ],
  281. options: {
  282. bottomTab: {
  283. text: 'Tab 2',
  284. icon: require('../images/two.png'),
  285. testID: testIDs.SECOND_TAB_BAR_BUTTON
  286. }
  287. }
  288. }
  289. },
  290. {
  291. component: {
  292. name: 'navigation.playground.TextScreen',
  293. passProps: {
  294. text: 'This is tab 3',
  295. myFunction: () => 'Hello from a function!'
  296. },
  297. options: {
  298. topBar: {
  299. visible: true,
  300. animate: false
  301. },
  302. bottomTab: {
  303. text: 'Tab 3',
  304. icon: require('../images/one.png'),
  305. selectedIcon: require('../images/one.png')
  306. }
  307. }
  308. }
  309. }
  310. ],
  311. options: {
  312. bottomTabs: {
  313. titleDisplayMode: 'alwaysShow',
  314. testID: testIDs.BOTTOM_TABS_ELEMENT
  315. }
  316. }
  317. }
  318. });
  319. }
  320. getStackPosition() {
  321. return this.props.stackPosition || 1;
  322. }
  323. }
  324. const styles = {
  325. root: {
  326. flexGrow: 1,
  327. justifyContent: 'center',
  328. alignItems: 'center',
  329. backgroundColor: '#f5fcff'
  330. },
  331. h1: {
  332. fontSize: 24,
  333. textAlign: 'center',
  334. margin: 10
  335. },
  336. h2: {
  337. fontSize: 12,
  338. textAlign: 'center',
  339. margin: 10
  340. },
  341. footer: {
  342. fontSize: 10,
  343. color: '#888',
  344. marginTop: 10
  345. }
  346. };
  347. module.exports = PushedScreen;