// @flow import { SHOW_ADS } from 'config'; import * as CS from 'constants/claim_search'; import * as ICONS from 'constants/icons'; import React, { Fragment } from 'react'; import HiddenNsfwClaims from 'component/hiddenNsfwClaims'; import { useHistory } from 'react-router-dom'; import Button from 'component/button'; import ClaimListDiscover from 'component/claimListDiscover'; import Ads from 'web/component/ads'; import Icon from 'component/common/icon'; import { Form, FormField } from 'component/common/form'; import { DEBOUNCE_WAIT_DURATION_MS } from 'constants/search'; const LIGHTHOUSE_URL = 'https://lighthouse.lbry.com/search'; type Props = { uri: string, totalPages: number, fetching: boolean, params: { page: number }, pageOfClaimsInChannel: Array, channelIsBlocked: boolean, channelIsMine: boolean, fetchClaims: (string, number) => void, channelIsBlackListed: boolean, defaultPageSize?: number, defaultInfiniteScroll?: Boolean, claim: ?Claim, isAuthenticated: boolean, showMature: boolean, tileLayout: boolean, }; function ChannelContent(props: Props) { const { uri, fetching, channelIsMine, channelIsBlocked, channelIsBlackListed, claim, isAuthenticated, defaultPageSize = CS.PAGE_SIZE, defaultInfiniteScroll = true, showMature, tileLayout, } = props; const claimsInChannel = (claim && claim.meta.claims_in_channel) || 0; const [searchQuery, setSearchQuery] = React.useState(''); const [searchResults, setSearchResults] = React.useState(undefined); const { location: { pathname, search }, } = useHistory(); const url = `${pathname}${search}`; const claimId = claim && claim.claim_id; function handleInputChange(e) { const { value } = e.target; setSearchQuery(value); } function getResults(fetchUrl) { fetch(fetchUrl) .then(res => res.json()) .then(results => { const urls = results.map(({ name, claimId }) => { return `lbry://${name}#${claimId}`; }); setSearchResults(urls); }) .catch(() => { setSearchResults(null); }); } React.useEffect(() => { const timer = setTimeout(() => { if (searchQuery === '' || !claimId) { // In order to display original search results, search results must be set to null. A query of '' should display original results. return setSearchResults(null); } else { getResults( `${LIGHTHOUSE_URL}?s=${encodeURIComponent(searchQuery)}&channel_id=${encodeURIComponent(claimId)}${ !showMature ? '&nsfw=false&size=999&from=0' : '' }` ); } }, DEBOUNCE_WAIT_DURATION_MS); return () => clearTimeout(timer); }, [claimId, searchQuery, showMature]); React.useEffect(() => { setSearchQuery(''); setSearchResults(null); }, [url]); return ( {!fetching && Boolean(claimsInChannel) && !channelIsBlocked && !channelIsBlackListed && ( )} {!fetching && channelIsBlackListed && (

{__( 'In response to a complaint we received under the US Digital Millennium Copyright Act, we have blocked access to this channel from our applications.' )}

)} {!fetching && channelIsBlocked && (

{__('You have blocked this channel content.')}

)} {!channelIsMine && claimsInChannel > 0 && } {claim && claimsInChannel > 0 ? ( } meta={
{}} className="wunderbar--inline"> } /> ) : (
{__("This channel hasn't published anything yet")}
)}
); } export default ChannelContent;