364db9dafa
Thumbnail errors were just being used in `selectThumbnail`. The form doesn't know about it and was using allowing invalid thumbnails like 'helloworld' to pass through.
59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
// @flow
|
|
import React from 'react';
|
|
import { THUMBNAIL_STATUSES, isNameValid } from 'lbry-redux';
|
|
import { INVALID_NAME_ERROR } from 'constants/claim';
|
|
|
|
type Props = {
|
|
title: ?string,
|
|
name: ?string,
|
|
bid: ?string,
|
|
bidError: ?string,
|
|
editingURI: ?string,
|
|
filePath: ?string,
|
|
isStillEditing: boolean,
|
|
uploadThumbnailStatus: string,
|
|
thumbnail: string,
|
|
thumbnailError: boolean,
|
|
waitForFile: boolean,
|
|
};
|
|
|
|
function PublishFormErrors(props: Props) {
|
|
const {
|
|
name,
|
|
title,
|
|
bid,
|
|
bidError,
|
|
editingURI,
|
|
filePath,
|
|
isStillEditing,
|
|
uploadThumbnailStatus,
|
|
thumbnail,
|
|
thumbnailError,
|
|
waitForFile,
|
|
} = props;
|
|
// These are extra help
|
|
// If there is an error it will be presented as an inline error as well
|
|
|
|
const isUploadingThumbnail = uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS;
|
|
|
|
return (
|
|
<div className="error__text">
|
|
{waitForFile && <div>{__('Choose a replay file, or select None')}</div>}
|
|
{!title && <div>{__('A title is required')}</div>}
|
|
{!name && <div>{__('A URL is required')}</div>}
|
|
{!isNameValid(name, false) && INVALID_NAME_ERROR}
|
|
{!bid && <div>{__('A deposit amount is required')}</div>}
|
|
{bidError && <div>{__('Please check your deposit amount.')}</div>}
|
|
{isUploadingThumbnail && <div>{__('Please wait for thumbnail to finish uploading')}</div>}
|
|
{!isUploadingThumbnail && !thumbnail && (
|
|
<div>{__('A thumbnail is required. Please upload or provide an image URL above.')}</div>
|
|
)}
|
|
{thumbnailError && <div>{__('Thumbnail is invalid.')}</div>}
|
|
{editingURI && !isStillEditing && !filePath && (
|
|
<div>{__('Please reselect a file after changing the LBRY URL')}</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default PublishFormErrors;
|