import React from 'react';
import lbryio from 'lbryio.js';
import lbryuri from 'lbryuri'
import FileTile from 'component/fileTile';
import { FileTileStream } from 'component/fileTileStream'
import {ToolTip} from 'component/tooltip.js';
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 ' +
'"five" to put your content here!');
const FeaturedCategory = (props) => {
const {
category,
names,
} = props
return
{category}
{category && category.match(/^community/i) && }
{names && names.map(name => )}
}
const DiscoverPage = (props) => {
const {
featuredUris,
fetchingFeaturedUris,
} = props
const failed = Object.keys(featuredUris).length === 0
let content
if (fetchingFeaturedUris) content = Fetching landing content.
if (!fetchingFeaturedUris && failed) content = Failed to load landing content.
if (!fetchingFeaturedUris && !failed) {
content = Object.keys(featuredUris).map(category => {
return featuredUris[category].length ?
:
'';
})
}
return (
{content}
)
}
export default DiscoverPage;