lbry-desktop/ui/js/page/publish.js

567 lines
21 KiB
JavaScript
Raw Normal View History

2016-11-22 21:19:08 +01:00
import React from 'react';
import lbry from '../lbry.js';
2017-04-11 03:45:41 +02:00
import uri from '../uri.js';
2017-04-10 14:32:40 +02:00
import {FormField, FormRow} from '../component/form.js';
2016-11-22 21:19:08 +01:00
import {Link} from '../component/link.js';
2017-04-12 22:23:20 +02:00
import rewards from '../rewards.js';
2017-04-13 20:52:26 +02:00
import lbryio from '../lbryio.js';
2016-11-22 21:19:08 +01:00
import Modal from '../component/modal.js';
2016-05-23 17:14:21 +02:00
var PublishPage = React.createClass({
2017-04-12 16:55:19 +02:00
_requiredFields: ['meta_title', 'name', 'bid'],
2017-04-12 22:23:20 +02:00
_requestPublishReward: function() {
lbryio.call('reward', 'list', {}).then(function(userRewards) {
//already rewarded
if (userRewards.filter(function (reward) {
return reward.RewardType == rewards.TYPE_FIRST_PUBLISH && reward.TransactionID;
}).length) {
return;
}
else {
rewards.claimReward(rewards.TYPE_FIRST_PUBLISH)
}
});
},
_updateChannelList: function(channel) {
// Calls API to update displayed list of channels. If a channel name is provided, will select
// that channel at the same time (used immediately after creating a channel)
lbry.channel_list_mine().then((channels) => {
2017-04-13 20:52:26 +02:00
rewards.claimReward(rewards.TYPE_FIRST_CHANNEL)
this.setState({
channels: channels,
... channel ? {channel} : {}
});
});
},
2016-10-19 08:36:42 +02:00
handleSubmit: function(event) {
if (typeof event !== 'undefined') {
event.preventDefault();
}
this.setState({
submitting: true,
});
2017-04-12 16:55:19 +02:00
let checkFields = this._requiredFields;
if (!this.state.myClaimExists) {
2017-04-12 16:55:19 +02:00
checkFields.unshift('file');
}
2017-04-12 16:55:19 +02:00
let missingFieldFound = false;
for (let fieldName of checkFields) {
2017-04-12 16:55:19 +02:00
const field = this.refs[fieldName];
if (field) {
if (field.getValue() === '' || field.getValue() === false) {
field.showRequiredError();
if (!missingFieldFound) {
field.focus();
missingFieldFound = true;
}
} else {
field.clearError();
}
}
}
if (missingFieldFound) {
this.setState({
submitting: false,
});
return;
}
if (this.state.nameIsMine) {
// Pre-populate with existing metadata
var metadata = Object.assign({}, this.state.myClaimMetadata);
if (this.refs.file.getValue() !== '') {
delete metadata.sources;
}
} else {
var metadata = {};
}
2017-04-11 18:03:56 +02:00
for (let metaField of ['title', 'description', 'thumbnail', 'license', 'license_url', 'language', 'nsfw']) {
var value = this.refs['meta_' + metaField].getValue();
if (value !== '') {
metadata[metaField] = value;
}
}
var licenseUrl = this.refs.meta_license_url.getValue();
if (licenseUrl) {
metadata.license_url = licenseUrl;
}
var doPublish = () => {
var publishArgs = {
name: this.state.name,
bid: parseFloat(this.state.bid),
metadata: metadata,
... this.state.channel != 'new' && this.state.channel != 'anonymous' ? {channel_name: this.state.channel} : {},
};
if (this.refs.file.getValue() !== '') {
2017-04-12 18:59:43 +02:00
publishArgs.file_path = this.refs.file.getValue();
}
2017-04-10 14:32:40 +02:00
lbry.publish(publishArgs, (message) => {
this.handlePublishStarted();
}, null, (error) => {
this.handlePublishError(error);
});
};
if (this.state.isFee) {
lbry.getUnusedAddress((address) => {
metadata.fee = {};
metadata.fee[this.state.feeCurrency] = {
amount: parseFloat(this.state.feeAmount),
address: address,
};
doPublish();
});
} else {
doPublish();
}
2016-05-23 17:14:21 +02:00
},
2016-07-15 14:04:47 +02:00
getInitialState: function() {
return {
channels: null,
rawName: '',
2016-07-15 14:04:47 +02:00
name: '',
2017-04-12 18:59:43 +02:00
bid: 1,
2017-04-10 20:12:07 +02:00
hasFile: false,
feeAmount: '',
2016-08-08 11:47:20 +02:00
feeCurrency: 'USD',
channel: 'anonymous',
newChannelName: '@',
2017-04-12 18:59:43 +02:00
newChannelBid: 10,
nameResolved: false,
topClaimValue: 0.0,
myClaimValue: 0.0,
myClaimMetadata: null,
myClaimExists: null,
2016-09-20 12:40:24 +02:00
copyrightNotice: '',
otherLicenseDescription: '',
otherLicenseUrl: '',
uploadProgress: 0.0,
uploaded: false,
errorMessage: null,
submitting: false,
creatingChannel: false,
modal: null,
2016-07-15 14:04:47 +02:00
};
},
handlePublishStarted: function() {
this.setState({
modal: 'publishStarted',
});
},
handlePublishStartedConfirmed: function() {
window.location = "?published";
},
handlePublishError: function(error) {
this.setState({
submitting: false,
modal: 'error',
errorMessage: error.message,
});
},
2016-07-15 14:04:47 +02:00
handleNameChange: function(event) {
var rawName = event.target.value;
2016-07-15 14:04:47 +02:00
if (!rawName) {
2016-07-15 14:04:47 +02:00
this.setState({
rawName: '',
2016-07-15 14:04:47 +02:00
name: '',
nameResolved: false,
});
2016-07-15 14:04:47 +02:00
return;
}
if (!lbry.nameIsValid(rawName, false)) {
2017-04-09 17:06:23 +02:00
this.refs.name.showError('LBRY names must contain only letters, numbers and dashes.');
return;
}
this.setState({
rawName: rawName,
});
2017-04-11 03:45:41 +02:00
const name = rawName.toLowerCase();
2017-04-11 06:12:34 +02:00
lbry.getMyClaim(name, (myClaimInfo) => {
if (name != this.refs.name.getValue().toLowerCase()) {
// A new name has been typed already, so bail
return;
}
2017-04-11 06:12:34 +02:00
lbry.resolve({uri: name}).then((claimInfo) => {
if (name != this.refs.name.getValue()) {
return;
}
2017-04-11 03:45:41 +02:00
2017-04-11 06:12:34 +02:00
if (!claimInfo) {
this.setState({
name: name,
nameResolved: false,
myClaimExists: false,
});
} else {
const topClaimIsMine = (myClaimInfo && myClaimInfo.claim.amount >= claimInfo.claim.amount);
2017-04-11 03:45:41 +02:00
const newState = {
name: name,
nameResolved: true,
2017-04-11 06:12:34 +02:00
topClaimValue: parseFloat(claimInfo.claim.amount),
2017-04-11 03:45:41 +02:00
myClaimExists: !!myClaimInfo,
2017-04-11 06:12:34 +02:00
myClaimValue: myClaimInfo ? parseFloat(myClaimInfo.claim.amount) : null,
2017-04-11 03:45:41 +02:00
myClaimMetadata: myClaimInfo ? myClaimInfo.value : null,
topClaimIsMine: topClaimIsMine,
};
if (topClaimIsMine) {
2017-04-11 06:12:34 +02:00
newState.bid = myClaimInfo.claim.amount;
2017-04-11 03:45:41 +02:00
} else if (this.state.myClaimMetadata) {
// Just changed away from a name we have a claim on, so clear pre-fill
newState.bid = '';
}
this.setState(newState);
2017-04-11 06:12:34 +02:00
}
}, () => { // Assume an error means the name is available
this.setState({
name: name,
nameResolved: false,
myClaimExists: false,
2016-07-15 14:04:47 +02:00
});
2017-04-11 03:45:41 +02:00
});
2016-07-15 14:04:47 +02:00
});
},
handleBidChange: function(event) {
2016-07-15 14:04:47 +02:00
this.setState({
bid: event.target.value,
2016-07-15 14:04:47 +02:00
});
},
handleFeeAmountChange: function(event) {
2016-07-15 14:04:47 +02:00
this.setState({
feeAmount: event.target.value,
});
},
handleFeeCurrencyChange: function(event) {
this.setState({
feeCurrency: event.target.value,
});
},
handleFeePrefChange: function(feeEnabled) {
this.setState({
isFee: feeEnabled
2016-07-15 14:04:47 +02:00
});
},
2017-04-10 20:12:07 +02:00
handleLicenseChange: function(event) {
2016-09-20 12:40:24 +02:00
var licenseType = event.target.options[event.target.selectedIndex].getAttribute('data-license-type');
var newState = {
copyrightChosen: licenseType == 'copyright',
otherLicenseChosen: licenseType == 'other',
};
if (licenseType == 'copyright') {
2017-04-10 20:12:07 +02:00
newState.copyrightNotice = 'All rights reserved.'
2016-09-20 12:40:24 +02:00
}
this.setState(newState);
},
handleCopyrightNoticeChange: function(event) {
this.setState({
copyrightNotice: event.target.value,
});
},
handleOtherLicenseDescriptionChange: function(event) {
this.setState({
otherLicenseDescription: event.target.value,
});
},
handleOtherLicenseUrlChange: function(event) {
this.setState({
otherLicenseUrl: event.target.value,
});
},
handleChannelChange: function (event) {
const channel = event.target.value;
this.setState({
channel: channel,
});
},
handleNewChannelNameChange: function (event) {
const newChannelName = (event.target.value.startsWith('@') ? event.target.value : '@' + event.target.value);
if (newChannelName.length > 1 && !lbry.nameIsValid(newChannelName.substr(1), false)) {
2017-04-10 20:12:07 +02:00
this.refs.newChannelName.showError('LBRY channel names must contain only letters, numbers and dashes.');
return;
2017-04-12 16:55:19 +02:00
} else {
this.refs.newChannelName.clearError()
}
this.setState({
newChannelName: newChannelName,
});
},
handleNewChannelBidChange: function (event) {
this.setState({
newChannelBid: event.target.value,
});
},
handleCreateChannelClick: function (event) {
if (this.state.newChannelName.length < 5) {
2017-04-10 20:12:07 +02:00
this.refs.newChannelName.showError('LBRY channel names must be at least 4 characters in length.');
return;
}
this.setState({
creatingChannel: true,
});
const newChannelName = this.state.newChannelName;
lbry.channel_new({channel_name: newChannelName, amount: parseInt(this.state.newChannelBid)}).then(() => {
setTimeout(() => {
this.setState({
creatingChannel: false,
});
this._updateChannelList(newChannelName);
}, 5000);
}, (error) => {
// TODO: better error handling
2017-04-10 20:12:07 +02:00
this.refs.newChannelName.showError('Unable to create channel due to an internal error.');
this.setState({
creatingChannel: false,
});
});
},
2016-09-20 12:40:24 +02:00
getLicenseUrl: function() {
if (!this.refs.meta_license) {
return '';
} else if (this.state.otherLicenseChosen) {
return this.state.otherLicenseUrl;
} else {
return this.refs.meta_license.getSelectedElement().getAttribute('data-url') || '' ;
2016-09-20 12:40:24 +02:00
}
},
componentWillMount: function() {
this._updateChannelList();
2017-04-13 20:52:26 +02:00
// this._requestPublishReward();
},
componentDidMount: function() {
document.title = "Publish";
},
componentDidUpdate: function() {
},
2017-04-10 20:12:07 +02:00
onFileChange: function() {
if (this.refs.file.getValue()) {
this.setState({ hasFile: true })
} else {
this.setState({ hasFile: false })
}
},
getNameBidHelpText: function() {
if (!this.state.name) {
return "Select a URL for this publish.";
} else if (!this.state.nameResolved) {
return "This URL is unused.";
} else if (this.state.myClaimExists) {
return "You have already used this URL. Publishing to it again will update your previous publish."
} else if (this.state.topClaimValue) {
2017-04-12 16:55:19 +02:00
return <span>A deposit of at least <strong>{this.state.topClaimValue}</strong> {this.state.topClaimValue == 1 ? 'credit ' : 'credits '}
2017-04-10 20:12:07 +02:00
is required to win <strong>{this.state.name}</strong>. However, you can still get a perminent URL for any amount.</span>
} else {
return '';
}
},
2017-04-12 16:55:19 +02:00
closeModal: function() {
this.setState({
modal: null,
});
},
render: function() {
if (this.state.channels === null) {
return null;
}
2017-04-12 16:55:19 +02:00
const lbcInputHelp = "This LBC remains yours and the deposit can be undone at any time."
2016-05-23 17:14:21 +02:00
return (
2016-08-08 05:31:21 +02:00
<main ref="page">
<form onSubmit={this.handleSubmit}>
<section className="card">
2017-04-10 14:32:40 +02:00
<div className="card__title-primary">
2017-04-10 20:12:07 +02:00
<h4>Content</h4>
<div className="card__subtitle">
What are you publishing?
</div>
2017-04-10 14:32:40 +02:00
</div>
<div className="card__content">
2017-04-10 20:12:07 +02:00
<FormRow name="file" label="File" ref="file" type="file" onChange={this.onFileChange}
helper={this.state.myClaimExists ? "If you don't choose a file, the file from your existing claim will be used." : null}/>
</div>
2017-04-10 20:12:07 +02:00
{ !this.state.hasFile ? '' :
2017-04-12 16:55:19 +02:00
<div>
<div className="card__content">
2017-04-12 18:59:43 +02:00
<FormRow label="Title" type="text" ref="meta_title" name="title" placeholder="Titular Title" />
2017-04-12 16:55:19 +02:00
</div>
2017-04-10 20:12:07 +02:00
<div className="card__content">
2017-04-12 18:59:43 +02:00
<FormRow type="text" label="Thumbnail URL" ref="meta_thumbnail" name="thumbnail" placeholder="http://spee.ch/mylogo" />
2017-04-12 16:55:19 +02:00
</div>
<div className="card__content">
2017-04-10 20:12:07 +02:00
<FormRow label="Description" type="textarea" ref="meta_description" name="description" placeholder="Description of your content" />
2017-04-12 16:55:19 +02:00
</div>
<div className="card__content">
2017-04-10 20:12:07 +02:00
<FormRow label="Language" type="select" defaultValue="en" ref="meta_language" name="language">
<option value="en">English</option>
<option value="zh">Chinese</option>
<option value="fr">French</option>
<option value="de">German</option>
<option value="jp">Japanese</option>
<option value="ru">Russian</option>
<option value="es">Spanish</option>
</FormRow>
2017-04-12 16:55:19 +02:00
</div>
<div className="card__content">
2017-04-10 20:12:07 +02:00
<FormRow type="select" label="Maturity" defaultValue="en" ref="meta_nsfw" name="nsfw">
<option value=""></option>
<option value="0">All Ages</option>
<option value="1">Adults Only</option>
</FormRow>
2017-04-12 16:55:19 +02:00
</div>
</div>}
</section>
2016-05-23 17:14:21 +02:00
<section className="card">
2017-04-10 20:12:07 +02:00
<div className="card__title-primary">
<h4>Access</h4>
<div className="card__subtitle">
How much does this content cost ?
</div>
</div>
2017-04-10 14:32:40 +02:00
<div className="card__content">
2017-04-10 20:12:07 +02:00
<div className="form-row__label-row">
<label className="form-row__label">Price</label>
</div>
2017-04-12 16:55:19 +02:00
<FormRow label="Free" type="radio" name="isFree" value="1" onChange={ () => { this.handleFeePrefChange(false) } } defaultChecked={!this.state.isFee} />
2017-04-10 20:12:07 +02:00
<FormField type="radio" name="isFree" label={!this.state.isFee ? 'Choose price...' : 'Price ' }
2017-04-12 16:55:19 +02:00
onChange={ () => { this.handleFeePrefChange(true) } } defaultChecked={this.state.isFee} />
2017-04-10 20:12:07 +02:00
<span className={!this.state.isFee ? 'hidden' : ''}>
2017-04-12 16:55:19 +02:00
<FormField type="number" className="form-field__input--inline" step="0.01" placeholder="1.00" onChange={this.handleFeeAmountChange} /> <FormField type="select" onChange={this.handleFeeCurrencyChange}>
2017-04-10 20:12:07 +02:00
<option value="USD">US Dollars</option>
<option value="LBC">LBRY credits</option>
</FormField>
</span>
{ this.state.isFee ?
2017-04-12 16:55:19 +02:00
<div className="form-field__helper">
2017-04-10 20:12:07 +02:00
If you choose to price this content in dollars, the number of credits charged will be adjusted based on the value of LBRY credits at the time of purchase.
</div> : '' }
<FormRow label="License" type="select" ref="meta_license" name="license" onChange={this.handleLicenseChange}>
2017-04-12 16:55:19 +02:00
<option></option>
<option>Public Domain</option>
2017-04-10 20:12:07 +02:00
<option data-url="https://creativecommons.org/licenses/by/4.0/legalcode">Creative Commons Attribution 4.0 International</option>
<option data-url="https://creativecommons.org/licenses/by-sa/4.0/legalcode">Creative Commons Attribution-ShareAlike 4.0 International</option>
<option data-url="https://creativecommons.org/licenses/by-nd/4.0/legalcode">Creative Commons Attribution-NoDerivatives 4.0 International</option>
<option data-url="https://creativecommons.org/licenses/by-nc/4.0/legalcode">Creative Commons Attribution-NonCommercial 4.0 International</option>
<option data-url="https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International</option>
<option data-url="https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International</option>
<option data-license-type="copyright" {... this.state.copyrightChosen ? {value: this.state.copyrightNotice} : {}}>Copyrighted...</option>
<option data-license-type="other" {... this.state.otherLicenseChosen ? {value: this.state.otherLicenseDescription} : {}}>Other...</option>
</FormRow>
<FormField type="hidden" ref="meta_license_url" name="license_url" value={this.getLicenseUrl()} />
{this.state.copyrightChosen
? <FormRow label="Copyright notice" type="text" name="copyright-notice"
value={this.state.copyrightNotice} onChange={this.handleCopyrightNoticeChange} />
: null}
{this.state.otherLicenseChosen ?
<FormRow label="License description" type="text" name="other-license-description" onChange={this.handleOtherLicenseDescriptionChange} />
: null}
{this.state.otherLicenseChosen ?
<FormRow label="License URL" type="text" name="other-license-url" onChange={this.handleOtherLicenseUrlChange} />
: null}
2016-08-08 05:31:21 +02:00
</div>
</section>
<section className="card">
2017-04-10 20:12:07 +02:00
<div className="card__title-primary">
<h4>Identity</h4>
<div className="card__subtitle">
Who created this content?
</div>
2016-08-08 05:31:21 +02:00
</div>
2017-04-10 20:12:07 +02:00
<div className="card__content">
<FormRow type="select" tabIndex="1" onChange={this.handleChannelChange} value={this.state.channel}>
<option key="anonymous" value="anonymous">Anonymous</option>
{this.state.channels.map(({name}) => <option key={name} value={name}>{name}</option>)}
<option key="new" value="new">New identity...</option>
</FormRow>
</div>
2017-04-10 20:12:07 +02:00
{this.state.channel == 'new' ?
<div className="card__content">
<FormRow label="Name" type="text" onChange={this.handleNewChannelNameChange} ref={newChannelName => { this.refs.newChannelName = newChannelName }}
value={this.state.newChannelName} />
2017-04-12 16:55:19 +02:00
<FormRow label="Deposit"
postfix="LBC"
step="0.01"
type="number"
helper={lbcInputHelp}
onChange={this.handleNewChannelBidChange}
2017-04-12 18:59:43 +02:00
value={this.state.newChannelBid} />
2017-04-10 20:12:07 +02:00
<div className="form-row-submit">
2017-04-13 20:52:26 +02:00
<Link button="primary" label={!this.state.creatingChannel ? 'Create identity' : 'Creating identity...'} onClick={this.handleCreateChannelClick} disabled={this.state.creatingChannel} />
2017-04-10 20:12:07 +02:00
</div>
</div>
: null}
</section>
2016-08-07 17:27:00 +02:00
<section className="card">
2017-04-10 20:12:07 +02:00
<div className="card__title-primary">
<h4>Address</h4>
2017-04-12 16:55:19 +02:00
<div className="card__subtitle">Where should this content permanently reside? <Link label="Read more" href="https://lbry.io/faq/naming" />.</div>
2017-04-10 20:12:07 +02:00
</div>
<div className="card__content">
2017-04-12 16:55:19 +02:00
<FormRow prefix="lbry://" type="text" ref="name" placeholder="myname" value={this.state.rawName} onChange={this.handleNameChange}
helper={this.getNameBidHelpText()} />
</div>
2017-04-10 20:12:07 +02:00
{ this.state.rawName ?
<div className="card__content">
<FormRow ref="bid"
type="number"
step="0.01"
label="Deposit"
2017-04-12 16:55:19 +02:00
postfix="LBC"
2017-04-10 20:12:07 +02:00
onChange={this.handleBidChange}
2017-04-12 18:59:43 +02:00
value={this.state.bid}
2017-04-10 20:12:07 +02:00
placeholder={this.state.nameResolved ? this.state.topClaimValue + 10 : 100}
2017-04-12 16:55:19 +02:00
helper={lbcInputHelp} />
2017-04-10 20:12:07 +02:00
</div> : '' }
</section>
2016-05-23 17:14:21 +02:00
<div className="card-series-submit">
<Link button="primary" label={!this.state.submitting ? 'Publish' : 'Publishing...'} onClick={this.handleSubmit} disabled={this.state.submitting} />
<Link button="cancel" onClick={window.history.back} label="Cancel" />
<input type="submit" className="hidden" />
</div>
</form>
2017-01-13 23:05:09 +01:00
<Modal isOpen={this.state.modal == 'publishStarted'} contentLabel="File published"
onConfirmed={this.handlePublishStartedConfirmed}>
<p>Your file has been published to LBRY at the address <code>lbry://{this.state.name}</code>!</p>
You will now be taken to your My Files page, where your newly published file will be listed. The file will take a few minutes to appear for other LBRY users; until then it will be listed as "pending."
</Modal>
2017-01-13 23:05:09 +01:00
<Modal isOpen={this.state.modal == 'error'} contentLabel="Error publishing file"
onConfirmed={this.closeModal}>
The following error occurred when attempting to publish your file: {this.state.errorMessage}
</Modal>
</main>
2016-05-23 17:14:21 +02:00
);
}
});
2016-11-22 21:19:08 +01:00
export default PublishPage;