lbry-desktop/ui/js/component/upgradeModal/view.jsx

28 lines
690 B
React
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { Modal } from "component/modal";
import { downloadUpgrade, skipUpgrade } from "actions/app";
2017-04-07 07:15:22 +02:00
2017-06-08 06:42:19 +02:00
class UpgradeModal extends React.PureComponent {
2017-04-07 07:15:22 +02:00
render() {
2017-06-06 23:19:12 +02:00
const { downloadUpgrade, skipUpgrade } = this.props;
2017-04-07 07:15:22 +02:00
return (
<Modal
isOpen={true}
2017-05-26 22:26:06 +02:00
contentLabel={__("Update available")}
2017-04-07 07:15:22 +02:00
type="confirm"
2017-05-26 22:26:06 +02:00
confirmButtonLabel={__("Upgrade")}
abortButtonLabel={__("Skip")}
2017-04-07 07:15:22 +02:00
onConfirmed={downloadUpgrade}
2017-06-06 23:19:12 +02:00
onAborted={skipUpgrade}
>
{__(
"Your version of LBRY is out of date and may be unreliable or insecure."
)}
2017-04-07 07:15:22 +02:00
</Modal>
2017-06-06 23:19:12 +02:00
);
2017-04-07 07:15:22 +02:00
}
}
2017-06-06 06:21:55 +02:00
export default UpgradeModal;