Splash.js 1.9 KB

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