Splash.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. this.Advertisement();
  40. })
  41. .catch((err) => {
  42. console.log(err.message);
  43. switch (err.name) {
  44. case 'NotFoundError':
  45. // TODO;
  46. // alert('NotFoundError');
  47. this.setState({
  48. exist: false
  49. });
  50. SplashScreen.hide();
  51. this.Advertisement();
  52. break;
  53. case 'ExpiredError':
  54. // TODO
  55. // alert('ExpiredError');
  56. break;
  57. }
  58. });
  59. }
  60. //获取用户之后的操作,或者是别的操作。
  61. Advertisement() {
  62. //假装3秒广告
  63. setTimeout(() => {
  64. if (this.state.exist) {
  65. this.clearPageToNext('MainPage');
  66. } else {
  67. this.clearPageToNext('Login');
  68. }
  69. }, 3000);
  70. }
  71. }