import React from 'react' import { Modal } from 'component/modal' import {Line} from 'rc-progress'; import Link from 'component/link' class DownloadingModal extends React.Component { render() { const { downloadProgress, downloadComplete, startUpgrade, cancelUpgrade, } = this.props return ( {__("Downloading Update")}{downloadProgress ? `: ${downloadProgress}%` : null} {downloadComplete ? (

{__("Click \"Begin Upgrade\" to start the upgrade process.")}

{__("The app will close, and you will be prompted to install the latest version of LBRY.")}

{__("After the install is complete, please reopen the app.")}

) : null }
{downloadComplete ? : null}
) } } export default DownloadingModal