2017-04-23 18:10:45 +02:00
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' ;
2017-04-23 18:10:45 +02:00
import rewards from 'rewards.js' ;
import lbryio from 'lbryio.js' ;
import { BusyMessage , Thumbnail } from 'component/common.js' ;
import FileList from 'component/fileList'
2017-05-05 10:10:51 +02:00
import SubHeader from 'component/subHeader'
2017-04-23 18:10:45 +02:00
2017-04-25 07:47:21 +02:00
class FileListDownloaded extends React . Component {
render ( ) {
const {
downloadedContent ,
fetching ,
2017-04-30 18:01:43 +02:00
navigate ,
2017-04-25 07:47:21 +02:00
} = this . props
2017-05-05 10:10:51 +02:00
let content
2017-04-25 07:47:21 +02:00
if ( fetching ) {
2017-05-05 10:10:51 +02:00
content = < BusyMessage message = "Loading" / >
2017-04-25 07:47:21 +02:00
} else if ( ! downloadedContent . length ) {
2017-05-06 18:31:47 +02:00
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
} else {
2017-05-05 10:10:51 +02:00
content = < FileList fileInfos = { downloadedContent } hidePrices = { true } / >
2017-04-25 07:47:21 +02:00
}
2017-05-05 10:10:51 +02:00
return (
< main className = "page" >
< SubHeader / >
{ content }
< / main >
)
2017-04-25 07:47:21 +02:00
}
2017-04-23 18:10:45 +02:00
}
export default FileListDownloaded