lbry-desktop/ui/js/component/splash.js

70 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-11-22 21:19:08 +01:00
import React from 'react';
import lbry from '../lbry.js';
import LoadScreen from './load_screen.js';
2017-05-17 10:10:25 +02:00
export class SplashScreen extends React.Component {
static propTypes = {
2016-04-10 02:00:56 +02:00
message: React.PropTypes.string,
onLoadDone: React.PropTypes.func,
2017-05-17 10:10:25 +02:00
}
constructor(props) {
super(props);
this.state = {
details: 'Starting daemon',
isLagging: false,
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) {
2017-04-09 17:06:23 +02:00
const startupStatus = status.startup_status
if (startupStatus.code == 'started') {
// Wait until we are able to resolve a name before declaring
// that we are done.
// TODO: This is a hack, and the logic should live in the daemon
// to give us a better sense of when we are actually started
this.setState({
details: 'Waiting for name resolution',
isLagging: false
});
lbry.resolve({uri: 'lbry://one'}).then(() => {
this.props.onLoadDone();
});
return;
}
this.setState({
2017-04-09 17:06:23 +02:00
details: startupStatus.message + (startupStatus.is_lagging ? '' : '...'),
isLagging: startupStatus.is_lagging,
});
setTimeout(() => {
2017-04-09 17:06:23 +02:00
this.updateStatus();
}, 500);
2017-05-17 10:10:25 +02:00
}
componentDidMount() {
2017-04-09 17:06:23 +02:00
lbry.connect().then((isConnected) => {
if (isConnected) {
this.updateStatus();
} else {
this.setState({
isLagging: true,
message: "Failed to connect to LBRY",
details: "LBRY was unable to start and connect properly."
})
}
})
2017-05-17 10:10:25 +02:00
}
render() {
2017-04-09 17:06:23 +02:00
return <LoadScreen message={this.props.message} details={this.state.details} isWarning={this.state.isLagging} />
2016-04-10 02:00:56 +02:00
}
2017-05-17 10:10:25 +02:00
}
2016-11-22 21:19:08 +01:00
export default SplashScreen;