lbry-desktop/src/renderer/modal/modalAutoUpdateDownloaded/view.jsx

33 lines
821 B
React
Raw Normal View History

2017-12-08 11:08:50 +01:00
import React from "react";
import { Modal } from "modal/modal";
import { Line } from "rc-progress";
import Link from "component/link/index";
2017-12-10 09:06:30 +01:00
const { ipcRenderer } = require("electron");
2017-12-08 11:08:50 +01:00
class ModalAutoUpdateDownloaded extends React.PureComponent {
render() {
return (
<Modal
isOpen={true}
contentLabel={__("Update downloaded")}
confirmButtonLabel={__("Update and Restart")}
2017-12-10 09:06:30 +01:00
onConfirmed={() => {
ipcRenderer.send("autoUpdate");
}}
2017-12-08 11:08:50 +01:00
>
<section>
<h3 className="text-center">{__("LBRY Leveled Up")}</h3>
<p>
{__(
"A new version of LBRY has been downloaded and is ready to install."
)}
</p>
</section>
</Modal>
);
}
}
export default ModalAutoUpdateDownloaded;