2016-11-22 14:19:08 -06:00
|
|
|
import React from 'react';
|
2017-04-23 16:56:50 +07:00
|
|
|
import lbryio from 'lbryio.js';
|
2017-05-07 14:39:13 +07:00
|
|
|
import lbryuri from 'lbryuri'
|
2017-05-08 18:22:27 -04:00
|
|
|
import FileCard from 'component/fileCard';
|
2017-05-09 16:12:48 -04:00
|
|
|
import {BusyMessage} from 'component/common.js';
|
2017-05-08 18:22:27 -04:00
|
|
|
import ToolTip from 'component/tooltip.js';
|
2016-04-09 20:00:56 -04:00
|
|
|
|
2017-04-10 08:32:40 -04:00
|
|
|
const communityCategoryToolTipText = ('Community Content is a public space where anyone can share content with the ' +
|
2017-04-30 20:15:21 -04:00
|
|
|
'rest of the LBRY community. Bid on the names "one," "two," "three," "four" and ' +
|
2017-04-10 08:32:40 -04:00
|
|
|
'"five" to put your content here!');
|
|
|
|
|
2017-04-23 16:56:50 +07:00
|
|
|
const FeaturedCategory = (props) => {
|
|
|
|
const {
|
|
|
|
category,
|
|
|
|
names,
|
|
|
|
} = props
|
2017-04-24 21:17:36 +07:00
|
|
|
|
2017-04-23 16:56:50 +07:00
|
|
|
return <div className="card-row card-row--small">
|
|
|
|
<h3 className="card-row__header">{category}
|
|
|
|
{category && category.match(/^community/i) && <ToolTip label="What's this?" body={communityCategoryToolTipText} className="tooltip--header" />}
|
|
|
|
</h3>
|
2017-05-08 18:22:27 -04:00
|
|
|
{names && names.map(name => <FileCard key={name} displayStyle="card" uri={lbryuri.normalize(name)} />)}
|
2017-04-23 16:56:50 +07:00
|
|
|
</div>
|
|
|
|
}
|
2016-05-16 09:20:32 -04:00
|
|
|
|
2017-05-10 20:59:47 -04:00
|
|
|
class DiscoverPage extends React.Component{
|
|
|
|
componentWillMount() {
|
|
|
|
this.props.fetchFeaturedUris()
|
2017-05-07 14:39:13 +07:00
|
|
|
}
|
|
|
|
|
2017-05-10 20:59:47 -04:00
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
featuredUris,
|
|
|
|
fetchingFeaturedUris,
|
|
|
|
} = this.props
|
|
|
|
|
|
|
|
let content
|
|
|
|
|
|
|
|
if (fetchingFeaturedUris) {
|
|
|
|
content = <BusyMessage message="Fetching content" />
|
|
|
|
} else {
|
|
|
|
if (typeof featuredUris === "object") {
|
|
|
|
content = Object.keys(featuredUris).map(category => {
|
|
|
|
return featuredUris[category].length ?
|
|
|
|
<FeaturedCategory key={category} category={category} names={featuredUris[category]} /> :
|
|
|
|
'';
|
|
|
|
})
|
|
|
|
} else if (featuredUris !== undefined) {
|
|
|
|
content = <div className="empty">Failed to load landing content.</div>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<main>{content}</main>
|
|
|
|
)
|
|
|
|
}
|
2017-05-03 23:44:08 -04:00
|
|
|
}
|
|
|
|
|
2017-04-27 00:08:26 +07:00
|
|
|
export default DiscoverPage;
|