// @flow /* On submit, this component calls publish, which dispatches doPublishDesktop. doPublishDesktop calls lbry-redux Lbry publish method using lbry-redux publish state as params. Publish simply instructs the SDK to find the file path on disk and publish it with the provided metadata. On web, the Lbry publish method call is overridden in platform/web/api-setup, using a function in platform/web/publish. File upload is carried out in the background by that function. */ import { SITE_NAME, SIMPLE_SITE } from 'config'; import React, { useEffect } from 'react'; import { buildURI, isURIValid, isNameValid } from 'util/lbryURI'; import * as THUMBNAIL_STATUSES from 'constants/thumbnail_upload_statuses'; import Button from 'component/button'; import ChannelSelect from 'component/channelSelector'; import classnames from 'classnames'; import TagsSelect from 'component/tagsSelect'; // import PublishPrice from 'component/publish/shared/publishPrice'; import PublishAdditionalOptions from 'component/publish/shared/publishAdditionalOptions'; import PublishFormErrors from 'component/publish/shared/publishFormErrors'; import SelectThumbnail from 'component/selectThumbnail'; import PublishPost from 'component/publish/post/publishPost'; import Card from 'component/common/card'; import I18nMessage from 'component/i18nMessage'; import * as PUBLISH_MODES from 'constants/publish_types'; import { useHistory } from 'react-router'; import Spinner from 'component/spinner'; import * as ICONS from 'constants/icons'; import Icon from 'component/common/icon'; type Props = { disabled: boolean, tags: Array, publish: (source?: string | File, ?boolean) => void, filePath: string | File, fileText: string, bid: ?number, bidError: ?string, editingURI: ?string, title: ?string, thumbnail: ?string, thumbnailError: ?boolean, uploadThumbnailStatus: ?string, thumbnailPath: ?string, description: ?string, language: string, nsfw: boolean, contentIsFree: boolean, fee: { amount: string, currency: string, }, name: ?string, nameError: ?string, winningBidForClaimUri: number, myClaimForUri: ?StreamClaim, licenseType: string, otherLicenseDescription: ?string, licenseUrl: ?string, useLBRYUploader: ?boolean, publishing: boolean, publishSuccess: boolean, publishError: boolean, balance: number, releaseTimeError: ?string, isStillEditing: boolean, clearPublish: () => void, resolveUri: (string) => void, resetThumbnailStatus: () => void, // Add back type updatePublishForm: (any) => void, checkAvailability: (string) => void, ytSignupPending: boolean, modal: { id: string, modalProps: {} }, enablePublishPreview: boolean, activeChannelClaim: ?ChannelClaim, incognito: boolean, user: ?User, permanentUrl: ?string, remoteUrl: ?string, isClaimingInitialRewards: boolean, claimInitialRewards: () => void, hasClaimedInitialRewards: boolean, }; function PostForm(props: Props) { // Detect upload type from query in URL const { thumbnail, thumbnailError, name, editingURI, myClaimForUri, resolveUri, title, bid, bidError, releaseTimeError, uploadThumbnailStatus, resetThumbnailStatus, updatePublishForm, filePath, fileText, publishing, publishSuccess, publishError, clearPublish, isStillEditing, tags, publish, disabled = false, checkAvailability, ytSignupPending, modal, enablePublishPreview, activeChannelClaim, incognito, // user, permanentUrl, // remoteUrl, isClaimingInitialRewards, claimInitialRewards, hasClaimedInitialRewards, } = props; const inEditMode = Boolean(editingURI); const { replace, location } = useHistory(); const urlParams = new URLSearchParams(location.search); const TYPE_PARAM = 'type'; const uploadType = urlParams.get(TYPE_PARAM); const _uploadType = uploadType && uploadType.toLowerCase(); const mode = PUBLISH_MODES.POST; const [autoSwitchMode, setAutoSwitchMode] = React.useState(true); // Used to check if the url name has changed: // A new file needs to be provided const [prevName, setPrevName] = React.useState(false); // Used to check if the file has been modified by user const [fileEdited, setFileEdited] = React.useState(false); const [prevFileText, setPrevFileText] = React.useState(''); const TAGS_LIMIT = 5; const emptyPostError = mode === PUBLISH_MODES.POST && (!fileText || fileText.trim() === ''); const formDisabled = emptyPostError || publishing; const isInProgress = filePath || editingURI || name || title; const activeChannelName = activeChannelClaim && activeChannelClaim.name; // Editing content info const fileMimeType = myClaimForUri && myClaimForUri.value && myClaimForUri.value.source ? myClaimForUri.value.source.media_type : undefined; const claimChannelId = (myClaimForUri && myClaimForUri.signing_channel && myClaimForUri.signing_channel.claim_id) || (activeChannelClaim && activeChannelClaim.claim_id); const nameEdited = isStillEditing && name !== prevName; const thumbnailUploaded = uploadThumbnailStatus === THUMBNAIL_STATUSES.COMPLETE && thumbnail; const formValidLessFile = name && isNameValid(name) && title && bid && thumbnail && !bidError && !releaseTimeError && !emptyPostError && !(thumbnailError && !thumbnailUploaded) && !(uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS); const isOverwritingExistingClaim = !editingURI && myClaimForUri; const formValid = isOverwritingExistingClaim ? false : editingURI && !filePath ? isStillEditing && formValidLessFile : formValidLessFile; const [previewing, setPreviewing] = React.useState(false); const formTitle = !editingURI ? __('Post an Article') : __('Edit Post'); const isClear = !title && !name && !thumbnail; useEffect(() => { if (!hasClaimedInitialRewards) { claimInitialRewards(); } }, [hasClaimedInitialRewards, claimInitialRewards]); useEffect(() => { if (!modal) { const timer = setTimeout(() => { setPreviewing(false); }, 250); return () => clearTimeout(timer); } }, [modal]); useEffect(() => { if (publishError) { setPreviewing(false); updatePublishForm({ publishError: undefined }); } }, [publishError]); let submitLabel; if (isClaimingInitialRewards) { submitLabel = __('Claiming credits...'); } else if (publishing) { if (isStillEditing || inEditMode) { submitLabel = __('Saving...'); } else { submitLabel = __('Posting...'); } } else if (previewing && !publishError) { submitLabel = ; } else { if (isStillEditing || inEditMode) { submitLabel = __('Save'); } else { submitLabel = __('Post'); } } // if you enter the page and it is stuck in publishing, "stop it." useEffect(() => { if (publishing || publishSuccess) { clearPublish(); } // eslint-disable-next-line react-hooks/exhaustive-deps }, [clearPublish]); useEffect(() => { if (!thumbnail) { resetThumbnailStatus(); } }, [thumbnail, resetThumbnailStatus]); // Save previous name of the editing claim useEffect(() => { if (isStillEditing && (!prevName || !prevName.trim() === '')) { if (name !== prevName) { setPrevName(name); } } }, [name, prevName, setPrevName, isStillEditing]); // Check for content changes on the text editor useEffect(() => { if (!fileEdited && fileText !== prevFileText && fileText !== '') { setFileEdited(true); } else if (fileEdited && fileText === prevFileText) { setFileEdited(false); } }, [fileText, prevFileText, fileEdited]); // Every time the channel or name changes, resolve the uris to find winning bid amounts useEffect(() => { // We are only going to store the full uri, but we need to resolve the uri with and without the channel name let uri; try { uri = name && buildURI({ streamName: name, activeChannelName }); } catch (e) {} if (activeChannelName && name) { // resolve without the channel name so we know the winning bid for it try { const uriLessChannel = buildURI({ streamName: name }); resolveUri(uriLessChannel); } catch (e) {} } const isValid = uri && isURIValid(uri); if (uri && isValid && checkAvailability && name) { resolveUri(uri); checkAvailability(name); updatePublishForm({ uri }); } }, [name, activeChannelName, resolveUri, updatePublishForm, checkAvailability]); // because publish editingUri is channel_short/claim_long and we don't have that, resolve it. useEffect(() => { if (editingURI) { resolveUri(editingURI); } }, [editingURI, resolveUri]); // set isMarkdownPost in publish form if so, also update isLivestreamPublish useEffect(() => { updatePublishForm({ isMarkdownPost: true, isLivestreamPublish: false, }); }, [mode, updatePublishForm]); useEffect(() => { if (incognito) { updatePublishForm({ channel: undefined }); } else if (activeChannelName) { updatePublishForm({ channel: activeChannelName }); } }, [activeChannelName, incognito, updatePublishForm]); // if we have a type urlparam, update it? necessary? useEffect(() => { if (!_uploadType) return; const newParams = new URLSearchParams(); newParams.set(TYPE_PARAM, mode.toLowerCase()); replace({ search: newParams.toString() }); // eslint-disable-next-line react-hooks/exhaustive-deps }, [mode, _uploadType]); // @if TARGET='web' function createWebFile() { if (fileText) { const fileName = name || title; if (fileName) { return new File([fileText], `${fileName}.md`, { type: 'text/markdown' }); } } } // @endif async function handlePublish() { let outputFile = filePath; let runPublish = false; // Publish post: // If here is no file selected yet on desktop, show file dialog and let the // user choose a file path. On web a new File is created if (mode === PUBLISH_MODES.POST && !emptyPostError) { // If user modified content on the text editor or editing name has changed: // Save changes and update file path if (fileEdited || nameEdited) { outputFile = createWebFile(); // New content stored locally and is not empty if (outputFile) { updatePublishForm({ filePath: outputFile }); runPublish = true; } } else { // Only metadata has changed. runPublish = true; } } if (runPublish) { if (enablePublishPreview) { setPreviewing(true); publish(outputFile, true); } else { publish(outputFile, false); } } } // Update mode on editing useEffect(() => { if (autoSwitchMode && editingURI && myClaimForUri) { // Change publish mode to "post" if editing content type is markdown if (fileMimeType === 'text/markdown' && mode !== PUBLISH_MODES.POST) { // Prevent forced mode setAutoSwitchMode(false); } } }, [autoSwitchMode, editingURI, fileMimeType, myClaimForUri, mode, setAutoSwitchMode]); if (publishing) { return (

{__('Publishing...')}

); } const isFormIncomplete = isClaimingInitialRewards || formDisabled || uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS || !(uploadThumbnailStatus === THUMBNAIL_STATUSES.MANUAL || uploadThumbnailStatus === THUMBNAIL_STATUSES.COMPLETE) || thumbnailError || ytSignupPending || previewing; // Editing claim uri return (

{!publishing && (
} />

{__('Tags')}

{ const validatedTags = []; newTags.forEach((newTag) => { if (!tags.some((tag) => tag.name === newTag.name)) { validatedTags.push(newTag); } }); updatePublishForm({ tags: [...tags, ...validatedTags] }); }} onRemove={(clickedTag) => { const newTags = tags.slice().filter((tag) => tag.name !== clickedTag.name); updatePublishForm({ tags: newTags }); }} tagsChosen={tags} />
)}

{!formDisabled && !formValid ? ( ) : ( ), odysee_community_guidelines: (

); } export default PostForm;