spee.ch/react/containers/PublishForm/view.jsx

179 lines
6.7 KiB
React
Raw Normal View History

import React from 'react';
import { withRouter } from 'react-router-dom';
2018-01-18 00:00:03 +01:00
import Dropzone from 'containers/Dropzone';
import PublishTitleInput from 'containers/PublishTitleInput';
import PublishUrlInput from 'containers/PublishUrlInput';
import PublishThumbnailInput from 'containers/PublishThumbnailInput';
import PublishMetadataInputs from 'containers/PublishMetadataInputs';
import ChannelSelect from 'containers/ChannelSelect';
import * as publishStates from 'constants/publish_claim_states';
2018-01-12 00:37:32 +01:00
class PublishForm extends React.Component {
constructor (props) {
super(props);
this.validateChannelSelection = this.validateChannelSelection.bind(this);
this.validatePublishParams = this.validatePublishParams.bind(this);
2018-01-11 21:51:38 +01:00
this.makePublishRequest = this.makePublishRequest.bind(this);
this.publish = this.publish.bind(this);
}
validateChannelSelection () {
console.log('validating channel selection');
// make sure all required data is provided
return new Promise((resolve, reject) => {
// if publishInChannel is true, is a channel selected & logged in?
if (this.props.publishInChannel && (this.props.selectedChannel !== this.props.loggedInChannel.name)) {
// update state with error
this.props.onChannelSelectionError('Log in to a channel or select Anonymous"');
// reject this promise
return reject(new Error('Fix the channel'));
}
resolve();
});
}
validatePublishParams () {
console.log('validating publish params');
2018-01-11 21:51:38 +01:00
// make sure all required data is provided
return new Promise((resolve, reject) => {
// is there a file?
if (!this.props.file) {
return reject(new Error('Please choose a file'));
}
// is there a claim chosen?
if (!this.props.claim) {
return reject(new Error('Please enter a URL'));
2018-01-11 21:51:38 +01:00
}
if (this.props.urlError) {
return reject(new Error('Fix the url'));
}
2018-01-11 21:51:38 +01:00
resolve();
});
}
makePublishRequest (file, metadata) {
console.log('making publish request');
2018-01-11 21:51:38 +01:00
const uri = '/api/claim-publish';
const xhr = new XMLHttpRequest();
const fd = this.appendDataToFormData(file, metadata);
const that = this;
xhr.upload.addEventListener('loadstart', function () {
2018-01-17 00:55:29 +01:00
that.props.onPublishStatusChange(publishStates.LOAD_START, 'upload started');
2018-01-11 21:51:38 +01:00
});
xhr.upload.addEventListener('progress', function (e) {
if (e.lengthComputable) {
const percentage = Math.round((e.loaded * 100) / e.total);
console.log('progress:', percentage);
2018-01-17 00:55:29 +01:00
that.props.onPublishStatusChange(publishStates.LOADING, `${percentage}%`);
2018-01-11 21:51:38 +01:00
}
}, false);
xhr.upload.addEventListener('load', function () {
console.log('loaded 100%');
2018-01-17 00:55:29 +01:00
that.props.onPublishStatusChange(publishStates.PUBLISHING, null);
2018-01-11 21:51:38 +01:00
}, false);
xhr.open('POST', uri, true);
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
const response = JSON.parse(xhr.response);
console.log('publish response:', response);
if ((xhr.status === 200) && response.success) {
that.props.onPublishStatusChange(publishStates.SUCCESS, response.data.url);
// redirect to the published asset's show page
that.props.history.push(`/${response.data.claimId}/${response.data.name}`);
2018-01-11 21:51:38 +01:00
} else {
that.props.onPublishStatusChange(publishStates.FAILED, response.message);
2018-01-11 21:51:38 +01:00
}
}
};
// Initiate a multipart/form-data upload
xhr.send(fd);
}
createMetadata () {
console.log('creating metadata');
2018-01-11 21:51:38 +01:00
let metadata = {
name : this.props.claim,
title : this.props.title,
description: this.props.description,
license : this.props.license,
nsfw : this.props.nsfw,
type : this.props.file.type,
thumbnail : this.props.thumbnail,
};
if (this.props.publishInChannel) {
metadata['channelName'] = this.props.selectedChannel;
2018-01-11 21:51:38 +01:00
}
return metadata;
}
appendDataToFormData (file, metadata) {
var fd = new FormData();
fd.append('file', file);
for (var key in metadata) {
if (metadata.hasOwnProperty(key)) {
console.log('adding form data', key, metadata[key]);
2018-01-11 21:51:38 +01:00
fd.append(key, metadata[key]);
}
}
return fd;
}
publish () {
console.log('publishing file');
// publish the asset
2018-01-11 21:51:38 +01:00
const that = this;
this.validateChannelSelection()
.then(() => {
return that.validatePublishParams();
})
2018-01-11 21:51:38 +01:00
.then(() => {
const metadata = that.createMetadata();
// publish the claim
return that.makePublishRequest(that.props.file, metadata);
2018-01-11 21:51:38 +01:00
})
.then(() => {
that.props.onPublishStatusChange('publish request made');
})
.catch((error) => {
that.props.onPublishSubmitError(error.message);
2018-01-11 21:51:38 +01:00
});
}
render () {
return (
2018-01-04 20:05:16 +01:00
<div className="row row--no-bottom">
<div className="column column--10">
<PublishTitleInput />
</div>
<div className="column column--5 column--sml-10" >
2018-01-11 02:41:17 +01:00
<div className="row row--padded">
2018-01-17 18:24:17 +01:00
<Dropzone />
</div>
</div>
<div className="column column--5 column--sml-10 align-content-top">
<div id="publish-active-area" className="row row--padded">
2018-01-10 20:26:01 +01:00
<div className="row row--padded row--no-top row--wide">
<PublishUrlInput />
</div>
<div className="row row--padded row--no-top row--wide">
2018-01-17 18:46:16 +01:00
<ChannelSelect />
2018-01-10 20:26:01 +01:00
</div>
2018-01-11 21:51:38 +01:00
{ (this.props.file.type === 'video/mp4') && (
2018-01-17 18:46:16 +01:00
<div className="row row--padded row--no-top row--wide ">
2018-01-11 21:51:38 +01:00
<PublishThumbnailInput />
</div>
)}
2018-01-10 22:10:08 +01:00
<div className="row row--padded row--no-top row--no-bottom row--wide">
<PublishMetadataInputs />
</div>
2018-01-17 18:46:16 +01:00
<div className="row row--wide align-content-center">
2018-01-06 01:47:55 +01:00
<button id="publish-submit" className="button--primary button--large" onClick={this.publish}>Publish</button>
</div>
2018-01-17 18:46:16 +01:00
<div className="row row--padded row--no-bottom align-content-center">
2018-01-09 02:06:31 +01:00
<button className="button--cancel" onClick={this.props.onFileClear}>Cancel</button>
</div>
<div className="row row--short align-content-center">
2018-01-19 23:53:31 +01:00
<p className="fine-print">By clicking 'Publish', 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. <a className="link--primary" target="_blank" href="https://lbry.io/learn">Read more.</a></p>
</div>
</div>
</div>
</div>
);
}
};
export default withRouter(PublishForm);