2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import { Modal } from 'modal/modal';
|
2019-10-23 21:39:51 +02:00
|
|
|
import ClaimPreview from 'component/claimPreview';
|
2019-11-01 18:27:01 +01:00
|
|
|
import Button from 'component/button';
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
closeModal: () => void,
|
|
|
|
clearPublish: () => void,
|
|
|
|
navigate: string => void,
|
|
|
|
uri: string,
|
2019-06-26 03:18:05 +02:00
|
|
|
isEdit: boolean,
|
2019-11-01 18:27:01 +01:00
|
|
|
filePath: ?string,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
|
|
|
|
2019-04-10 23:27:12 +02:00
|
|
|
class ModalPublishSuccess extends React.PureComponent<Props> {
|
2018-03-26 23:32:43 +02:00
|
|
|
render() {
|
2019-11-01 18:27:01 +01:00
|
|
|
const { closeModal, clearPublish, navigate, uri, isEdit, filePath } = this.props;
|
|
|
|
const contentLabel = isEdit ? 'Update published' : 'File published';
|
|
|
|
const publishMessage = isEdit ? 'update is now' : 'file is now';
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
isOpen
|
2018-09-26 19:48:07 +02:00
|
|
|
title={__('Success')}
|
2019-06-26 03:18:05 +02:00
|
|
|
contentLabel={__(contentLabel)}
|
2018-03-26 23:32:43 +02:00
|
|
|
onConfirmed={() => {
|
|
|
|
clearPublish();
|
2019-04-10 23:27:12 +02:00
|
|
|
navigate('/$/published');
|
2018-03-26 23:32:43 +02:00
|
|
|
closeModal();
|
|
|
|
}}
|
2019-10-24 22:59:05 +02:00
|
|
|
confirmButtonLabel={__('View My Publishes')}
|
|
|
|
abortButtonLabel={__('Close')}
|
2019-10-11 02:37:18 +02:00
|
|
|
onAborted={() => {
|
|
|
|
clearPublish();
|
|
|
|
closeModal();
|
|
|
|
}}
|
2018-03-26 23:32:43 +02:00
|
|
|
>
|
2019-11-25 17:54:28 +01:00
|
|
|
<p className="section__subtitle">
|
2019-11-01 18:27:01 +01:00
|
|
|
{__(`Your %publishMessage% pending on LBRY. It will take a few minutes to appear for other users.`, {
|
|
|
|
publishMessage,
|
|
|
|
})}
|
|
|
|
</p>
|
2019-10-23 21:39:51 +02:00
|
|
|
<div className="card--inline">
|
2019-11-15 16:13:19 +01:00
|
|
|
<ClaimPreview type="small" uri={uri} />
|
2019-10-23 21:39:51 +02:00
|
|
|
</div>
|
|
|
|
<p className="help">
|
2019-11-01 18:27:01 +01:00
|
|
|
{filePath && !IS_WEB && (
|
|
|
|
<React.Fragment>
|
|
|
|
{__(
|
|
|
|
`Upload will continue in the background, please do not shut down immediately. Leaving the app running helps the network, thank you!`
|
|
|
|
)}{' '}
|
|
|
|
<Button button="link" href="https://lbry.com/faq/host-content" label={__('Learn More')} />
|
|
|
|
</React.Fragment>
|
2019-07-21 23:31:22 +02:00
|
|
|
)}
|
|
|
|
</p>
|
2018-03-26 23:32:43 +02:00
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 23:27:12 +02:00
|
|
|
export default ModalPublishSuccess;
|