2016-11-22 21:19:08 +01:00
|
|
|
import React from 'react';
|
|
|
|
import lbry from '../lbry.js';
|
|
|
|
import Modal from '../component/modal.js';
|
|
|
|
import {Link} from '../component/link.js';
|
|
|
|
|
2016-08-08 02:20:14 +02:00
|
|
|
var claimCodeContentStyle = {
|
2016-07-04 17:29:58 +02:00
|
|
|
display: 'inline-block',
|
|
|
|
textAlign: 'left',
|
|
|
|
width: '600px',
|
|
|
|
}, claimCodeLabelStyle = {
|
|
|
|
display: 'inline-block',
|
|
|
|
cursor: 'default',
|
|
|
|
width: '130px',
|
2016-07-05 07:39:53 +02:00
|
|
|
textAlign: 'right',
|
|
|
|
marginRight: '6px',
|
2016-07-04 17:29:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
var ClaimCodePage = React.createClass({
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2016-07-04 20:58:31 +02:00
|
|
|
submitting: false,
|
2016-10-21 09:49:04 +02:00
|
|
|
modal: null,
|
|
|
|
referralCredits: null,
|
|
|
|
activationCredits: null,
|
|
|
|
failureReason: null,
|
2016-07-04 17:29:58 +02:00
|
|
|
}
|
|
|
|
},
|
2016-10-19 09:13:39 +02:00
|
|
|
handleSubmit: function(event) {
|
|
|
|
if (typeof event !== 'undefined') {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
2016-07-04 17:29:58 +02:00
|
|
|
if (!this.refs.code.value) {
|
2016-10-21 09:49:04 +02:00
|
|
|
this.setState({
|
|
|
|
modal: 'missingCode',
|
|
|
|
});
|
2016-07-04 20:58:00 +02:00
|
|
|
return;
|
2016-07-04 20:55:18 +02:00
|
|
|
} else if (!this.refs.email.value) {
|
2016-10-21 09:49:04 +02:00
|
|
|
this.setState({
|
|
|
|
modal: 'missingEmail',
|
|
|
|
});
|
2016-07-04 20:58:00 +02:00
|
|
|
return;
|
2016-07-04 17:29:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({
|
2016-10-21 09:49:04 +02:00
|
|
|
submitting: true,
|
2016-07-04 17:29:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
lbry.getNewAddress((address) => {
|
|
|
|
var code = this.refs.code.value;
|
|
|
|
var email = this.refs.email.value;
|
|
|
|
|
|
|
|
var xhr = new XMLHttpRequest;
|
|
|
|
xhr.addEventListener('load', () => {
|
|
|
|
var response = JSON.parse(xhr.responseText);
|
|
|
|
|
|
|
|
if (response.success) {
|
2016-10-21 09:49:04 +02:00
|
|
|
this.setState({
|
|
|
|
modal: 'codeRedeemed',
|
|
|
|
referralCredits: response.referralCredits,
|
|
|
|
activationCredits: response.activationCredits,
|
|
|
|
});
|
2016-07-04 17:29:58 +02:00
|
|
|
} else {
|
|
|
|
this.setState({
|
2016-10-21 09:49:04 +02:00
|
|
|
submitting: false,
|
|
|
|
modal: 'codeRedeemFailed',
|
|
|
|
failureReason: response.reason,
|
2016-07-04 17:29:58 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
xhr.addEventListener('error', () => {
|
|
|
|
this.setState({
|
2016-10-21 09:49:04 +02:00
|
|
|
submitting: false,
|
|
|
|
modal: 'couldNotConnect',
|
2016-07-04 17:29:58 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
xhr.open('POST', 'https://invites.lbry.io', true);
|
|
|
|
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
2016-07-05 04:07:24 +02:00
|
|
|
xhr.send('code=' + encodeURIComponent(code) + '&address=' + encodeURIComponent(address) +
|
|
|
|
'&email=' + encodeURIComponent(email));
|
2016-07-04 17:29:58 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
handleSkip: function() {
|
2016-10-21 09:49:04 +02:00
|
|
|
this.setState({
|
|
|
|
modal: 'skipped',
|
|
|
|
});
|
|
|
|
},
|
|
|
|
handleFinished: function() {
|
2016-09-02 09:08:46 +02:00
|
|
|
localStorage.setItem('claimCodeDone', true);
|
|
|
|
window.location = '?home';
|
2016-07-04 17:29:58 +02:00
|
|
|
},
|
2016-10-21 09:49:04 +02:00
|
|
|
closeModal: function() {
|
|
|
|
this.setState({
|
|
|
|
modal: null,
|
|
|
|
});
|
|
|
|
},
|
2016-07-04 17:29:58 +02:00
|
|
|
render: function() {
|
|
|
|
return (
|
2016-08-08 02:20:14 +02:00
|
|
|
<main>
|
2016-10-19 09:13:39 +02:00
|
|
|
<form onSubmit={this.handleSubmit}>
|
|
|
|
<div className="card">
|
|
|
|
<h2>Claim your beta invitation code</h2>
|
|
|
|
<section style={claimCodeContentStyle}>
|
|
|
|
<p>Thanks for beta testing LBRY! Enter your invitation code and email address below to receive your initial
|
|
|
|
LBRY credits.</p>
|
|
|
|
<p>You will be added to our mailing list (if you're not already on it) and will be eligible for future rewards for beta testers.</p>
|
|
|
|
</section>
|
|
|
|
<section>
|
2016-08-08 02:20:14 +02:00
|
|
|
<section><label style={claimCodeLabelStyle} htmlFor="code">Invitation code</label><input name="code" ref="code" /></section>
|
|
|
|
<section><label style={claimCodeLabelStyle} htmlFor="email">Email</label><input name="email" ref="email" /></section>
|
2016-10-19 09:13:39 +02:00
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<Link button="primary" label={this.state.submitting ? "Submitting..." : "Submit"}
|
|
|
|
disabled={this.state.submitting} onClick={this.handleSubmit} />
|
|
|
|
<Link button="alt" label="Skip" disabled={this.state.submitting} onClick={this.handleSkip} />
|
|
|
|
<input type='submit' className='hidden' />
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</form>
|
2017-01-13 23:05:09 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'missingCode'} contentLabel="Invitation code required"
|
|
|
|
onConfirmed={this.closeModal}>
|
2016-10-21 09:49:04 +02:00
|
|
|
Please enter an invitation code or choose "Skip."
|
|
|
|
</Modal>
|
2017-01-13 23:05:09 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'missingEmail'} contentLabel="Email required"
|
|
|
|
onConfirmed={this.closeModal}>
|
2016-10-21 09:49:04 +02:00
|
|
|
Please enter an email address or choose "Skip."
|
|
|
|
</Modal>
|
2017-01-13 23:05:09 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'codeRedeemFailed'} contentLabel="Failed to redeem code"
|
|
|
|
onConfirmed={this.closeModal}>
|
2016-10-21 09:49:04 +02:00
|
|
|
{this.state.failureReason}
|
|
|
|
</Modal>
|
2017-01-13 23:05:09 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'codeRedeemed'} contentLabel="Code redeemed"
|
|
|
|
onConfirmed={this.handleFinished}>
|
2016-10-21 09:49:04 +02:00
|
|
|
Your invite code has been redeemed.
|
|
|
|
{this.state.referralCredits > 0
|
2016-11-29 00:24:38 +01:00
|
|
|
? `You have also earned ${referralCredits} credits from referrals. A total of ${activationCredits + referralCredits}
|
2016-10-21 09:49:04 +02:00
|
|
|
will be added to your balance shortly.`
|
|
|
|
: (this.state.activationCredits > 0
|
2016-11-29 00:24:38 +01:00
|
|
|
? `${this.state.activationCredits} credits will be added to your balance shortly.`
|
2016-10-21 09:49:04 +02:00
|
|
|
: 'The credits will be added to your balance shortly.')}
|
|
|
|
</Modal>
|
2017-01-13 23:05:09 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'skipped'} contentLabel="Welcome to LBRY"
|
|
|
|
onConfirmed={this.handleFinished}>
|
2016-10-21 09:49:04 +02:00
|
|
|
Welcome to LBRY! You can visit the Wallet page to redeem an invite code at any time.
|
|
|
|
</Modal>
|
2017-01-13 23:05:09 +01:00
|
|
|
<Modal isOpen={this.state.modal == 'couldNotConnect'} contentLabel="Could not connect"
|
|
|
|
onConfirmed={this.closeModal}>
|
2016-10-21 09:49:04 +02:00
|
|
|
<p>LBRY couldn't connect to our servers to confirm your invitation code. Please check your internet connection.</p>
|
|
|
|
If you continue to have problems, you can still browse LBRY and visit the Settings page to redeem your code later.
|
|
|
|
</Modal>
|
2016-07-04 17:29:58 +02:00
|
|
|
</main>
|
|
|
|
);
|
|
|
|
}
|
2016-07-04 20:55:18 +02:00
|
|
|
});
|
2016-11-22 21:19:08 +01:00
|
|
|
|
|
|
|
export default ClaimCodePage;
|