rewards flow changes
This commit is contained in:
parent
8d67d36ad9
commit
e9c8abd307
12 changed files with 106 additions and 51 deletions
|
@ -186,6 +186,9 @@ export let Thumbnail = React.createClass({
|
|||
this._isMounted = false;
|
||||
},
|
||||
render: function() {
|
||||
return <img ref="img" onError={this.handleError} {... this.props} src={this.state.imageUri} />
|
||||
const className = this.props.className ? this.props.className : '',
|
||||
otherProps = Object.assign({}, this.props)
|
||||
delete otherProps.className;
|
||||
return <img ref="img" onError={this.handleError} {...otherProps} className={className} src={this.state.imageUri} />
|
||||
},
|
||||
});
|
||||
|
|
|
@ -81,14 +81,14 @@ export let FileTileStream = React.createClass({
|
|||
return (
|
||||
<section className={ 'file-tile card ' + (obscureNsfw ? 'card--obscured ' : '') } onMouseEnter={this.handleMouseOver} onMouseLeave={this.handleMouseOut}>
|
||||
<div className={"row-fluid card__inner file-tile__row"}>
|
||||
<div className="span3">
|
||||
<div className="span3 file-tile__thumbnail-container">
|
||||
<a href={'?show=' + lbryUri}><Thumbnail className="file-tile__thumbnail" {... metadata && metadata.thumbnail ? {src: metadata.thumbnail} : {}} alt={'Photo for ' + (title || this.props.uri)} /></a>
|
||||
</div>
|
||||
<div className="span9">
|
||||
{ !this.props.hidePrice
|
||||
? <FilePrice uri={this.props.uri} />
|
||||
: null}
|
||||
<div className="card__title-primary">
|
||||
{ !this.props.hidePrice
|
||||
? <FilePrice uri={this.props.uri} />
|
||||
: null}
|
||||
<div className="meta"><a href={'?show=' + this.props.uri}>{lbryUri}</a></div>
|
||||
<h3>
|
||||
<a href={'?show=' + this.props.uri}>
|
||||
|
@ -103,7 +103,7 @@ export let FileTileStream = React.createClass({
|
|||
</div>
|
||||
<div className="card__content">
|
||||
<p className="file-tile__description">
|
||||
<TruncatedText lines={3}>
|
||||
<TruncatedText lines={2}>
|
||||
{isConfirmed
|
||||
? metadata.description
|
||||
: <span className="empty">This file is pending confirmation.</span>}
|
||||
|
|
|
@ -7,7 +7,7 @@ const lbryio = {
|
|||
_accessToken: getLocal('accessToken'),
|
||||
_authenticationPromise: null,
|
||||
_user : null,
|
||||
enabled: false
|
||||
enabled: true
|
||||
};
|
||||
|
||||
const CONNECTION_STRING = 'http://localhost:8080/';
|
||||
|
|
|
@ -4,6 +4,8 @@ import uri from '../uri.js';
|
|||
import {Link} from '../component/link.js';
|
||||
import {FormField} from '../component/form.js';
|
||||
import {FileTileStream} from '../component/file-tile.js';
|
||||
import rewards from '../rewards.js';
|
||||
import lbryio from '../lbryio.js';
|
||||
import {BusyMessage, Thumbnail} from '../component/common.js';
|
||||
|
||||
|
||||
|
@ -32,6 +34,9 @@ export let FileListDownloaded = React.createClass({
|
|||
});
|
||||
});
|
||||
},
|
||||
componentWillUnmount: function() {
|
||||
this._isMounted = false;
|
||||
},
|
||||
render: function() {
|
||||
if (this.state.fileInfos === null) {
|
||||
return (
|
||||
|
@ -63,8 +68,22 @@ export let FileListPublished = React.createClass({
|
|||
fileInfos: null,
|
||||
};
|
||||
},
|
||||
_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).catch(() => {})
|
||||
}
|
||||
});
|
||||
},
|
||||
componentDidMount: function () {
|
||||
this._isMounted = true;
|
||||
this._requestPublishReward();
|
||||
document.title = "Published Files";
|
||||
|
||||
lbry.claim_list_mine().then((claimInfos) => {
|
||||
|
@ -80,6 +99,9 @@ export let FileListPublished = React.createClass({
|
|||
});
|
||||
});
|
||||
},
|
||||
componentWillUnmount: function() {
|
||||
this._isMounted = false;
|
||||
},
|
||||
render: function () {
|
||||
if (this.state.fileInfos === null) {
|
||||
return (
|
||||
|
|
|
@ -10,19 +10,6 @@ import Modal from '../component/modal.js';
|
|||
var PublishPage = React.createClass({
|
||||
_requiredFields: ['meta_title', 'name', 'bid', 'tos_agree'],
|
||||
|
||||
_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)
|
||||
|
@ -361,7 +348,6 @@ var PublishPage = React.createClass({
|
|||
},
|
||||
componentWillMount: function() {
|
||||
this._updateChannelList();
|
||||
// this._requestPublishReward();
|
||||
},
|
||||
componentDidMount: function() {
|
||||
document.title = "Publish";
|
||||
|
@ -574,7 +560,7 @@ var PublishPage = React.createClass({
|
|||
<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."
|
||||
<p>The file will take a few minutes to appear for other LBRY users. Until then it will be listed as "pending" under your published files.</p>
|
||||
</Modal>
|
||||
<Modal isOpen={this.state.modal == 'error'} contentLabel="Error publishing file"
|
||||
onConfirmed={this.closeModal}>
|
||||
|
|
|
@ -55,6 +55,7 @@ var RewardsPage = React.createClass({
|
|||
});
|
||||
},
|
||||
render: function() {
|
||||
console.log(this.state.userRewards);
|
||||
return (
|
||||
<main>
|
||||
<form onSubmit={this.handleSubmit}>
|
||||
|
|
|
@ -83,7 +83,7 @@ let ShowPage = React.createClass({
|
|||
const
|
||||
metadata = this.state.uriLookupComplete ? this.state.metadata : null,
|
||||
title = this.state.uriLookupComplete ? metadata.title : this._uri;
|
||||
|
||||
|
||||
return (
|
||||
<main className="constrained-page">
|
||||
<section className="show-page-media">
|
||||
|
|
|
@ -4,6 +4,7 @@ import {Link} from '../component/link.js';
|
|||
import lbry from '../lbry.js';
|
||||
import Modal from '../component/modal.js';
|
||||
import lbryio from '../lbryio.js';
|
||||
import rewards from '../rewards.js';
|
||||
import LoadScreen from '../component/load_screen.js'
|
||||
|
||||
const fs = require('fs');
|
||||
|
@ -182,6 +183,9 @@ export let Video = React.createClass({
|
|||
return fs.createReadStream(status.download_path, opts)
|
||||
}
|
||||
};
|
||||
|
||||
rewards.claimNextPurchaseReward()
|
||||
|
||||
var elem = this.refs.video;
|
||||
var videostream = VideoStream(mediaFile, elem);
|
||||
elem.play();
|
||||
|
|
|
@ -3,12 +3,13 @@ import lbryio from './lbryio.js';
|
|||
|
||||
function rewardMessage(type, amount) {
|
||||
return {
|
||||
new_developer: "You received ${amount} for registering as a new developer.",
|
||||
new_user: `You received ${amount} LBC new user reward.`,
|
||||
confirm_email: "You received ${amount} LBC for verifying your email address.",
|
||||
first_channel: "You received ${amount} LBC for creating a publisher identity.",
|
||||
first_purchase: "You received ${amount} LBC for making your first purchase.",
|
||||
first_publish: "You received ${amount} LBC for making your first publication.",
|
||||
new_developer: `You earned ${amount} for registering as a new developer.`,
|
||||
new_user: `You earned ${amount} LBC new user reward.`,
|
||||
confirm_email: `You earned ${amount} LBC for verifying your email address.`,
|
||||
new_channel: `You earned ${amount} LBC for creating a publisher identity.`,
|
||||
first_stream: `You earned ${amount} LBC for streaming your first video.`,
|
||||
many_downloads: `You earned ${amount} LBC for downloading some of the things.`,
|
||||
first_publish: `You earned ${amount} LBC for making your first publication.`,
|
||||
}[type];
|
||||
}
|
||||
|
||||
|
@ -17,8 +18,9 @@ const rewards = {};
|
|||
rewards.TYPE_NEW_DEVELOPER = "new_developer",
|
||||
rewards.TYPE_NEW_USER = "new_user",
|
||||
rewards.TYPE_CONFIRM_EMAIL = "confirm_email",
|
||||
rewards.TYPE_FIRST_CHANNEL = "first_channel",
|
||||
rewards.TYPE_FIRST_PURCHASE = "first_purchase",
|
||||
rewards.TYPE_FIRST_CHANNEL = "new_channel",
|
||||
rewards.TYPE_FIRST_STREAM = "first_stream",
|
||||
rewards.TYPE_MANY_DOWNLOADS = "many_downloads",
|
||||
rewards.TYPE_FIRST_PUBLISH = "first_publish";
|
||||
|
||||
rewards.claimReward = function (type) {
|
||||
|
@ -62,9 +64,13 @@ rewards.claimReward = function (type) {
|
|||
|
||||
switch (type) {
|
||||
case rewards.TYPE_FIRST_CHANNEL:
|
||||
lbry.claim_list_mine().then(function(channels) {
|
||||
if (channels.length) {
|
||||
params.transaction_id = channels[0].txid;
|
||||
lbry.claim_list_mine().then(function(claims) {
|
||||
let claim = claims.find(function(claim) {
|
||||
return claim.name.length && claim.name[0] == '@' && claim.txid.length
|
||||
})
|
||||
console.log(claim);
|
||||
if (claim) {
|
||||
params.transaction_id = claim.txid;
|
||||
requestReward(resolve, reject, params)
|
||||
} else {
|
||||
reject(new Error("Please create a channel identity first."))
|
||||
|
@ -72,18 +78,24 @@ rewards.claimReward = function (type) {
|
|||
}).catch(reject)
|
||||
break;
|
||||
|
||||
case 'first_purchase':
|
||||
// lbry.claim_list_mine().then(function(channels) {
|
||||
// if (channels.length) {
|
||||
// requestReward(resolve, reject, {transaction_id: channels[0].txid})
|
||||
// }
|
||||
// }).catch(reject)
|
||||
break;
|
||||
|
||||
case 'first_channel':
|
||||
//params.transaction_id = RelevantTransactionID;
|
||||
case rewards.TYPE_FIRST_PUBLISH:
|
||||
lbry.claim_list_mine().then((claims) => {
|
||||
let claim = claims.find(function(claim) {
|
||||
return claim.name.length && claim.name[0] != '@' && claim.txid.length
|
||||
})
|
||||
if (claim) {
|
||||
params.transaction_id = claim.txid
|
||||
requestReward(resolve, reject, params)
|
||||
} else {
|
||||
reject(claims.length ?
|
||||
new Error("Please publish something and wait for confirmation by the network to claim this reward.") :
|
||||
new Error("Please publish something to claim this reward."))
|
||||
}
|
||||
}).catch(reject)
|
||||
break;
|
||||
|
||||
case rewards.TYPE_FIRST_STREAM:
|
||||
case rewards.TYPE_NEW_USER:
|
||||
default:
|
||||
requestReward(resolve, reject, params);
|
||||
}
|
||||
|
@ -91,4 +103,23 @@ rewards.claimReward = function (type) {
|
|||
});
|
||||
}
|
||||
|
||||
rewards.claimNextPurchaseReward = function() {
|
||||
let types = {}
|
||||
types[rewards.TYPE_FIRST_STREAM] = false
|
||||
types[rewards.TYPE_MANY_DOWNLOADS] = false
|
||||
lbryio.call('reward', 'list', {}).then((userRewards) => {
|
||||
userRewards.forEach((reward) => {
|
||||
if (types[reward.RewardType] === false && reward.TransactionID) {
|
||||
types[reward.RewardType] = true
|
||||
}
|
||||
})
|
||||
let unclaimedType = Object.keys(types).find((type) => {
|
||||
return types[type] === false;
|
||||
})
|
||||
if (unclaimedType) {
|
||||
rewards.claimReward(unclaimedType);
|
||||
}
|
||||
}, () => { });
|
||||
}
|
||||
|
||||
export default rewards;
|
|
@ -28,10 +28,11 @@ $mobile-width-threshold: 801px;
|
|||
$max-content-width: 1000px;
|
||||
$max-text-width: 660px;
|
||||
|
||||
$width-page-constrained: 800px;
|
||||
|
||||
$height-header: $spacing-vertical * 2.5;
|
||||
$height-button: $spacing-vertical * 1.5;
|
||||
|
||||
$width-page-constrained: 800px;
|
||||
$height-video-embedded: $width-page-constrained * 9 / 16;
|
||||
|
||||
$default-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
|
||||
$focus-box-shadow: 2px 4px 4px 0 rgba(0,0,0,.14),2px 5px 3px -2px rgba(0,0,0,.2),2px 3px 7px 0 rgba(0,0,0,.12);
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
@import "../global";
|
||||
|
||||
$height-file-tile: $spacing-vertical * 8;
|
||||
.file-tile__row {
|
||||
height: $height-file-tile;
|
||||
.credit-amount {
|
||||
float: right;
|
||||
}
|
||||
|
@ -12,12 +14,17 @@
|
|||
|
||||
.file-tile__thumbnail {
|
||||
max-width: 100%;
|
||||
max-height: $spacing-vertical * 7;
|
||||
max-height: $height-file-tile;
|
||||
vertical-align: middle;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.file-tile__thumbnail-container
|
||||
{
|
||||
height: $height-file-tile;
|
||||
@include absolute-center();
|
||||
}
|
||||
|
||||
.file-tile__title {
|
||||
font-weight: bold;
|
||||
|
|
|
@ -12,17 +12,17 @@ video {
|
|||
|
||||
|
||||
.video-embedded {
|
||||
$height-embedded: $width-page-constrained * 9 / 16;
|
||||
max-width: $width-page-constrained;
|
||||
max-height: $height-embedded;
|
||||
max-height: $height-video-embedded;
|
||||
height: $height-video-embedded;
|
||||
video {
|
||||
height: 100%;
|
||||
}
|
||||
&.video--hidden {
|
||||
height: $height-embedded;
|
||||
height: $height-video-embedded;
|
||||
}
|
||||
&.video--active {
|
||||
background: none;
|
||||
/*background: none;*/
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue