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

49 lines
1.6 KiB
React
Raw Normal View History

2016-11-22 21:19:08 +01:00
import React from 'react';
2017-04-23 11:56:50 +02:00
import lbryio from 'lbryio.js';
2017-05-07 09:39:13 +02:00
import lbryuri from 'lbryuri'
2017-05-09 00:22:27 +02:00
import FileCard from 'component/fileCard';
import ToolTip from 'component/tooltip.js';
2016-04-10 02:00:56 +02:00
2017-04-10 14:32:40 +02:00
const communityCategoryToolTipText = ('Community Content is a public space where anyone can share content with the ' +
'rest of the LBRY community. Bid on the names "one," "two," "three," "four" and ' +
2017-04-10 14:32:40 +02:00
'"five" to put your content here!');
2017-04-23 11:56:50 +02:00
const FeaturedCategory = (props) => {
const {
category,
names,
} = props
2017-04-24 16:17:36 +02:00
2017-04-23 11:56:50 +02: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-09 00:22:27 +02:00
{names && names.map(name => <FileCard key={name} displayStyle="card" uri={lbryuri.normalize(name)} />)}
2017-04-23 11:56:50 +02:00
</div>
}
2017-05-04 05:44:08 +02:00
const DiscoverPage = (props) => {
const {
2017-05-07 09:39:13 +02:00
featuredUris,
fetchingFeaturedUris,
2017-05-04 05:44:08 +02:00
} = props
2017-05-07 09:39:13 +02:00
const failed = Object.keys(featuredUris).length === 0
let content
if (fetchingFeaturedUris) content = <div className="empty">Fetching landing content.</div>
if (!fetchingFeaturedUris && failed) content = <div className="empty">Failed to load landing content.</div>
if (!fetchingFeaturedUris && !failed) {
content = Object.keys(featuredUris).map(category => {
return featuredUris[category].length ?
<FeaturedCategory key={category} category={category} names={featuredUris[category]} /> :
'';
})
}
return (
<main>{content}</main>
)
2017-05-04 05:44:08 +02:00
}
export default DiscoverPage;