2017-01-13 23:18:37 +01:00
|
|
|
import React from 'react';
|
|
|
|
import lbry from '../lbry.js';
|
|
|
|
import {Link} from '../component/link.js';
|
|
|
|
import FormField from '../component/form.js';
|
|
|
|
import {FileTileStream} from '../component/file-tile.js';
|
|
|
|
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";
|
|
|
|
|
|
|
|
let publishedFilesSdHashes = [];
|
2017-01-17 11:06:39 +01:00
|
|
|
lbry.getMyClaims((claimInfos) => {
|
2017-01-13 23:18:37 +01:00
|
|
|
|
|
|
|
if (!this._isMounted) { return; }
|
|
|
|
|
2017-01-17 11:06:39 +01:00
|
|
|
for (let claimInfo of claimInfos) {
|
2017-01-13 23:18:37 +01:00
|
|
|
let metadata = JSON.parse(claimInfo.value);
|
|
|
|
publishedFilesSdHashes.push(metadata.sources.lbry_sd_hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
lbry.getFilesInfo((fileInfos) => {
|
|
|
|
if (!this._isMounted) { return; }
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
fileInfos: fileInfos.filter(({sd_hash}) => {
|
|
|
|
return publishedFilesSdHashes.indexOf(sd_hash) == -1;
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
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-08 08:37:06 +01:00
|
|
|
<span>You haven't downloaded anything from LBRY yet. Go <Link href="/index.html?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,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
componentDidMount: function () {
|
|
|
|
this._isMounted = true;
|
|
|
|
document.title = "Published Files";
|
|
|
|
|
2017-01-17 11:06:39 +01:00
|
|
|
lbry.getMyClaims((claimInfos) => {
|
2017-02-24 10:22:44 +01:00
|
|
|
if (claimInfos.length == 0) {
|
|
|
|
this.setState({
|
|
|
|
fileInfos: [],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-01-13 23:18:37 +01:00
|
|
|
/**
|
|
|
|
* Build newFileInfos as a sparse array and drop elements in at the same position they
|
2017-01-17 11:06:39 +01:00
|
|
|
* occur in claimInfos, so the order is preserved even if the API calls inside this loop
|
2017-01-13 23:18:37 +01:00
|
|
|
* return out of order.
|
|
|
|
*/
|
2017-01-17 11:06:39 +01:00
|
|
|
let newFileInfos = Array(claimInfos.length),
|
2017-01-13 23:18:37 +01:00
|
|
|
claimInfoProcessedCount = 0;
|
|
|
|
|
2017-01-17 11:06:39 +01:00
|
|
|
for (let [i, claimInfo] of claimInfos.entries()) {
|
2017-01-13 23:18:37 +01:00
|
|
|
let metadata = JSON.parse(claimInfo.value);
|
|
|
|
lbry.getFileInfoBySdHash(metadata.sources.lbry_sd_hash, (fileInfo) => {
|
|
|
|
claimInfoProcessedCount++;
|
|
|
|
if (fileInfo !== false) {
|
|
|
|
newFileInfos[i] = fileInfo;
|
|
|
|
}
|
2017-01-17 11:06:39 +01:00
|
|
|
if (claimInfoProcessedCount >= claimInfos.length) {
|
2017-01-13 23:18:37 +01:00
|
|
|
/**
|
|
|
|
* newfileInfos may have gaps from claims that don't have associated files in
|
|
|
|
* lbrynet, so filter out any missing elements
|
|
|
|
*/
|
|
|
|
this.setState({
|
|
|
|
fileInfos: newFileInfos.filter(function () {
|
|
|
|
return true
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
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-02-24 09:57:24 +01:00
|
|
|
<span>You haven't published anything to LBRY yet.</span> Try <Link href="index.html?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) {
|
2017-02-24 06:32:32 +01:00
|
|
|
return fileInfos.slice().reverse();
|
2017-01-13 23:18:37 +01:00
|
|
|
},
|
|
|
|
title: function(fileInfos) {
|
2017-02-24 06:32:32 +01:00
|
|
|
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) {
|
2017-02-24 06:32:32 +01:00
|
|
|
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 fileInfo of fileInfosSorted) {
|
|
|
|
let {lbry_uri, sd_hash, metadata} = fileInfo;
|
|
|
|
|
|
|
|
if (!metadata || seenUris[lbry_uri]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
seenUris[lbry_uri] = true;
|
2017-01-17 11:19:09 +01:00
|
|
|
content.push(<FileTileStream key={lbry_uri} name={lbry_uri} hideOnRemove={true} sdHash={sd_hash}
|
|
|
|
hidePrice={this.props.hidePrices} metadata={metadata} />);
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|