// @flow import React, { useRef } from 'react'; import classnames from 'classnames'; import { DOMAIN, SIMPLE_SITE } from 'config'; import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import * as CS from 'constants/claim_search'; import Page from 'component/page'; import ClaimListDiscover from 'component/claimListDiscover'; import Button from 'component/button'; import { ClaimSearchFilterContext } from 'contexts/claimSearchFilterContext'; import useHover from 'effects/use-hover'; import { useIsMobile } from 'effects/use-screensize'; import analytics from 'analytics'; import HiddenNsfw from 'component/common/hidden-nsfw'; import Icon from 'component/common/icon'; import Ads from 'web/component/ads'; import LbcSymbol from 'component/common/lbc-symbol'; import I18nMessage from 'component/i18nMessage'; import moment from 'moment'; import LivestreamSection from './livestreamSection'; import PremiumPlusTile from 'component/premiumPlusTile'; const CATEGORY_CONTENT_TYPES_FILTER = CS.CONTENT_TYPES.filter((x) => x !== CS.CLAIM_REPOST); type Props = { dynamicRouteProps: RowDataItem, location: { search: string }, followedTags: Array, repostedUri: string, repostedClaim: ?GenericClaim, languageSetting: string, searchInLanguage: boolean, doToggleTagFollowDesktop: (string) => void, doResolveUri: (string) => void, tileLayout: boolean, activeLivestreams: ?LivestreamInfo, doFetchActiveLivestreams: (orderBy: ?Array, lang: ?Array) => void, adBlockerFound: ?boolean, hasPremiumPlus: ?boolean, }; function DiscoverPage(props: Props) { const { location: { search }, followedTags, repostedClaim, repostedUri, languageSetting, searchInLanguage, doToggleTagFollowDesktop, doResolveUri, tileLayout, activeLivestreams, doFetchActiveLivestreams, dynamicRouteProps, adBlockerFound, hasPremiumPlus, } = props; const buttonRef = useRef(); const isHovering = useHover(buttonRef); const isMobile = useIsMobile(); const isWildWest = dynamicRouteProps && dynamicRouteProps.id === 'WILD_WEST'; const isCategory = Boolean(dynamicRouteProps); const urlParams = new URLSearchParams(search); const langParam = urlParams.get(CS.LANGUAGE_KEY) || null; const claimType = urlParams.get('claim_type'); const tagsQuery = urlParams.get('t') || null; const freshnessParam = urlParams.get(CS.FRESH_KEY); const orderParam = urlParams.get(CS.ORDER_BY_KEY); const tags = tagsQuery ? tagsQuery.split(',') : null; const repostedClaimIsResolved = repostedUri && repostedClaim; const hideRepostRibbon = isCategory && !isWildWest; // Eventually allow more than one tag on this page // Restricting to one to make follow/unfollow simpler const tag = (tags && tags[0]) || null; const channelIds = dynamicRouteProps?.options?.channelIds || undefined; const excludedChannelIds = dynamicRouteProps?.options?.excludedChannelIds || undefined; const isFollowing = followedTags.map(({ name }) => name).includes(tag); let label = isFollowing ? __('Following --[button label indicating a channel has been followed]--') : __('Follow'); if (isHovering && isFollowing) { label = __('Unfollow'); } const includeLivestreams = !tagsQuery; const filters = { contentTypes: isCategory && !isWildWest ? CATEGORY_CONTENT_TYPES_FILTER : CS.CONTENT_TYPES }; // ************************************************************************** // ************************************************************************** function getMeta() { if (!dynamicRouteProps) { return ( }}>Results boosted by %lbc% ); } if (tag && !isMobile) { return (