// @flow import React from 'react'; import FileSelector from 'component/common/file-selector'; import { IMG_CDN_PUBLISH_URL } from 'constants/cdn_urls'; import { FormField, Form } from 'component/common/form'; import Button from 'component/button'; import Card from 'component/common/card'; import usePersistedState from 'effects/use-persisted-state'; const accept = '.png, .jpg, .jpeg, .gif'; const STATUS = { READY: 'READY', UPLOADING: 'UPLOADING' }; type Props = { assetName: string, currentValue: ?string, onUpdate: (string, boolean) => void, recommended: string, title: string, onDone?: () => void, inline?: boolean, }; function SelectAsset(props: Props) { const { onUpdate, onDone, assetName, currentValue, recommended, title, inline } = props; const [pathSelected, setPathSelected] = React.useState(''); const [fileSelected, setFileSelected] = React.useState(null); const [uploadStatus, setUploadStatus] = React.useState(STATUS.READY); const [useUrl, setUseUrl] = usePersistedState('thumbnail-upload:mode', false); const [url, setUrl] = React.useState(currentValue); const [error, setError] = React.useState(); function doUploadAsset() { const uploadError = (error = '') => { setError(error); }; const onSuccess = (thumbnailUrl) => { setUploadStatus(STATUS.READY); onUpdate(thumbnailUrl, !useUrl); if (onDone) { onDone(); } }; setUploadStatus(STATUS.UPLOADING); const data = new FormData(); data.append('file-input', fileSelected); data.append('upload', 'Upload'); return fetch(IMG_CDN_PUBLISH_URL, { method: 'POST', body: data, }) .then((response) => response.json()) .then((json) => { return json.type === 'success' ? onSuccess(`${json.message}`) : uploadError( json.message || __('There was an error in the upload. The format or extension might not be supported.') ); }) .catch((err) => { uploadError(err.message); setUploadStatus(STATUS.READY); }); } // Note for translators: e.g. "Thumbnail (1:1)" const label = `${__(assetName)} ${__(recommended)}`; const selectFileLabel = __('Select File'); const selectedLabel = pathSelected ? __('URL Selected') : __('File Selected'); let fileSelectorLabel; if (uploadStatus === STATUS.UPLOADING) { fileSelectorLabel = __('Uploading...'); } else { // Include the same label/recommendation for both 'URL' and 'UPLOAD'. fileSelectorLabel = `${label} ${fileSelected || pathSelected ? __(selectedLabel) : __(selectFileLabel)}`; } const formBody = ( <> {error &&
{error}
} {useUrl ? ( { setUrl(e.target.value); onUpdate(e.target.value, !useUrl); }} /> ) : ( { if (file.name) { setFileSelected(file); // what why? why not target=WEB this? // file.path is undefined in web but available in electron setPathSelected(file.name || file.path); } }} accept={accept} /> )}
{onDone && (
); if (inline) { return {formBody}; } return ( {formBody}} /> ); } export default SelectAsset;