lbry-desktop/ui/js/page/file-list.js

225 lines
6.3 KiB
JavaScript
Raw Normal View History

2017-01-13 23:18:37 +01:00
import React from 'react';
import lbry from '../lbry.js';
import uri from '../uri.js';
2017-01-13 23:18:37 +01:00
import {Link} from '../component/link.js';
2017-04-10 14:32:40 +02:00
import {FormField} from '../component/form.js';
2017-01-13 23:18:37 +01:00
import {FileTileStream} from '../component/file-tile.js';
2017-04-17 14:27:39 +02:00
import rewards from '../rewards.js';
import lbryio from '../lbryio.js';
2017-01-13 23:18:37 +01:00
import {BusyMessage, Thumbnail} from '../component/common.js';
export let FileListDownloaded = React.createClass({
_isMounted: false,
getInitialState: function() {
return {
fileInfos: null,
};
},
componentDidMount: function() {
this._isMounted = true;
document.title = "Downloaded Files";
lbry.claim_list_mine().then((myClaimInfos) => {
2017-01-13 23:18:37 +01:00
if (!this._isMounted) { return; }
lbry.file_list().then((fileInfos) => {
2017-01-13 23:18:37 +01:00
if (!this._isMounted) { return; }
const myClaimOutpoints = myClaimInfos.map(({txid, nout}) => txid + ':' + nout);
2017-01-13 23:18:37 +01:00
this.setState({
fileInfos: fileInfos.filter(({outpoint}) => !myClaimOutpoints.includes(outpoint)),
2017-01-13 23:18:37 +01:00
});
});
});
},
2017-04-17 14:27:39 +02:00
componentWillUnmount: function() {
this._isMounted = false;
},
2017-01-13 23:18:37 +01:00
render: function() {
if (this.state.fileInfos === null) {
return (
<main className="page">
<BusyMessage message="Loading" />
</main>
);
} else if (!this.state.fileInfos.length) {
return (
<main className="page">
2017-03-26 20:30:18 +02:00
<span>You haven't downloaded anything from LBRY yet. Go <Link href="?discover" label="search for your first download" />!</span>
2017-01-13 23:18:37 +01:00
</main>
);
} else {
return (
<main className="page">
2017-01-17 11:19:09 +01:00
<FileList fileInfos={this.state.fileInfos} hidePrices={true} />
2017-01-13 23:18:37 +01:00
</main>
);
}
}
});
export let FileListPublished = React.createClass({
_isMounted: false,
getInitialState: function () {
return {
fileInfos: null,
};
},
2017-04-17 14:27:39 +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).catch(() => {})
}
});
},
2017-01-13 23:18:37 +01:00
componentDidMount: function () {
this._isMounted = true;
2017-04-17 14:27:39 +02:00
this._requestPublishReward();
2017-01-13 23:18:37 +01:00
document.title = "Published Files";
lbry.claim_list_mine().then((claimInfos) => {
if (!this._isMounted) { return; }
lbry.file_list().then((fileInfos) => {
if (!this._isMounted) { return; }
2017-01-13 23:18:37 +01:00
const myClaimOutpoints = claimInfos.map(({txid, nout}) => txid + ':' + nout);
this.setState({
fileInfos: fileInfos.filter(({outpoint}) => myClaimOutpoints.includes(outpoint)),
2017-01-13 23:18:37 +01:00
});
});
2017-01-13 23:18:37 +01:00
});
},
2017-04-17 14:27:39 +02:00
componentWillUnmount: function() {
this._isMounted = false;
},
2017-01-13 23:18:37 +01:00
render: function () {
if (this.state.fileInfos === null) {
return (
<main className="page">
<BusyMessage message="Loading" />
</main>
);
}
else if (!this.state.fileInfos.length) {
return (
<main className="page">
2017-03-26 20:30:18 +02:00
<span>You haven't published anything to LBRY yet.</span> Try <Link href="?publish" label="publishing" />!
2017-01-13 23:18:37 +01:00
</main>
);
}
else {
return (
<main className="page">
<FileList fileInfos={this.state.fileInfos} />
</main>
);
}
}
});
export let FileList = React.createClass({
_sortFunctions: {
date: function(fileInfos) {
return fileInfos.slice().reverse();
2017-01-13 23:18:37 +01:00
},
title: function(fileInfos) {
return fileInfos.slice().sort(function(fileInfo1, fileInfo2) {
const title1 = fileInfo1.metadata ? fileInfo1.metadata.title.toLowerCase() : fileInfo1.name;
const title2 = fileInfo2.metadata ? fileInfo2.metadata.title.toLowerCase() : fileInfo2.name;
if (title1 < title2) {
return -1;
} else if (title1 > title2) {
return 1;
} else {
return 0;
}
2017-01-13 23:18:37 +01:00
});
},
filename: function(fileInfos) {
return fileInfos.slice().sort(function({file_name: fileName1}, {file_name: fileName2}) {
const fileName1Lower = fileName1.toLowerCase();
const fileName2Lower = fileName2.toLowerCase();
if (fileName1Lower < fileName2Lower) {
return -1;
} else if (fileName2Lower > fileName1Lower) {
return 1;
} else {
return 0;
}
2017-01-13 23:18:37 +01:00
});
},
},
propTypes: {
2017-01-17 11:19:09 +01:00
fileInfos: React.PropTypes.array.isRequired,
hidePrices: React.PropTypes.bool,
},
getDefaultProps: function() {
return {
hidePrices: false,
};
2017-01-13 23:18:37 +01:00
},
getInitialState: function() {
return {
sortBy: 'date',
};
},
handleSortChanged: function(event) {
this.setState({
sortBy: event.target.value,
});
},
render: function() {
var content = [],
seenUris = {};
const fileInfosSorted = this._sortFunctions[this.state.sortBy](this.props.fileInfos);
for (let {outpoint, name, channel_name, metadata, mime_type, claim_id, has_signature, signature_is_valid} of fileInfosSorted) {
if (seenUris[name] || !claim_id) {
2017-01-13 23:18:37 +01:00
continue;
}
let streamMetadata;
if (metadata) {
streamMetadata = metadata.stream.metadata;
} else {
streamMetadata = null;
}
let fileUri;
2017-04-13 21:37:41 +02:00
if (!channel_name) {
fileUri = uri.buildLbryUri({name});
} else {
fileUri = uri.buildLbryUri({name: channel_name, path: name});
}
seenUris[name] = true;
content.push(<FileTileStream key={outpoint} outpoint={outpoint} uri={fileUri} hideOnRemove={true}
hidePrice={this.props.hidePrices} metadata={streamMetadata} contentType={mime_type}
hasSignature={has_signature} signatureIsValid={signature_is_valid} />);
2017-01-13 23:18:37 +01:00
}
return (
<section>
<span className='sort-section'>
Sort by { ' ' }
<FormField type="select" onChange={this.handleSortChanged}>
<option value="date">Date</option>
<option value="title">Title</option>
<option value="filename">File name</option>
</FormField>
</span>
{content}
</section>
);
}
});