b20b24bdb6
* Move menu entries & add publish buttons * Save * Separate publish forms * Make new header dynamic for all screen sizes * Save some livestream creation changes * Save more livestream changes * Save * Change publish folder structure * Update paths * Change position of form elements. Again. * Move, add & delete form fields * Clean post form * Clean post form even more * Clean publish post component * Save * Add custom post form state * Move price to additional options * Adjust livestream form * Adjust headers & titles * Update key section * Adjust active header icons * Adjust toggle menu * Save * Adjust active button style * Change active button selector in header * Fix header menu links * Move price section in post form * Adjust instruction text color * Adjust replay table * Revert changes & adjust tag section * Make more form elements dynamic * Finalize additional options section * Update post form * Set mode in upload form * Update livestream form * Add clear button * Make clear button dynamic * Set upload mode * Remove new button * Clean upload form * Show disabled key on livestream form * Remove old key section * Update channel selector for publish forms * Add updated channel selector to publish forms * Add mobile links * Update mobile header * Adjust channel selector on mobile * Adjust livestream form on mobile * Adjust edit links for livestreams * Adjust edit links for posts * Adjust more edit links * Adjust channel selector * Update disabled in livestream form * Add missing change * Fix sign out function * Save * Adjust livestream page on mobile * Adjust tags section on upload page on mobile * Adjust publish links in left navigation on mobile * Add images to accepted filetypes on upload page * Add autofocus to input fields * Add autofocus to all publish forms * Save * Ignore thumbnail api status * Put active thumbnail upload label in card * Fix crashes * Fix flow * Fix licence fields * Adjust wallet in header on smaller screens * Fix channel selector line break on small screens * Fix border radius for some buttons * PublishReleaseDate: fix initial value to reflect what's actually in Redux 'undefined' is a valid value that means "use publish time", but the GUI incorrectly starts off by locking to the mounted timestamp. * Add and hide channel selector on livestream publish page * Fix channel selector on livestream setup page * Fix gif aspect ratio in channel selector * Make layout more dynamic * Fix some edit redirects * Save * Clean publishFile * Fix build errors * Fix more build errors in profile menu button * Remove console logs * Remove post form reducer * Limit publish title length to 200 characters * Remove totalRewardValue from livestreamCreate index * Remove console log * Add tooltip to replay refresh button * Remove scrollToTop function from publish forms * Adjust emty wallet value trigger and add error to livestream publish page * Disable some tabs in edit mode in livestream form * Fix maxLength typo * Remove 'as' label * Remove selectPublishFormValues * Reenable setup tab * Remove inactive line * Remove another inactive line * Remove flow fix * Update label switch logic in confirmation modal Adjust gif margin Adjust gif margin Remove navigate from edit link Remove manual updateLabels execution on init Remove editLabel function Fix labels in publish modal Adjust post livestream setup redirect Remove setOverMaxBitrate from livestream form Clean livestream publish More cleanup Update post livestream creation redirect Bring back edit tab for livestreams Update edit tab Reset form on livestream edit => clear Update label switch logic Readjust channel selector position on mobile * Make some space adjustments for mobile Update livestream edit page on mobile Update action label on publish forms in edit mode * Hide replay options in edit mode in livestream form * Update label switch logic in confirmation modal Adjust gif margin Adjust gif margin Remove navigate from edit link Remove manual updateLabels execution on init Remove editLabel function Fix labels in publish modal Adjust post livestream setup redirect Remove setOverMaxBitrate from livestream form Clean livestream publish More cleanup Update post livestream creation redirect Bring back edit tab for livestreams Update edit tab Reset form on livestream edit => clear Update label switch logic Readjust channel selector position on mobile Make some space adjustments for mobile Update livestream edit page on mobile Update action label on publish forms in edit mode Hide replay options in edit mode in livestream form * Make form titles dynamic * Remove spinner on livestream form * Remove console log * Fix double history push * Fix thumbnail status on post form * Update error message style * Handle publish error button behavior * Clean code * Fix scheduling & date picker * Fix calendar overlap * Add replay selector to livestream claim edit form * Clean code * Disable autocomplete * Show replays in edit & replay tab * Redesign replay picker * Fix design details * Save dynamic replay picker * Fix autoComplete typo * Change label text * Add upload to livestream replay form * Fix scss structure * Add comunity guideline link to publish forms * Fix error * Fix selectThumbnail index * Reset form values on replay source change * Add replay redirect to upload page * Fix publishError state change * Remove label effect from publish confirmation modal * Update labels in publish confirmation modal * Add ? to chaptersButton * Remove doPrepareEdit({ name }) * Bring upload redirect back * Adjust redirects * Save * Update edit redirects * Revert scheduling options * Replace checkboxes for replays with radio * Update form on source change * Rearrange entries in mobile navigation * Change key position on livestream setup page * Change label for livestream update without replay change * Adjust margin below label Co-authored-by: infinite-persistence <inf.persistence@gmail.com>
468 lines
15 KiB
JavaScript
468 lines
15 KiB
JavaScript
// @flow
|
|
import { SITE_NAME, WEB_PUBLISH_SIZE_LIMIT_GB, SIMPLE_SITE } from 'config';
|
|
import React, { useState, useEffect } from 'react';
|
|
import Lbry from 'lbry';
|
|
import { toHex } from 'util/hex';
|
|
import { regexInvalidURI } from 'util/lbryURI';
|
|
import FileSelector from 'component/common/file-selector';
|
|
import Button from 'component/button';
|
|
import Card from 'component/common/card';
|
|
import { FormField } from 'component/common/form';
|
|
import Spinner from 'component/spinner';
|
|
import * as PUBLISH_MODES from 'constants/publish_types';
|
|
import PublishName from 'component/publish/shared/publishName';
|
|
import classnames from 'classnames';
|
|
import { SOURCE_SELECT } from 'constants/publish_sources';
|
|
import { NEW_LIVESTREAM_REPLAY_API } from 'constants/livestream';
|
|
|
|
type Props = {
|
|
uri: ?string,
|
|
mode: ?string,
|
|
name: ?string,
|
|
title: ?string,
|
|
filePath: string | WebFile,
|
|
isStillEditing: boolean,
|
|
balance: number,
|
|
doUpdatePublishForm: ({}) => void,
|
|
disabled: boolean,
|
|
doToast: ({ message: string, isError?: boolean }) => void,
|
|
size: number,
|
|
duration: number,
|
|
isVid: boolean,
|
|
setPublishMode: (string) => void,
|
|
setOverMaxBitrate: (boolean) => void,
|
|
fileSource: string,
|
|
myClaimForUri: ?StreamClaim,
|
|
activeChannelClaim: ?ChannelClaim,
|
|
// inEditMode: boolean,
|
|
};
|
|
|
|
function PublishFile(props: Props) {
|
|
const {
|
|
uri,
|
|
mode,
|
|
name,
|
|
title,
|
|
balance,
|
|
filePath,
|
|
isStillEditing,
|
|
doUpdatePublishForm: updatePublishForm,
|
|
doToast,
|
|
disabled,
|
|
size,
|
|
duration,
|
|
isVid,
|
|
setPublishMode,
|
|
// setPrevFileText,
|
|
// setWaitForFile,
|
|
setOverMaxBitrate,
|
|
fileSource,
|
|
myClaimForUri,
|
|
activeChannelClaim,
|
|
// inEditMode,
|
|
} = props;
|
|
|
|
const RECOMMENDED_BITRATE = 8500000;
|
|
const MAX_BITRATE = 16500000;
|
|
const TV_PUBLISH_SIZE_LIMIT_BYTES = WEB_PUBLISH_SIZE_LIMIT_GB * 1073741824;
|
|
const TV_PUBLISH_SIZE_LIMIT_GB_STR = String(WEB_PUBLISH_SIZE_LIMIT_GB);
|
|
|
|
const MARKDOWN_FILE_EXTENSIONS = ['txt', 'md', 'markdown'];
|
|
const [oversized, setOversized] = useState(false);
|
|
const [currentFile, setCurrentFile] = useState(null);
|
|
const [currentFileType, setCurrentFileType] = useState(null);
|
|
const UPLOAD_SIZE_MESSAGE = __('%SITE_NAME% uploads are limited to %limit% GB.', {
|
|
SITE_NAME,
|
|
limit: TV_PUBLISH_SIZE_LIMIT_GB_STR,
|
|
});
|
|
|
|
const bitRate = getBitrate(size, duration);
|
|
const bitRateIsOverMax = bitRate > MAX_BITRATE;
|
|
|
|
const [livestreamData, setLivestreamData] = React.useState([]);
|
|
const hasLivestreamData = livestreamData && Boolean(livestreamData.length);
|
|
|
|
const claimChannelId =
|
|
(myClaimForUri && myClaimForUri.signing_channel && myClaimForUri.signing_channel.claim_id) ||
|
|
(activeChannelClaim && activeChannelClaim.claim_id);
|
|
const activeChannelName = activeChannelClaim && activeChannelClaim.name;
|
|
// const [isCheckingLivestreams, setCheckingLivestreams] = React.useState(false);
|
|
|
|
// Reset filePath if publish mode changed
|
|
useEffect(() => {
|
|
if (mode === PUBLISH_MODES.POST) {
|
|
if (currentFileType !== 'text/markdown' && !isStillEditing) {
|
|
updatePublishForm({ filePath: '' });
|
|
}
|
|
} else if (mode === PUBLISH_MODES.LIVESTREAM) {
|
|
updatePublishForm({ filePath: '' });
|
|
}
|
|
}, [currentFileType, mode, isStillEditing, updatePublishForm]);
|
|
|
|
useEffect(() => {
|
|
updatePublishForm({ title: title });
|
|
}, [filePath]);
|
|
|
|
/*
|
|
const normalizeUrlForProtocol = (url) => {
|
|
if (url.startsWith('https://')) {
|
|
return url;
|
|
} else {
|
|
if (url.startsWith('http://')) {
|
|
return url;
|
|
} else if (url) {
|
|
return `https://${url}`;
|
|
}
|
|
}
|
|
};
|
|
*/
|
|
|
|
useEffect(() => {
|
|
if (!filePath || filePath === '') {
|
|
setCurrentFile('');
|
|
setOversized(false);
|
|
setOverMaxBitrate(false);
|
|
updateFileInfo(0, 0, false);
|
|
} else if (typeof filePath !== 'string') {
|
|
// Update currentFile file
|
|
if (filePath.name !== currentFile && filePath.path !== currentFile) {
|
|
handleFileChange(filePath);
|
|
}
|
|
}
|
|
}, [filePath, currentFile, doToast, updatePublishForm]);
|
|
|
|
useEffect(() => {
|
|
setOverMaxBitrate(bitRateIsOverMax);
|
|
}, [bitRateIsOverMax]);
|
|
|
|
async function fetchLivestreams(channelId, channelName) {
|
|
// setCheckingLivestreams(true);
|
|
let signedMessage;
|
|
try {
|
|
await Lbry.channel_sign({
|
|
channel_id: channelId,
|
|
hexdata: toHex(channelName || ''),
|
|
}).then((data) => {
|
|
signedMessage = data;
|
|
});
|
|
} catch (e) {
|
|
throw e;
|
|
}
|
|
if (signedMessage) {
|
|
const encodedChannelName = encodeURIComponent(channelName || '');
|
|
const newEndpointUrl =
|
|
`${NEW_LIVESTREAM_REPLAY_API}?channel_claim_id=${String(channelId)}` +
|
|
`&signature=${signedMessage.signature}&signature_ts=${signedMessage.signing_ts}&channel_name=${
|
|
encodedChannelName || ''
|
|
}`;
|
|
|
|
const responseFromNewApi = await fetch(newEndpointUrl);
|
|
|
|
const data = (await responseFromNewApi.json()).data;
|
|
|
|
let newData = [];
|
|
if (data && data.length > 0) {
|
|
for (const dataItem of data) {
|
|
if (dataItem.Status.toLowerCase() === 'inprogress' || dataItem.Status.toLowerCase() === 'ready') {
|
|
const objectToPush = {
|
|
data: {
|
|
fileLocation: dataItem.URL,
|
|
fileDuration:
|
|
dataItem.Status.toLowerCase() === 'inprogress'
|
|
? __('Processing...(') + dataItem.PercentComplete + '%)'
|
|
: (dataItem.Duration / 1000000000).toString(),
|
|
thumbnails: dataItem.ThumbnailURLs !== null ? dataItem.ThumbnailURLs : [],
|
|
uploadedAt: dataItem.Created,
|
|
},
|
|
};
|
|
newData.push(objectToPush);
|
|
}
|
|
}
|
|
}
|
|
|
|
setLivestreamData(newData);
|
|
// setCheckingLivestreams(false);
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (activeChannelClaim && activeChannelClaim.claim_id && activeChannelName) {
|
|
fetchLivestreams(activeChannelClaim.claim_id, activeChannelName);
|
|
}
|
|
}, [claimChannelId, activeChannelName]);
|
|
|
|
useEffect(() => {
|
|
if (activeChannelClaim && activeChannelClaim.claim_id && activeChannelName) {
|
|
fetchLivestreams(activeChannelClaim.claim_id, activeChannelName);
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [claimChannelId, activeChannelName]);
|
|
|
|
function updateFileInfo(duration, size, isvid) {
|
|
updatePublishForm({ fileDur: duration, fileSize: size, fileVid: isvid });
|
|
}
|
|
|
|
function getBitrate(size, duration) {
|
|
const s = Number(size);
|
|
const d = Number(duration);
|
|
if (s && d) {
|
|
return (s * 8) / d;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
function linkReplays() {
|
|
return (
|
|
<p className="help--link">
|
|
{__('Would you like to publish a ')}
|
|
<Button button="link" label={__('Livestream Replay instead')} navigate="/$/livestream?s=Replay" />?
|
|
</p>
|
|
);
|
|
}
|
|
|
|
function getUploadMessage() {
|
|
// @if TARGET='web'
|
|
if (oversized) {
|
|
return (
|
|
<p className="help--error">
|
|
{UPLOAD_SIZE_MESSAGE}{' '}
|
|
<Button button="link" label={__('Upload Guide')} href="https://odysee.com/@OdyseeHelp:b/uploadguide:1" />
|
|
</p>
|
|
);
|
|
}
|
|
// @endif
|
|
|
|
if (isVid && duration && bitRate > RECOMMENDED_BITRATE) {
|
|
return (
|
|
<p className="help--warning">
|
|
{bitRateIsOverMax
|
|
? __(
|
|
'Your video has a bitrate over ~16 Mbps and cannot be processed at this time. We suggest transcoding to provide viewers the best experience.'
|
|
)
|
|
: __(
|
|
'Your video has a bitrate over 8 Mbps. We suggest transcoding to provide viewers the best experience.'
|
|
)}{' '}
|
|
<Button
|
|
button="link"
|
|
label={__('Upload Guide')}
|
|
href="https://odysee.com/@OdyseeHelp:b/uploadguide:1?lc=e280f6e6fdec3f5fd4043954c71add50b3fd2d6a9f3ddba979b459da6ae4a1f4"
|
|
/>
|
|
</p>
|
|
);
|
|
}
|
|
|
|
if (isVid && !duration) {
|
|
return (
|
|
<p className="help--warning">
|
|
{__(
|
|
'Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (under 8 Mbps) for more reliable streaming.'
|
|
)}{' '}
|
|
<Button
|
|
button="link"
|
|
label={__('Upload Guide')}
|
|
href="https://odysee.com/@OdyseeHelp:b/uploadguide:1?lc=e280f6e6fdec3f5fd4043954c71add50b3fd2d6a9f3ddba979b459da6ae4a1f4"
|
|
/>
|
|
</p>
|
|
);
|
|
}
|
|
|
|
if (!!isStillEditing && name) {
|
|
return (
|
|
<p className="help">
|
|
{__("If you don't choose a file, the file from your existing claim %name% will be used", { name: name })}
|
|
</p>
|
|
);
|
|
}
|
|
// @if TARGET='web'
|
|
if (!isStillEditing) {
|
|
return (
|
|
<p className="help">
|
|
{__(
|
|
'For video content, use MP4s in H264/AAC format and a friendly bitrate (under 8 Mbps) for more reliable streaming. %SITE_NAME% uploads are restricted to %limit% GB.',
|
|
{ SITE_NAME, limit: TV_PUBLISH_SIZE_LIMIT_GB_STR }
|
|
)}{' '}
|
|
<Button
|
|
button="link"
|
|
label={__('Upload Guide')}
|
|
href="https://odysee.com/@OdyseeHelp:b/uploadguide:1?lc=e280f6e6fdec3f5fd4043954c71add50b3fd2d6a9f3ddba979b459da6ae4a1f4"
|
|
/>
|
|
</p>
|
|
);
|
|
}
|
|
// @endif
|
|
}
|
|
|
|
function parseName(newName) {
|
|
let INVALID_URI_CHARS = new RegExp(regexInvalidURI, 'gu');
|
|
return newName.replace(INVALID_URI_CHARS, '-');
|
|
}
|
|
|
|
function handleTitleChange(event) {
|
|
updatePublishForm({ title: event.target.value });
|
|
}
|
|
|
|
function handleFileReaderLoaded(event: ProgressEvent) {
|
|
// See: https://github.com/facebook/flow/issues/3470
|
|
if (event.target instanceof FileReader) {
|
|
const text = event.target.result;
|
|
updatePublishForm({ fileText: text });
|
|
setPublishMode(PUBLISH_MODES.POST);
|
|
}
|
|
}
|
|
|
|
function handleFileChange(file: WebFile, clearName = true) {
|
|
window.URL = window.URL || window.webkitURL;
|
|
setOversized(false);
|
|
setOverMaxBitrate(false);
|
|
|
|
// $FlowFixMe
|
|
titleInput.current.input.current.focus();
|
|
|
|
// select file, start to select a new one, then cancel
|
|
if (!file) {
|
|
if (isStillEditing || !clearName) {
|
|
updatePublishForm({ filePath: '' });
|
|
} else {
|
|
updatePublishForm({ filePath: '', name: '' });
|
|
}
|
|
return;
|
|
}
|
|
|
|
// if video, extract duration so we can warn about bitrateif (typeof file !== 'string') {
|
|
const contentType = file.type && file.type.split('/');
|
|
const isVideo = contentType && contentType[0] === 'video';
|
|
const isMp4 = contentType && contentType[1] === 'mp4';
|
|
|
|
let isTextPost = false;
|
|
|
|
if (contentType && contentType[0] === 'text') {
|
|
isTextPost = contentType[1] === 'plain' || contentType[1] === 'markdown';
|
|
setCurrentFileType(contentType);
|
|
} else if (file.name) {
|
|
// If user's machine is missign a valid content type registration
|
|
// for markdown content: text/markdown, file extension will be used instead
|
|
const extension = file.name.split('.').pop();
|
|
isTextPost = MARKDOWN_FILE_EXTENSIONS.includes(extension);
|
|
}
|
|
|
|
if (isVideo) {
|
|
if (isMp4) {
|
|
const video = document.createElement('video');
|
|
video.preload = 'metadata';
|
|
video.onloadedmetadata = () => {
|
|
updateFileInfo(video.duration, file.size, isVideo);
|
|
window.URL.revokeObjectURL(video.src);
|
|
};
|
|
video.onerror = () => {
|
|
updateFileInfo(0, file.size, isVideo);
|
|
};
|
|
video.src = window.URL.createObjectURL(file);
|
|
} else {
|
|
updateFileInfo(0, file.size, isVideo);
|
|
}
|
|
} else {
|
|
updateFileInfo(0, file.size, isVideo);
|
|
}
|
|
|
|
// Strip off extention and replace invalid characters
|
|
let fileName = name || (file.name && file.name.substr(0, file.name.lastIndexOf('.'))) || '';
|
|
autofillTitle(file);
|
|
|
|
if (isTextPost) {
|
|
// Create reader
|
|
const reader = new FileReader();
|
|
// Handler for file reader
|
|
reader.addEventListener('load', handleFileReaderLoaded);
|
|
// Read file contents
|
|
reader.readAsText(file);
|
|
setCurrentFileType('text/markdown');
|
|
} else {
|
|
// setPublishMode(PUBLISH_MODES.FILE);
|
|
}
|
|
|
|
// @if TARGET='web'
|
|
// we only need to enforce file sizes on 'web'
|
|
if (file.size && Number(file.size) > TV_PUBLISH_SIZE_LIMIT_BYTES) {
|
|
setOversized(true);
|
|
doToast({ message: __(UPLOAD_SIZE_MESSAGE), isError: true });
|
|
updatePublishForm({ filePath: '' });
|
|
return;
|
|
}
|
|
// @endif
|
|
|
|
const publishFormParams: { filePath: string | WebFile, name?: string, optimize?: boolean } = {
|
|
// if electron, we'll set filePath to the path string because SDK is handling publishing.
|
|
// File.path will be undefined from web due to browser security, so it will default to the File Object.
|
|
filePath: file.path || file,
|
|
};
|
|
|
|
if (!isStillEditing) {
|
|
publishFormParams.name = parseName(fileName);
|
|
}
|
|
|
|
// File path is not supported on web for security reasons so we use the name instead.
|
|
setCurrentFile(file.path || file.name);
|
|
updatePublishForm(publishFormParams);
|
|
}
|
|
|
|
function autofillTitle(file) {
|
|
const newTitle = (file && file.name && file.name.substr(0, file.name.lastIndexOf('.'))) || name || '';
|
|
if (!title) updatePublishForm({ title: newTitle });
|
|
}
|
|
|
|
const titleInput = React.createRef();
|
|
|
|
return (
|
|
<Card
|
|
className={classnames({
|
|
'card--disabled': disabled || balance === 0,
|
|
})}
|
|
actions={
|
|
<>
|
|
<div className="card--file">
|
|
<React.Fragment>
|
|
<>
|
|
<FileSelector
|
|
disabled={disabled}
|
|
currentPath={currentFile}
|
|
onFileChosen={handleFileChange}
|
|
accept={SIMPLE_SITE ? 'video/mp4,video/x-m4v,video/*,audio/*,image/*' : undefined}
|
|
placeholder={
|
|
SIMPLE_SITE ? __('Select video, audio or image file to upload') : __('Select a file to upload')
|
|
}
|
|
autoFocus
|
|
/>
|
|
{getUploadMessage()}
|
|
{hasLivestreamData && linkReplays()}
|
|
|
|
{fileSource === SOURCE_SELECT && (
|
|
<div className="main--empty empty">
|
|
<Spinner small />
|
|
</div>
|
|
)}
|
|
</>
|
|
<div className="form-spacer">
|
|
<FormField
|
|
type="text"
|
|
name="content_title"
|
|
label={__('Title')}
|
|
placeholder={__('Descriptive titles work best')}
|
|
disabled={disabled}
|
|
value={title}
|
|
onChange={handleTitleChange}
|
|
className="fieldset-group"
|
|
max="200"
|
|
ref={titleInput}
|
|
/>
|
|
</div>
|
|
<PublishName uri={uri} />
|
|
</React.Fragment>
|
|
</div>
|
|
</>
|
|
}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default PublishFile;
|