// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import React from 'react'; import Page from 'component/page'; import Button from 'component/button'; import ClaimTilesDiscover from 'component/claimTilesDiscover'; import ClaimListDiscover from 'component/claimListDiscover'; import * as CS from 'constants/claim_search'; import { toCapitalCase } from 'util/string'; import { CUSTOM_HOMEPAGE } from 'config'; const MORE_CHANNELS_ANCHOR = 'MoreChannels'; type Props = { followedTags: Array, subscribedChannels: Array, blockedChannels: Array, homepageData: any, }; type ChannelsFollowingItem = { title: string, link?: string, help?: any, options?: {}, }; function ChannelsFollowingDiscover(props: Props) { const { followedTags, subscribedChannels, blockedChannels, homepageData } = props; const { PRIMARY_CONTENT } = homepageData; let channelIds; if (PRIMARY_CONTENT && CUSTOM_HOMEPAGE) { channelIds = PRIMARY_CONTENT.channelIds; } let rowData: Array = []; const notChannels = subscribedChannels .map(({ uri }) => uri) .concat(blockedChannels) .map((uri) => uri.split('#')[1]); rowData.push({ title: 'Top Channels Of All Time', link: `/$/${PAGES.DISCOVER}?claim_type=channel&${CS.ORDER_BY_KEY}=${CS.ORDER_BY_TOP}&${CS.FRESH_KEY}=${CS.FRESH_ALL}`, options: { pageSize: 12, claimType: 'channel', orderBy: ['effective_amount'], }, }); rowData.push({ title: 'Latest From @lbrycast', link: `/@lbrycast:4`, options: { orderBy: ['release_time'], pageSize: 8, channelIds: ['4c29f8b013adea4d5cca1861fb2161d5089613ea'], }, }); rowData.push({ title: 'Trending Channels', link: `/$/${PAGES.DISCOVER}?claim_type=channel`, options: { pageSize: 8, claimType: 'channel', orderBy: ['trending_group', 'trending_mixed'], }, }); if (followedTags.length > 0 && followedTags.length < 5) { const followedRows = followedTags.map((tag: Tag) => ({ title: `Trending Channels for #${toCapitalCase(tag.name)}`, link: `/$/${PAGES.DISCOVER}?t=${tag.name}&claim_type=channel`, options: { claimType: 'channel', pageSize: 4, tags: [tag.name], }, })); rowData.push(...followedRows); } if (followedTags.length > 4) { rowData.push({ title: 'Trending For Your Tags', link: `/$/${PAGES.TAGS_FOLLOWING}?claim_type=channel`, options: { claimType: 'channel', tags: followedTags.map((tag) => tag.name), }, }); } const rowDataWithGenericOptions = rowData.map((row) => { return { ...row, options: { ...row.options, notChannels, }, }; }); return ( {rowDataWithGenericOptions.map(({ title, link, help, options = {} }) => (

{link ? (

))}

{__('More Channels')}

); } export default ChannelsFollowingDiscover;