var splashStyle = { color: 'white', backgroundImage: 'url(' + lbry.imagePath('lbry-bg.png') + ')', backgroundSize: 'cover', minHeight: '100vh', minWidth: '100vw', display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center' }, splashMessageStyle = { marginTop: '24px' }; var SplashScreen = React.createClass({ propTypes: { message: React.PropTypes.string, onLoadDone: React.PropTypes.func, }, updateStatus: function(checkNum=0, was_lagging=false) { lbry.getDaemonStatus((status) => { if (status.code == 'started') { this.props.onLoadDone(); return; } if (!was_lagging && status.is_lagging) { // We just started lagging alert(status.message); } if (checkNum < 600) { setTimeout(() => { this.updateStatus(checkNum + 1, status.is_lagging); }, 500); } }); }, componentDidMount: function() { this.updateStatus(); }, render: function() { var imgSrc = lbry.imagePath('lbry-white-485x160.png'); return (
LBRY

{this.props.message}

); } });