lbry-desktop/src/ui/component/splash/view.jsx

225 lines
6.4 KiB
React
Raw Normal View History

2018-08-13 18:23:01 +02:00
// @flow
2018-11-08 20:48:38 +01:00
import type { Status } from 'types/status';
2018-03-26 23:32:43 +02:00
import * as React from 'react';
import * as MODALS from 'constants/modal_types';
import { Lbry } from 'lbry-redux';
2018-07-18 21:48:30 +02:00
import ModalWalletUnlock from 'modal/modalWalletUnlock';
import ModalIncompatibleDaemon from 'modal/modalIncompatibleDaemon';
import ModalUpgrade from 'modal/modalUpgrade';
import ModalDownloading from 'modal/modalDownloading';
2018-08-13 18:23:01 +02:00
import LoadScreen from './internal/load-screen';
2016-11-22 21:19:08 +01:00
2018-11-08 20:48:38 +01:00
const ONE_MINUTE = 60 * 1000;
2018-03-26 23:32:43 +02:00
type Props = {
checkDaemonVersion: () => Promise<any>,
2018-07-18 21:48:30 +02:00
notifyUnlockWallet: () => Promise<any>,
2018-08-13 18:23:01 +02:00
daemonVersionMatched: boolean,
onReadyToLaunch: () => void,
2018-08-16 07:17:15 +02:00
authenticate: () => void,
hideModal: () => void,
modal: ?{
2018-04-23 20:02:06 +02:00
id: string,
},
2018-03-26 23:32:43 +02:00
};
2017-05-17 10:10:25 +02:00
2018-03-26 23:32:43 +02:00
type State = {
details: string,
message: string,
2018-07-18 21:48:30 +02:00
launchedModal: boolean,
2018-11-08 20:48:38 +01:00
error: boolean,
isRunning: boolean,
launchWithIncompatibleDaemon: boolean,
2018-03-26 23:32:43 +02:00
};
export default class SplashScreen extends React.PureComponent<Props, State> {
2018-03-26 23:32:43 +02:00
constructor(props: Props) {
2017-05-17 10:10:25 +02:00
super(props);
this.state = {
2018-08-13 18:37:02 +02:00
details: __('Starting up'),
message: __('Connecting'),
2018-07-18 21:48:30 +02:00
launchedModal: false,
error: true,
launchWithIncompatibleDaemon: false,
isRunning: false,
2017-05-17 10:10:25 +02:00
};
2018-08-20 18:33:36 +02:00
2018-11-12 19:22:51 +01:00
(this: any).renderModals = this.renderModals.bind(this);
(this: any).runWithIncompatibleDaemon = this.runWithIncompatibleDaemon.bind(this);
2018-08-20 18:33:36 +02:00
this.hasRecordedUser = false;
2018-11-08 20:48:38 +01:00
this.timeout = undefined;
2017-05-17 10:10:25 +02:00
}
2018-08-13 18:23:01 +02:00
componentDidMount() {
const { checkDaemonVersion } = this.props;
2018-11-08 20:48:38 +01:00
this.adjustErrorTimeout();
2018-08-13 18:23:01 +02:00
Lbry.connect()
.then(checkDaemonVersion)
2018-08-13 18:23:01 +02:00
.then(() => {
this.updateStatus();
})
.catch(() => {
this.setState({
message: __('Connection Failure'),
details: __(
'Try closing all LBRY processes and starting again. If this still happens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug.'
),
});
});
}
2018-11-08 20:48:38 +01:00
componentDidUpdate() {
this.adjustErrorTimeout();
}
componentWillUnmount() {
if (this.timeout) {
clearTimeout(this.timeout);
}
}
adjustErrorTimeout() {
if (this.timeout) {
clearTimeout(this.timeout);
}
// Every time we make it to a new step in the daemon startup process, reset the timer
// If nothing changes after 1 minute, show the error message.
this.timeout = setTimeout(() => {
this.setState({ error: true });
}, ONE_MINUTE);
}
2017-05-17 10:10:25 +02:00
updateStatus() {
Lbry.status().then(status => {
this.updateStatusCallback(status);
});
2017-05-17 10:10:25 +02:00
}
updateStatusCallback(status: Status) {
const { notifyUnlockWallet, authenticate, modal } = this.props;
2018-07-18 21:48:30 +02:00
const { launchedModal } = this.state;
2018-08-16 07:17:15 +02:00
2018-11-08 20:48:38 +01:00
if (status.error) {
2019-03-05 05:46:57 +01:00
this.setState({ error: true });
2018-11-08 20:48:38 +01:00
return;
}
2018-08-20 18:33:36 +02:00
if (!this.hasRecordedUser && status) {
2018-08-16 07:17:15 +02:00
authenticate();
2018-08-20 18:33:36 +02:00
this.hasRecordedUser = true;
2018-08-16 07:17:15 +02:00
}
2018-11-08 20:48:38 +01:00
const { wallet, blockchain_headers: blockchainHeaders } = status;
// If the wallet is locked, stop doing anything and make the user input their password
if (wallet && wallet.is_locked) {
// Clear the error timeout, it might sit on this step for a while until someone enters their password
if (this.timeout) {
clearTimeout(this.timeout);
}
// Make sure there isn't another active modal (like INCOMPATIBLE_DAEMON)
if (launchedModal === false && !modal) {
2018-08-13 18:23:01 +02:00
this.setState({ launchedModal: true }, () => notifyUnlockWallet());
}
} else if (status.is_running) {
// If we cleared the error timout due to a wallet being locked, make sure to start it back up
if (!this.timeout) {
this.adjustErrorTimeout();
}
2019-02-18 18:33:02 +01:00
Lbry.resolve({ urls: 'lbry://one' }).then(() => {
this.setState({ isRunning: true }, () => this.continueAppLaunch());
});
2018-11-08 20:48:38 +01:00
return;
2018-11-08 20:48:38 +01:00
} else if (blockchainHeaders) {
const blockChainHeaders = blockchainHeaders;
if (blockChainHeaders.download_progress < 100) {
this.setState({
message: __('Blockchain Sync'),
details: `${__('Catching up with the blockchain')} (${
blockchainHeaders.download_progress
}%)`,
});
}
} else if (wallet && wallet.blocks_behind > 0) {
const format = wallet.blocks_behind === 1 ? '%s block behind' : '%s blocks behind';
2018-07-18 21:48:30 +02:00
this.setState({
2018-08-13 18:23:01 +02:00
message: __('Blockchain Sync'),
2018-11-08 20:48:38 +01:00
details: __(format, wallet.blocks_behind),
2018-07-18 21:48:30 +02:00
});
2018-11-08 20:48:38 +01:00
} else if (wallet && wallet.blocks_behind === 0) {
2017-07-29 23:52:32 +02:00
this.setState({
2018-08-13 18:23:01 +02:00
message: 'Network Loading',
details: 'Initializing LBRY service...',
2017-07-29 23:52:32 +02:00
});
}
2018-11-08 20:48:38 +01:00
setTimeout(() => {
2017-04-09 17:06:23 +02:00
this.updateStatus();
}, 500);
2017-05-17 10:10:25 +02:00
}
runWithIncompatibleDaemon() {
const { hideModal } = this.props;
hideModal();
this.setState({ launchWithIncompatibleDaemon: true }, () => this.continueAppLaunch());
}
continueAppLaunch() {
const { daemonVersionMatched, onReadyToLaunch } = this.props;
const { isRunning, launchWithIncompatibleDaemon } = this.state;
if (daemonVersionMatched) {
onReadyToLaunch();
} else if (launchWithIncompatibleDaemon && isRunning) {
// The user may have decided to run the app with mismatched daemons
// They could make this decision before the daemon is finished starting up
// If it isn't running, this function will be called after the daemon is started
onReadyToLaunch();
}
}
2018-08-20 18:33:36 +02:00
hasRecordedUser: boolean;
2018-11-08 20:48:38 +01:00
timeout: ?TimeoutID;
2018-08-20 18:33:36 +02:00
2018-11-12 19:22:51 +01:00
renderModals() {
const { modal } = this.props;
const modalId = modal && modal.id;
2018-04-23 20:02:06 +02:00
2018-11-12 19:22:51 +01:00
if (!modalId) {
return null;
}
switch (modalId) {
case MODALS.INCOMPATIBLE_DAEMON:
return <ModalIncompatibleDaemon onContinueAnyway={this.runWithIncompatibleDaemon} />;
2018-11-12 19:22:51 +01:00
case MODALS.WALLET_UNLOCK:
return <ModalWalletUnlock />;
case MODALS.UPGRADE:
return <ModalUpgrade />;
case MODALS.DOWNLOADING:
return <ModalDownloading />;
default:
return null;
}
}
render() {
const { message, details, error } = this.state;
2018-11-12 19:22:51 +01:00
2017-06-06 23:19:12 +02:00
return (
2018-03-26 23:32:43 +02:00
<React.Fragment>
<LoadScreen message={message} details={details} error={error} />;
{/* Temp hack: don't show any modals on splash screen daemon is running;
daemon doesn't let you quit during startup, so the "Quit" buttons
in the modals won't work. */}
{this.renderModals()}
2018-03-26 23:32:43 +02:00
</React.Fragment>
2017-06-06 23:19:12 +02:00
);
2016-04-10 02:00:56 +02:00
}
2017-05-17 10:10:25 +02:00
}