lbry-desktop/src/ui/component/publishFile/view.jsx

74 lines
2.3 KiB
React
Raw Normal View History

// @flow
2019-09-27 20:56:15 +02:00
import * as ICONS from 'constants/icons';
import React from 'react';
import { regexInvalidURI } from 'lbry-redux';
import FileSelector from 'component/common/file-selector';
import Button from 'component/button';
2019-09-27 20:56:15 +02:00
import Card from 'component/common/card';
type Props = {
name: ?string,
filePath: string | WebFile,
isStillEditing: boolean,
balance: number,
updatePublishForm: ({}) => void,
2019-09-27 20:56:15 +02:00
disabled: boolean,
};
function PublishFile(props: Props) {
2019-09-27 20:56:15 +02:00
const { name, balance, filePath, isStillEditing, updatePublishForm, disabled } = props;
let currentFile = '';
if (filePath) {
if (typeof filePath === 'string') {
currentFile = filePath;
} else {
currentFile = filePath.name;
}
}
function handleFileChange(file: WebFile) {
// if electron, we'll set filePath to the path string because SDK is handling publishing.
// if web, we set the filePath (dumb name) to the File() object
// file.path will be undefined from web due to browser security, so it will default to the File Object.
const publishFormParams: { filePath: string | WebFile, name?: string } = {
filePath: file.path || file,
name: file.name,
};
const parsedFileName = file.name.replace(regexInvalidURI, '');
publishFormParams.name = parsedFileName.replace(' ', '-');
updatePublishForm(publishFormParams);
}
return (
2019-09-27 20:56:15 +02:00
<Card
icon={ICONS.PUBLISH}
2019-10-01 06:53:33 +02:00
disabled={disabled || balance === 0}
2019-09-27 20:56:15 +02:00
title={isStillEditing ? __('Edit') : __('Publish')}
2019-10-03 23:40:54 +02:00
subtitle={
isStillEditing ? __('You are currently editing a claim.') : __('Publish something totally wacky and wild.')
}
2019-09-27 20:56:15 +02:00
actions={
<React.Fragment>
<FileSelector currentPath={currentFile} onFileChosen={handleFileChange} />
2019-09-27 20:56:15 +02:00
{!isStillEditing && (
<p className="help">
{__('For video content, use MP4s in H264/AAC format for best compatibility.')}{' '}
<Button button="link" label={__('Learn more')} href="https://lbry.com/faq/how-to-publish" />.
</p>
)}
{!!isStillEditing && name && (
<p className="help">
{__("If you don't choose a file, the file from your existing claim %name% will be used", { name: name })}
</p>
)}
</React.Fragment>
}
/>
);
}
export default PublishFile;