BlueWallet/index.js

81 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-12-24 19:12:27 +01:00
import 'intl';
import 'intl/locale-data/jsonp/en';
import React from 'react';
import './shim.js';
import { AppRegistry } from 'react-native';
import WalletMigrate from './screen/wallets/walletMigrate';
import { name as appName } from './app.json';
import App from './App';
2019-09-20 02:09:33 +02:00
import LottieView from 'lottie-react-native';
import UnlockWith from './UnlockWith.js';
2019-09-20 02:09:33 +02:00
const A = require('./analytics');
if (!Error.captureStackTrace) {
// captureStackTrace is only available when debugging
Error.captureStackTrace = () => {};
}
class BlueAppComponent extends React.Component {
constructor(props) {
super(props);
this.state = { isMigratingData: true, onAnimationFinished: false, successfullyAuthenticated: false };
2019-09-20 02:09:33 +02:00
}
componentDidMount() {
const walletMigrate = new WalletMigrate(this.setIsMigratingData);
walletMigrate.start();
}
2019-01-30 03:13:45 +01:00
setIsMigratingData = async () => {
A(A.ENUM.INIT);
this.setState({ isMigratingData: false });
2019-01-30 03:13:45 +01:00
};
2019-09-20 02:09:33 +02:00
onAnimationFinish = () => {
if (this.state.isMigratingData) {
this.loadingSplash.play(0);
} else {
this.setState({ onAnimationFinished: true });
}
};
onSuccessfullyAuthenticated = () => {
2019-10-16 18:51:00 +02:00
this.setState({ successfullyAuthenticated: true });
};
render() {
2019-09-20 02:09:33 +02:00
if (this.state.isMigratingData) {
return (
<LottieView
ref={ref => (this.loadingSplash = ref)}
onAnimationFinish={this.onAnimationFinish}
source={require('./img/bluewalletsplash.json')}
autoPlay
loop={false}
/>
);
} else {
if (this.state.onAnimationFinished) {
2019-10-16 18:51:00 +02:00
return this.state.successfullyAuthenticated ? (
<App />
) : (
<UnlockWith onSuccessfullyAuthenticated={this.onSuccessfullyAuthenticated} />
);
2019-09-20 02:09:33 +02:00
} else {
return (
<LottieView
ref={ref => (this.loadingSplash = ref)}
onAnimationFinish={this.onAnimationFinish}
source={require('./img/bluewalletsplash.json')}
autoPlay
loop={false}
/>
);
}
}
}
}
AppRegistry.registerComponent(appName, () => BlueAppComponent);