// @flow import * as PAGES from 'constants/pages'; import React from 'react'; import { Modal } from 'modal/modal'; import ClaimPreview from 'component/claimPreview'; import Button from 'component/button'; import Card from 'component/common/card'; import Nag from 'component/common/nag'; type Props = { closeModal: () => void, clearPublish: () => void, navigate: (string) => void, uri: string, isEdit: boolean, filePath: ?string, lbryFirstError: ?string, claim: Claim, }; class ModalPublishSuccess extends React.PureComponent { componentDidMount() { const { clearPublish } = this.props; clearPublish(); } render() { const { closeModal, clearPublish, navigate, uri, isEdit, filePath, lbryFirstError, claim } = this.props; // $FlowFixMe const livestream = claim && claim.value && claim.value_type === 'stream' && !claim.value.source; let contentLabel; if (livestream) { contentLabel = __('Livestream Created'); } else if (isEdit) { contentLabel = __('Update published'); } else { contentLabel = __('File published'); } let publishMessage; if (isEdit) { publishMessage = __('Your update is now pending. It will take a few minutes to appear for other users.'); } else if (livestream) { publishMessage = __( 'Your livestream is now pending. You will be able to start shortly at the streaming dashboard.' ); } else { publishMessage = __('Your file is now pending on LBRY. It will take a few minutes to appear for other users.'); } function handleClose() { closeModal(); } return (
{filePath && !IS_WEB && (

{__( `Upload will continue in the background, please do not shut down immediately. Leaving the app running helps the network, thank you!` )}{' '}