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

42 lines
1 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import React from 'react';
import { Modal } from 'modal/modal';
type Props = {
closeModal: () => void,
clearPublish: () => void,
navigate: string => void,
uri: string,
};
class ModalSendTip extends React.PureComponent<Props> {
render() {
const { closeModal, clearPublish, navigate, uri } = this.props;
return (
<Modal
isOpen
2018-09-26 19:48:07 +02:00
title={__('Success')}
2018-03-26 23:32:43 +02:00
contentLabel={__('File published')}
onConfirmed={() => {
clearPublish();
navigate('/published');
closeModal();
}}
>
2018-09-26 19:48:07 +02:00
<section className="card__content">
<p>{__('Your file has been published to LBRY at the address')}</p>
<p className="card__success-msg">{uri}</p>
<p>
{__(
'The file will take a few minutes to appear for other LBRY users. Until then it will be listed as "pending" under your published files.'
)}
</p>
</section>
2018-03-26 23:32:43 +02:00
</Modal>
);
}
}
export default ModalSendTip;