Splash.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. export default class Splash extends BasePage {
  6. state = {
  7. exist: false
  8. };
  9. render() {
  10. return (
  11. <View style={{ flex: 1 }}>
  12. <StatusBar backgroundColor={'transparent'} translucent={true} />
  13. </View>
  14. );
  15. }
  16. componentWillMount() {
  17. // global.storage.remove({ key: 'userInfo' });
  18. this.getUserInfo();
  19. }
  20. componentDidMount() {
  21. setTimeout(() => {
  22. SplashScreen.hide();
  23. if (this.state.exist) {
  24. this.clearPageToNext('MainPage');
  25. } else {
  26. this.clearPageToNext('Login');
  27. }
  28. }, 3000);
  29. }
  30. getUserInfo() {
  31. //判断是否有用户
  32. global.storage
  33. .load({
  34. key: 'userInfo'
  35. })
  36. .then((result) => {
  37. this.setState({
  38. exist: true
  39. });
  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. break;
  51. case 'ExpiredError':
  52. // TODO
  53. // alert('ExpiredError');
  54. break;
  55. }
  56. });
  57. }
  58. }