BasePage.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from 'react';
  9. import {
  10. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. TouchableOpacity,
  16. ImageBackground,
  17. Button,
  18. Dimensions,
  19. DeviceEventEmitter
  20. } from 'react-native';
  21. import AndroidUtil from '../util/AndroidUtil';
  22. import { NavigationActions, StackActions } from 'react-navigation';
  23. import commonUtil from '../pages/utils/commonutil';
  24. type Props = {};
  25. var width = Dimensions.get('window').width;
  26. var height = Dimensions.get('window').height;
  27. export default class BasePage extends Component<Props> {
  28. render() {
  29. return (
  30. <ImageBackground
  31. style={{
  32. flex: 1,
  33. width: '100%',
  34. height: '100%',
  35. Background: '#F8F8F8'
  36. }}
  37. />
  38. );
  39. }
  40. getWindowHeight() {
  41. return height;
  42. }
  43. getWindowWidth() {
  44. return width;
  45. }
  46. clearPageToNext = (name, obj) => {
  47. const resetAction = StackActions.reset({
  48. index: 0,
  49. actions: [
  50. NavigationActions.navigate({ routeName: name }) //要跳转到的页面名字
  51. ]
  52. });
  53. this.props.navigation.dispatch(resetAction, obj);
  54. };
  55. toNextPage = (params, obj) => {
  56. //跳转之前移除当前界面的监听
  57. this.removeListener();
  58. this.props.navigation.navigate(params, obj);
  59. };
  60. Toast(params) {
  61. AndroidUtil.showToast(params, AndroidUtil.SHORT);
  62. }
  63. toWebPage(json) {
  64. AndroidUtil.toWebActivity(json);
  65. }
  66. testJssss() {
  67. //测试调用安卓方法然后安卓方法调用JS下面的监听
  68. AndroidUtil.testJS();
  69. }
  70. goBack() {
  71. //返回上一页
  72. this.props.navigation.goBack();
  73. }
  74. saveUserInfo(user_data) {
  75. global.storage
  76. .save({
  77. key: 'userInfo',
  78. data: user_data
  79. })
  80. .then((result) => {
  81. console.log('保存成功');
  82. })
  83. .catch((err) => {
  84. console.log('保存失败');
  85. });
  86. }
  87. removeListener() {
  88. if (this.testJSaaa) {
  89. this.testJSaaa.remove();
  90. }
  91. if (this.toJsByAndroid) {
  92. this.toJsByAndroid.remove();
  93. }
  94. }
  95. componentWillMount() {
  96. //监听事件名为EventName的事件
  97. this.testJSaaa = DeviceEventEmitter.addListener('testJSaaa', (e) => {
  98. //e是原生传过来的参数,ceshi是安卓里面put的key
  99. alert(e.ceshi);
  100. });
  101. this.toJsByAndroid = DeviceEventEmitter.addListener('toJsByAndroid', (e) => {
  102. alert(e.name);
  103. alert(e.sex);
  104. alert(e.age);
  105. });
  106. }
  107. componentWillUnmount() {
  108. // 移除监听
  109. this.removeListener();
  110. }
  111. }
  112. const styles = StyleSheet.create({
  113. title_text: {
  114. justifyContent: 'center',
  115. alignItems: 'center',
  116. color: 'red',
  117. fontSize: 30,
  118. textAlign: 'center',
  119. marginTop: 30,
  120. marginBottom: 50
  121. }
  122. });