// @flow import { SHOW_ADS, DOMAIN, SIMPLE_SITE, ENABLE_NO_SOURCE_CLAIMS } from 'config'; import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import * as CS from 'constants/claim_search'; import React, { useRef } from 'react'; import Page from 'component/page'; import ClaimListDiscover from 'component/claimListDiscover'; import Button from 'component/button'; import useHover from 'effects/use-hover'; import { useIsMobile, useIsLargeScreen } 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 { getLivestreamUris } from 'util/livestream'; const DEFAULT_LIVESTREAM_TILE_LIMIT = 8; type Props = { location: { search: string }, followedTags: Array, repostedUri: string, repostedClaim: ?GenericClaim, doToggleTagFollowDesktop: (string) => void, doResolveUri: (string) => void, isAuthenticated: boolean, dynamicRouteProps: RowDataItem, tileLayout: boolean, activeLivestreams: ?LivestreamInfo, doFetchActiveLivestreams: (orderBy?: Array, pageSize?: number, forceFetch?: boolean) => void, }; function DiscoverPage(props: Props) { const { location: { search }, followedTags, repostedClaim, repostedUri, doToggleTagFollowDesktop, doResolveUri, isAuthenticated, tileLayout, activeLivestreams, doFetchActiveLivestreams, dynamicRouteProps, } = props; const buttonRef = useRef(); const isHovering = useHover(buttonRef); const isMobile = useIsMobile(); const isLargeScreen = useIsLargeScreen(); const urlParams = new URLSearchParams(search); const claimType = urlParams.get('claim_type'); const tagsQuery = urlParams.get('t') || null; const tags = tagsQuery ? tagsQuery.split(',') : null; const repostedClaimIsResolved = repostedUri && repostedClaim; const discoverIcon = SIMPLE_SITE ? ICONS.WILD_WEST : ICONS.DISCOVER; const discoverLabel = SIMPLE_SITE ? __('Wild West') : __('All Content'); // 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 && dynamicRouteProps.options && dynamicRouteProps.options.channelIds) || 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 initialLivestreamTileLimit = getPageSize(DEFAULT_LIVESTREAM_TILE_LIMIT); const [showViewMoreLivestreams, setShowViewMoreLivestreams] = React.useState(!dynamicRouteProps); const livestreamUris = getLivestreamUris(activeLivestreams, channelIds); const useDualList = showViewMoreLivestreams && livestreamUris.length > initialLivestreamTileLimit; function getElemMeta() { return !dynamicRouteProps ? ( , }} > Results boosted by %lbc% ) : ( tag && !isMobile && (