2017-06-06 23:19:12 +02:00
|
|
|
import React from "react";
|
2017-08-18 19:09:40 +02:00
|
|
|
import { Modal } from "modal/modal";
|
2017-06-06 23:19:12 +02:00
|
|
|
import { Line } from "rc-progress";
|
2017-08-18 19:09:40 +02:00
|
|
|
import Link from "component/link/index";
|
2017-04-07 07:15:22 +02:00
|
|
|
|
2017-07-02 20:23:38 +02:00
|
|
|
class ModalDownloading extends React.PureComponent {
|
2017-04-07 07:15:22 +02:00
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
downloadProgress,
|
|
|
|
downloadComplete,
|
|
|
|
startUpgrade,
|
|
|
|
cancelUpgrade,
|
2017-06-06 23:19:12 +02:00
|
|
|
} = this.props;
|
2017-04-07 07:15:22 +02:00
|
|
|
|
|
|
|
return (
|
2017-06-06 23:19:12 +02:00
|
|
|
<Modal
|
|
|
|
isOpen={true}
|
|
|
|
contentLabel={__("Downloading Update")}
|
|
|
|
type="custom"
|
|
|
|
>
|
|
|
|
{__("Downloading Update")}
|
|
|
|
{downloadProgress ? `: ${downloadProgress}%` : null}
|
|
|
|
<Line
|
|
|
|
percent={downloadProgress ? downloadProgress : 0}
|
|
|
|
strokeWidth="4"
|
|
|
|
/>
|
2017-11-24 22:36:10 +01:00
|
|
|
{downloadComplete
|
|
|
|
? <div>
|
|
|
|
<br />
|
|
|
|
<p>{__('Click "Begin Upgrade" to start the upgrade process.')}</p>
|
|
|
|
<p>
|
|
|
|
{__(
|
|
|
|
"The app will close, and you will be prompted to install the latest version of LBRY."
|
|
|
|
)}
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
{__("After the install is complete, please reopen the app.")}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
: null}
|
2017-04-07 07:15:22 +02:00
|
|
|
<div className="modal__buttons">
|
2017-11-24 22:36:10 +01:00
|
|
|
{downloadComplete
|
|
|
|
? <Link
|
|
|
|
button="primary"
|
|
|
|
label={__("Begin Upgrade")}
|
|
|
|
className="modal__button"
|
|
|
|
onClick={startUpgrade}
|
|
|
|
/>
|
|
|
|
: null}
|
2017-06-06 23:19:12 +02:00
|
|
|
<Link
|
|
|
|
button="alt"
|
|
|
|
label={__("Cancel")}
|
|
|
|
className="modal__button"
|
|
|
|
onClick={cancelUpgrade}
|
|
|
|
/>
|
2017-04-07 07:15:22 +02:00
|
|
|
</div>
|
|
|
|
</Modal>
|
2017-06-06 23:19:12 +02:00
|
|
|
);
|
2017-04-07 07:15:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-02 20:23:38 +02:00
|
|
|
export default ModalDownloading;
|