lbry-desktop/ui/component/claimTilesDiscover/view.jsx

152 lines
4.4 KiB
React
Raw Normal View History

2020-01-20 17:47:03 +01:00
// @flow
import React from 'react';
import { createNormalizedClaimSearchKey, MATURE_TAGS } from 'lbry-redux';
import ClaimPreviewTile from 'component/claimPreviewTile';
2020-05-21 17:38:28 +02:00
import { useHistory } from 'react-router';
2020-01-20 17:47:03 +01:00
type Props = {
2020-04-17 18:21:00 +02:00
prefixUris?: Array<string>,
2020-01-20 17:47:03 +01:00
uris: Array<string>,
doClaimSearch: ({}) => void,
showNsfw: boolean,
hideReposts: boolean,
2020-01-20 17:47:03 +01:00
history: { action: string, push: string => void, replace: string => void },
claimSearchByQuery: {
[string]: Array<string>,
},
fetchingClaimSearchByQuery: {
[string]: boolean,
},
2020-01-20 17:47:03 +01:00
// claim search options are below
tags: Array<string>,
hiddenUris: Array<string>,
2020-10-05 19:38:40 +02:00
claimIds?: Array<string>,
2020-01-20 17:47:03 +01:00
channelIds?: Array<string>,
notChannelIds?: Array<string>,
2020-01-20 17:47:03 +01:00
pageSize: number,
orderBy?: Array<string>,
releaseTime?: string,
languages?: Array<string>,
claimType?: Array<string>,
2020-01-20 17:47:03 +01:00
timestamp?: string,
2020-05-21 17:38:28 +02:00
feeAmount?: string,
limitClaimsPerChannel?: number,
2020-01-20 17:47:03 +01:00
};
function ClaimTilesDiscover(props: Props) {
const {
doClaimSearch,
claimSearchByQuery,
showNsfw,
hideReposts,
2020-01-20 17:47:03 +01:00
hiddenUris,
// Below are options to pass that are forwarded to claim_search
tags,
channelIds,
2020-10-05 19:38:40 +02:00
claimIds,
notChannelIds,
2020-01-20 17:47:03 +01:00
orderBy,
pageSize = 8,
releaseTime,
languages,
2020-01-20 17:47:03 +01:00
claimType,
2020-04-17 18:21:00 +02:00
prefixUris,
2020-01-20 17:47:03 +01:00
timestamp,
2020-05-21 17:38:28 +02:00
feeAmount,
limitClaimsPerChannel,
fetchingClaimSearchByQuery,
2020-01-20 17:47:03 +01:00
} = props;
2020-05-21 17:38:28 +02:00
const { location } = useHistory();
const urlParams = new URLSearchParams(location.search);
const feeAmountInUrl = urlParams.get('fee_amount');
const feeAmountParam = feeAmountInUrl || feeAmount;
2020-01-20 17:47:03 +01:00
const options: {
page_size: number,
no_totals: boolean,
any_tags: Array<string>,
channel_ids: Array<string>,
2020-10-05 19:38:40 +02:00
claim_ids?: Array<string>,
2020-01-20 17:47:03 +01:00
not_channel_ids: Array<string>,
not_tags: Array<string>,
order_by: Array<string>,
languages?: Array<string>,
2020-01-20 17:47:03 +01:00
release_time?: string,
claim_type?: Array<string>,
2020-01-20 17:47:03 +01:00
timestamp?: string,
2020-05-21 17:38:28 +02:00
fee_amount?: string,
limit_claims_per_channel?: number,
2020-10-05 19:38:40 +02:00
stream_types?: Array<string>,
2020-01-20 17:47:03 +01:00
} = {
page_size: pageSize,
claim_type: claimType || undefined,
2020-01-20 17:47:03 +01:00
// no_totals makes it so the sdk doesn't have to calculate total number pages for pagination
// it's faster, but we will need to remove it if we start using total_pages
no_totals: true,
any_tags: tags || [],
not_tags: !showNsfw ? MATURE_TAGS : [],
any_languages: languages,
2020-01-20 17:47:03 +01:00
channel_ids: channelIds || [],
not_channel_ids:
notChannelIds ||
// If channelIds were passed in, we don't need not_channel_ids
(!channelIds && hiddenUris && hiddenUris.length ? hiddenUris.map(hiddenUri => hiddenUri.split('#')[1]) : []),
2020-01-20 17:47:03 +01:00
order_by: orderBy || ['trending_group', 'trending_mixed'],
};
if (releaseTime) {
options.release_time = releaseTime;
}
2020-05-21 17:38:28 +02:00
if (feeAmountParam) {
options.fee_amount = feeAmountParam;
}
if (limitClaimsPerChannel) {
options.limit_claims_per_channel = limitClaimsPerChannel;
}
2020-02-28 23:36:22 +01:00
// https://github.com/lbryio/lbry-desktop/issues/3774
if (hideReposts) {
if (Array.isArray(options.claim_type)) {
options.claim_type = options.claim_type.filter(claimType => claimType !== 'repost');
} else {
options.claim_type = ['stream', 'channel'];
}
}
2020-02-20 13:30:27 +01:00
2020-01-20 17:47:03 +01:00
if (claimType) {
options.claim_type = claimType;
}
2020-02-20 13:30:27 +01:00
2020-01-20 17:47:03 +01:00
if (timestamp) {
options.timestamp = timestamp;
}
2020-10-05 19:38:40 +02:00
if (claimIds) {
options.claim_ids = claimIds;
}
2020-01-20 17:47:03 +01:00
const claimSearchCacheQuery = createNormalizedClaimSearchKey(options);
2020-04-17 18:21:00 +02:00
const uris = (prefixUris || []).concat(claimSearchByQuery[claimSearchCacheQuery] || []);
2020-01-20 17:47:03 +01:00
// Don't use the query from createNormalizedClaimSearchKey for the effect since that doesn't include page & release_time
const optionsStringForEffect = JSON.stringify(options);
const isLoading = fetchingClaimSearchByQuery[claimSearchCacheQuery];
const shouldPerformSearch = !isLoading && uris.length === 0;
2020-01-20 17:47:03 +01:00
React.useEffect(() => {
if (shouldPerformSearch) {
const searchOptions = JSON.parse(optionsStringForEffect);
doClaimSearch(searchOptions);
}
}, [doClaimSearch, shouldPerformSearch, optionsStringForEffect]);
2020-01-20 17:47:03 +01:00
return (
<ul className="claim-grid">
{uris && uris.length
? uris.map(uri => <ClaimPreviewTile key={uri} uri={uri} />)
: new Array(pageSize).fill(1).map((x, i) => <ClaimPreviewTile key={i} placeholder />)}
</ul>
);
}
export default ClaimTilesDiscover;