// @flow import { DOMAIN, 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 } from 'effects/use-screensize'; import analytics from 'analytics'; import HiddenNsfw from 'component/common/hidden-nsfw'; import Icon from 'component/common/icon'; import LbcSymbol from 'component/common/lbc-symbol'; import I18nMessage from 'component/i18nMessage'; const LIMIT_CLAIMS_PER_CHANNEL = 3; type Props = { location: { search: string }, followedTags: Array, repostedUri: string, repostedClaim: ?GenericClaim, doToggleTagFollowDesktop: (string) => void, doResolveUri: (string) => void, isAuthenticated: boolean, dynamicRouteProps: RowDataItem, tileLayout: boolean, }; function DiscoverPage(props: Props) { const { location: { search }, followedTags, repostedClaim, repostedUri, doToggleTagFollowDesktop, doResolveUri, tileLayout, dynamicRouteProps, } = props; const buttonRef = useRef(); const isHovering = useHover(buttonRef); const isMobile = useIsMobile(); 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 = ICONS.DISCOVER; const discoverLabel = __('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'); } function getElemMeta() { return !dynamicRouteProps ? ( , }} > Results boosted by %lbc% ) : ( tag && !isMobile && (