// @flow import React from 'react'; import moment from 'moment'; import Button from 'component/button'; import { Form, FormField } from 'component/common/form'; import { Modal } from 'modal/modal'; import Card from 'component/common/card'; import Tag from 'component/tag'; import MarkdownPreview from 'component/common/markdown-preview'; import { COPYRIGHT, OTHER } from 'constants/licenses'; import LbcSymbol from 'component/common/lbc-symbol'; import ChannelThumbnail from 'component/channelThumbnail'; import * as ICONS from 'constants/icons'; import Icon from 'component/common/icon'; import { NO_FILE } from 'redux/actions/publish'; type Props = { filePath: string | WebFile, isMarkdownPost: boolean, optimize: boolean, title: ?string, description: ?string, channel: ?string, bid: ?number, uri: ?string, contentIsFree: boolean, fee: { amount: string, currency: string, }, language: string, releaseTimeEdited: ?number, licenseType: string, otherLicenseDescription: ?string, licenseUrl: ?string, tags: Array, isVid: boolean, ffmpegStatus: any, previewResponse: PublishResponse, publish: (?string, ?boolean) => void, closeModal: () => void, enablePublishPreview: boolean, setEnablePublishPreview: (boolean) => void, isStillEditing: boolean, myChannels: ?Array, publishSuccess: boolean, publishing: boolean, isLivestreamClaim: boolean, remoteFile: string, }; // class ModalPublishPreview extends React.PureComponent { const ModalPublishPreview = (props: Props) => { const { filePath, isMarkdownPost, optimize, title, description, channel, bid, uri, contentIsFree, fee, language, releaseTimeEdited, licenseType, otherLicenseDescription, licenseUrl, tags, isVid, ffmpegStatus = {}, previewResponse, enablePublishPreview, setEnablePublishPreview, isStillEditing, myChannels, publishSuccess, publishing, publish, closeModal, isLivestreamClaim, remoteFile, } = props; const livestream = (uri && isLivestreamClaim) || // $FlowFixMe (previewResponse.outputs[0] && previewResponse.outputs[0].value && !previewResponse.outputs[0].value.source); // leave the confirm modal up if we're not going straight to upload/reflecting // @if TARGET='web' React.useEffect(() => { if (publishing && !livestream) { closeModal(); } else if (publishSuccess) { closeModal(); } }, [publishSuccess, publishing, livestream]); // @endif function onConfirmed() { // Publish for real: publish(getFilePathName(filePath), false); // @if TARGET='app' closeModal(); // @endif } function getFilePathName(filePath: string | WebFile) { if (!filePath) { return NO_FILE; } if (typeof filePath === 'string') { return filePath; } else { return filePath.name; } } function createRow(label: string, value: any) { return ( {label} {value} ); } const txFee = previewResponse ? previewResponse['total_fee'] : null; // $FlowFixMe add outputs[0] etc to PublishResponse type const isOptimizeAvail = filePath && filePath !== '' && isVid && ffmpegStatus.available; let modalTitle; if (isStillEditing) { if (livestream) { modalTitle = __('Confirm Update'); } else { modalTitle = __('Confirm Edit'); } } else if (livestream) { modalTitle = __('Create Livestream'); } else { modalTitle = __('Confirm Upload'); } let confirmBtnText; if (!publishing) { if (isStillEditing) { confirmBtnText = __('Save'); } else if (livestream) { confirmBtnText = __('Create'); } else { confirmBtnText = __('Upload'); } } else { if (isStillEditing) { confirmBtnText = __('Saving'); } else if (livestream) { confirmBtnText = __('Creating'); } else { confirmBtnText = __('Uploading'); } } const descriptionValue = description ? (
) : null; const licenseValue = licenseType === COPYRIGHT ? (

© {otherLicenseDescription}

) : licenseType === OTHER ? (

{otherLicenseDescription}
{licenseUrl}

) : (

{licenseType}

); const tagsValue = // Do nothing for onClick(). Setting to 'null' results in "View Tag" action -- we don't want to leave the modal. tags.map((tag) => {}} />); const depositValue = bid ? :

---

; let priceValue = __('Free'); if (!contentIsFree) { if (fee.currency === 'LBC') { priceValue = ; } else { priceValue = `${fee.amount} ${fee.currency}`; } } const channelValue = (channel) => { const channelClaim = myChannels && myChannels.find((x) => x.name === channel); return channel ? (
{channelClaim && } {channel}
) : (
{__('Anonymous')}
); }; const releaseTimeStr = (time) => { return time ? moment(new Date(time * 1000)).format('MMMM Do, YYYY - h:mm a') : ''; }; return (
{!livestream && !isMarkdownPost && createRow(__('File'), getFilePathName(filePath))} {livestream && remoteFile && createRow(__('Replay'), __('Remote File Selected'))} {isOptimizeAvail && createRow(__('Transcode'), optimize ? __('Yes') : __('No'))} {createRow(__('Title'), title)} {createRow(__('Description'), descriptionValue)} {createRow(__('Channel'), channelValue(channel))} {createRow(__('URL'), uri)} {createRow(__('Deposit'), depositValue)} {createRow(__('Price'), priceValue)} {createRow(__('Language'), language)} {releaseTimeEdited && createRow(__('Release date'), releaseTimeStr(releaseTimeEdited))} {createRow(__('License'), licenseValue)} {createRow(__('Tags'), tagsValue)}
{txFee && (
{__('Est. transaction fee:')}  
)} } actions={ <>

{__('Once the transaction is sent, it cannot be reversed.')}

setEnablePublishPreview(!enablePublishPreview)} /> } />
); }; export default ModalPublishPreview;