2018-07-25 02:50:04 +02:00
|
|
|
// @flow
|
2021-06-22 18:33:18 +02:00
|
|
|
import { SHOW_ADS } from 'config';
|
2018-07-25 02:50:04 +02:00
|
|
|
import React from 'react';
|
2019-06-19 07:05:43 +02:00
|
|
|
import ClaimList from 'component/claimList';
|
2021-04-06 20:59:12 +02:00
|
|
|
import ClaimListDiscover from 'component/claimListDiscover';
|
2020-05-07 20:44:11 +02:00
|
|
|
import Ads from 'web/component/ads';
|
2020-04-29 21:31:11 +02:00
|
|
|
import Card from 'component/common/card';
|
2020-08-25 15:49:19 +02:00
|
|
|
import { useIsMobile, useIsMediumScreen } from 'effects/use-screensize';
|
2021-04-06 20:59:12 +02:00
|
|
|
import Button from 'component/button';
|
2021-04-08 17:21:45 +02:00
|
|
|
import classnames from 'classnames';
|
|
|
|
|
|
|
|
const VIEW_ALL_RELATED = 'view_all_related';
|
|
|
|
const VIEW_MORE_FROM = 'view_more_from';
|
2018-07-25 02:50:04 +02:00
|
|
|
|
|
|
|
type Props = {
|
2018-07-25 06:45:24 +02:00
|
|
|
uri: string,
|
2018-08-03 20:28:11 +02:00
|
|
|
recommendedContent: Array<string>,
|
2021-03-19 04:16:05 +01:00
|
|
|
nextRecommendedUri: string,
|
2018-08-27 05:18:57 +02:00
|
|
|
isSearching: boolean,
|
2021-03-19 16:04:12 +01:00
|
|
|
doFetchRecommendedContent: (string, boolean) => void,
|
2020-01-28 23:05:44 +01:00
|
|
|
mature: boolean,
|
2020-03-26 22:47:07 +01:00
|
|
|
isAuthenticated: boolean,
|
2021-04-08 17:21:45 +02:00
|
|
|
claim: ?StreamClaim,
|
2018-07-25 02:50:04 +02:00
|
|
|
};
|
|
|
|
|
2021-06-28 10:38:48 +02:00
|
|
|
export default React.memo<Props>(function RecommendedContent(props: Props) {
|
2021-03-19 16:04:12 +01:00
|
|
|
const {
|
|
|
|
uri,
|
|
|
|
doFetchRecommendedContent,
|
|
|
|
mature,
|
|
|
|
recommendedContent,
|
|
|
|
nextRecommendedUri,
|
|
|
|
isSearching,
|
|
|
|
isAuthenticated,
|
2021-04-08 17:21:45 +02:00
|
|
|
claim,
|
2021-03-19 16:04:12 +01:00
|
|
|
} = props;
|
2021-04-08 17:21:45 +02:00
|
|
|
const [viewMode, setViewMode] = React.useState(VIEW_ALL_RELATED);
|
|
|
|
const signingChannel = claim && claim.signing_channel;
|
|
|
|
const channelName = signingChannel ? signingChannel.name : null;
|
2020-08-25 15:49:19 +02:00
|
|
|
const isMobile = useIsMobile();
|
|
|
|
const isMedium = useIsMediumScreen();
|
2018-07-25 06:45:24 +02:00
|
|
|
|
2021-03-19 04:16:05 +01:00
|
|
|
function reorderList(recommendedContent) {
|
|
|
|
let newList = recommendedContent;
|
|
|
|
if (newList) {
|
|
|
|
const index = newList.indexOf(nextRecommendedUri);
|
|
|
|
if (index === -1) {
|
|
|
|
// This would be weird. Shouldn't happen since it is derived from the same list.
|
|
|
|
} else if (index !== 0) {
|
|
|
|
// Swap the "next" item to the top of the list
|
|
|
|
const a = newList[0];
|
|
|
|
newList[0] = nextRecommendedUri;
|
|
|
|
newList[index] = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newList;
|
|
|
|
}
|
|
|
|
|
2020-08-25 15:49:19 +02:00
|
|
|
React.useEffect(() => {
|
2021-03-19 16:04:12 +01:00
|
|
|
doFetchRecommendedContent(uri, mature);
|
|
|
|
}, [uri, mature, doFetchRecommendedContent]);
|
2018-08-09 18:41:14 +02:00
|
|
|
|
2020-08-25 15:49:19 +02:00
|
|
|
return (
|
|
|
|
<Card
|
|
|
|
isBodyList
|
|
|
|
smallTitle={!isMobile && !isMedium}
|
|
|
|
className="file-page__recommended"
|
|
|
|
title={__('Related')}
|
2021-04-08 17:21:45 +02:00
|
|
|
titleActions={
|
|
|
|
signingChannel && (
|
|
|
|
<div className="recommended-content__toggles">
|
|
|
|
<Button
|
|
|
|
className={classnames('button-toggle', {
|
|
|
|
'button-toggle--active': viewMode === VIEW_ALL_RELATED,
|
|
|
|
})}
|
|
|
|
label={__('All')}
|
|
|
|
onClick={() => setViewMode(VIEW_ALL_RELATED)}
|
|
|
|
/>
|
|
|
|
|
2021-04-06 20:59:12 +02:00
|
|
|
<Button
|
2021-04-08 17:21:45 +02:00
|
|
|
className={classnames('button-toggle', {
|
|
|
|
'button-toggle--active': viewMode === VIEW_MORE_FROM,
|
|
|
|
})}
|
2021-04-06 20:59:12 +02:00
|
|
|
label={__('More from %claim_name%', { claim_name: channelName })}
|
2021-04-08 17:21:45 +02:00
|
|
|
onClick={() => setViewMode(VIEW_MORE_FROM)}
|
2021-04-06 20:59:12 +02:00
|
|
|
/>
|
2021-04-08 17:21:45 +02:00
|
|
|
</div>
|
|
|
|
)
|
2021-04-06 20:59:12 +02:00
|
|
|
}
|
|
|
|
body={
|
|
|
|
<div>
|
2021-04-08 17:21:45 +02:00
|
|
|
{viewMode === VIEW_ALL_RELATED && (
|
2021-04-06 20:59:12 +02:00
|
|
|
<ClaimList
|
|
|
|
type="small"
|
|
|
|
loading={isSearching}
|
|
|
|
uris={reorderList(recommendedContent)}
|
|
|
|
hideMenu={isMobile}
|
2021-06-22 18:33:18 +02:00
|
|
|
injectedItem={SHOW_ADS && IS_WEB && !isAuthenticated && <Ads small type={'video'} />}
|
2021-04-06 20:59:12 +02:00
|
|
|
empty={__('No related content found')}
|
|
|
|
/>
|
|
|
|
)}
|
2021-04-08 17:21:45 +02:00
|
|
|
{viewMode === VIEW_MORE_FROM && signingChannel && (
|
2021-04-06 20:59:12 +02:00
|
|
|
<ClaimListDiscover
|
2021-04-08 17:21:45 +02:00
|
|
|
hideAdvancedFilter
|
2021-04-06 20:59:12 +02:00
|
|
|
tileLayout={false}
|
|
|
|
showHeader={false}
|
|
|
|
type="small"
|
|
|
|
claimType={['stream']}
|
|
|
|
orderBy="new"
|
|
|
|
pageSize={20}
|
|
|
|
infiniteScroll={false}
|
2021-04-08 17:21:45 +02:00
|
|
|
hideFilters
|
2021-04-06 20:59:12 +02:00
|
|
|
channelIds={[signingChannel.claim_id]}
|
|
|
|
loading={isSearching}
|
|
|
|
hideMenu={isMobile}
|
2021-06-22 18:33:18 +02:00
|
|
|
injectedItem={SHOW_ADS && IS_WEB && !isAuthenticated && <Ads small type={'video'} />}
|
2021-04-06 20:59:12 +02:00
|
|
|
empty={__('No related content found')}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
2020-08-25 15:49:19 +02:00
|
|
|
}
|
|
|
|
/>
|
|
|
|
);
|
2021-06-28 10:38:48 +02:00
|
|
|
}, areEqual);
|
|
|
|
|
|
|
|
function areEqual(prevProps: Props, nextProps: Props) {
|
|
|
|
const a = prevProps;
|
|
|
|
const b = nextProps;
|
|
|
|
|
|
|
|
if (
|
|
|
|
a.uri !== b.uri ||
|
|
|
|
a.nextRecommendedUri !== b.nextRecommendedUri ||
|
|
|
|
a.isAuthenticated !== b.isAuthenticated ||
|
|
|
|
a.isSearching !== b.isSearching ||
|
|
|
|
a.mature !== b.mature ||
|
|
|
|
(a.recommendedContent && !b.recommendedContent) ||
|
|
|
|
(!a.recommendedContent && b.recommendedContent) ||
|
|
|
|
(a.claim && !b.claim) ||
|
|
|
|
(!a.claim && b.claim)
|
|
|
|
) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a.claim && b.claim && a.claim.claim_id !== b.claim.claim_id) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a.recommendedContent && b.recommendedContent) {
|
|
|
|
if (a.recommendedContent.length !== b.recommendedContent.length) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
let i = a.recommendedContent.length;
|
|
|
|
while (i--) {
|
|
|
|
if (a.recommendedContent[i] !== b.recommendedContent[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2018-07-25 02:50:04 +02:00
|
|
|
}
|