lbry-desktop/ui/js/page/fileListDownloaded/view.jsx

46 lines
1.2 KiB
React
Raw Normal View History

import React from 'react';
import lbry from 'lbry.js';
import lbryuri from 'lbryuri.js';
import Link from 'component/link';
import {FormField} from 'component/form.js';
2017-05-09 00:22:27 +02:00
import {FileTile} from 'component/fileTile';
import rewards from 'rewards.js';
import lbryio from 'lbryio.js';
import {BusyMessage, Thumbnail} from 'component/common.js';
import FileList from 'component/fileList'
import SubHeader from 'component/subHeader'
2017-04-25 07:47:21 +02:00
class FileListDownloaded extends React.Component {
componentWillMount() {
this.props.fetchFileInfosDownloaded()
}
2017-04-25 07:47:21 +02:00
render() {
const {
fileInfos,
isPending,
navigate,
2017-04-25 07:47:21 +02:00
} = this.props
let content
if (fileInfos && fileInfos.length > 0) {
content = <FileList fileInfos={fileInfos} fetching={isPending} />
2017-04-25 07:47:21 +02:00
} else {
if (isPending) {
2017-05-15 18:34:33 +02:00
content = <BusyMessage message="Loading" />
} else {
content = <span>You haven't downloaded anything from LBRY yet. Go <Link onClick={() => navigate('/discover')} label="search for your first download" />!</span>
}
2017-04-25 07:47:21 +02:00
}
return (
<main className="main--single-column">
<SubHeader />
{content}
</main>
)
2017-04-25 07:47:21 +02:00
}
}
export default FileListDownloaded