import React from 'react'; import PreviewDropzone from './previewDropzone.jsx'; import TitleInput from './titleInput.jsx'; import ChannelSelector from './channelSelector.jsx'; import UrlChooser from './urlChooser.jsx'; import ThumbnailInput from './thumbnailInput.jsx'; import MetadataInputs from './metadataInputs.jsx'; class AnonymousOrChannelSelect extends React.Component { constructor (props) { super(props); this.toggleAnonymousPublish = this.toggleAnonymousPublish.bind(this); } toggleAnonymousPublish (event) { const value = event.target.value; if (value === 'anonymous') { this.props.updateUploaderState('publishToChannel', false); } else { this.props.updateUploaderState('publishToChannel', true); } } render () { return (
By clicking 'Upload', you affirm that you have the rights to publish this content to the LBRY network, and that you understand the properties of publishing it to a decentralized, user-controlled network. Read more.