Splash.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import React, { PureComponent } from 'react';
  2. import { StyleSheet, Text, View, Image, TouchableOpacity, StatusBar, ToastAndroid, TextInput } from 'react-native';
  3. import BasePage from './BasePage';
  4. import SplashScreen from 'react-native-splash-screen';
  5. import commonutil from './utils/commonutil';
  6. export default class Splash extends BasePage {
  7. state = {
  8. exist: false,
  9. MainPageParams: ''
  10. };
  11. render() {
  12. return (
  13. <View style={{ flex: 1 }}>
  14. <StatusBar backgroundColor={'transparent'} translucent={true} />
  15. <View style={{ flex: 1 }} />
  16. <View style={{ flex: 5 }}>
  17. <Text style={{ fontSize: 30 }}>模拟活动广告。。。。</Text>
  18. </View>
  19. </View>
  20. );
  21. }
  22. componentWillMount() {
  23. // global.storage.remove({ key: 'userInfo' });
  24. this.getUserInfo();
  25. }
  26. componentDidMount() {}
  27. async getUserInfo() {
  28. //判断是否有用户
  29. await global.storage
  30. .load({
  31. key: 'userInfo'
  32. })
  33. .then((result) => {
  34. var usermap = commonutil.jsonToMap(result);
  35. this.setState({
  36. exist: true,
  37. MainPageParams: usermap.get('ageGroup')
  38. });
  39. SplashScreen.hide();
  40. this.Advertisement();
  41. })
  42. .catch((err) => {
  43. console.log(err.message);
  44. switch (err.name) {
  45. case 'NotFoundError':
  46. // TODO;
  47. // alert('NotFoundError');
  48. this.setState({
  49. exist: false
  50. });
  51. SplashScreen.hide();
  52. this.Advertisement();
  53. break;
  54. case 'ExpiredError':
  55. // TODO
  56. // alert('ExpiredError');
  57. break;
  58. }
  59. });
  60. }
  61. //获取用户之后的操作,或者是别的操作。
  62. Advertisement() {
  63. //假装3秒广告
  64. setTimeout(() => {
  65. if (this.state.exist) {
  66. this.clearPageToNext('MainPage');
  67. } else {
  68. this.clearPageToNext('Login');
  69. }
  70. }, 3000);
  71. }
  72. }