2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
2020-01-02 21:36:03 +01:00
|
|
|
import * as ICONS from 'constants/icons';
|
2020-02-26 20:14:10 +01:00
|
|
|
import React, { useRef } from 'react';
|
2018-03-26 23:32:43 +02:00
|
|
|
import Page from 'component/page';
|
2020-02-26 20:14:10 +01:00
|
|
|
import ClaimListDiscover from 'component/claimListDiscover';
|
|
|
|
import Button from 'component/button';
|
|
|
|
import useHover from 'effects/use-hover';
|
2020-05-21 17:38:28 +02:00
|
|
|
import useIsMobile from 'effects/use-is-mobile';
|
2020-02-26 20:14:10 +01:00
|
|
|
import analytics from 'analytics';
|
|
|
|
import HiddenNsfw from 'component/common/hidden-nsfw';
|
2020-01-02 21:36:03 +01:00
|
|
|
import Icon from 'component/common/icon';
|
2020-03-12 02:43:52 +01:00
|
|
|
import * as CS from 'constants/claim_search';
|
2020-05-07 20:44:11 +02:00
|
|
|
import Ads from 'web/component/ads';
|
2019-06-28 09:33:07 +02:00
|
|
|
|
2020-02-26 20:14:10 +01:00
|
|
|
type Props = {
|
|
|
|
location: { search: string },
|
|
|
|
followedTags: Array<Tag>,
|
2020-03-31 22:30:56 +02:00
|
|
|
repostedUri: string,
|
|
|
|
repostedClaim: ?GenericClaim,
|
2020-03-10 00:46:37 +01:00
|
|
|
doToggleTagFollowDesktop: string => void,
|
2020-03-31 22:30:56 +02:00
|
|
|
doResolveUri: string => void,
|
2020-03-26 22:47:07 +01:00
|
|
|
isAuthenticated: boolean,
|
2020-02-26 20:14:10 +01:00
|
|
|
};
|
|
|
|
|
2020-03-24 17:31:23 +01:00
|
|
|
function DiscoverPage(props: Props) {
|
2020-02-26 20:14:10 +01:00
|
|
|
const {
|
|
|
|
location: { search },
|
|
|
|
followedTags,
|
2020-03-31 22:30:56 +02:00
|
|
|
repostedClaim,
|
|
|
|
repostedUri,
|
2020-03-10 00:46:37 +01:00
|
|
|
doToggleTagFollowDesktop,
|
2020-03-31 22:30:56 +02:00
|
|
|
doResolveUri,
|
2020-03-26 22:47:07 +01:00
|
|
|
isAuthenticated,
|
2020-02-26 20:14:10 +01:00
|
|
|
} = props;
|
|
|
|
const buttonRef = useRef();
|
|
|
|
const isHovering = useHover(buttonRef);
|
2020-05-21 17:38:28 +02:00
|
|
|
const isMobile = useIsMobile();
|
2020-02-26 20:14:10 +01:00
|
|
|
|
|
|
|
const urlParams = new URLSearchParams(search);
|
|
|
|
const claimType = urlParams.get('claim_type');
|
2020-03-12 02:43:52 +01:00
|
|
|
const tagsQuery = urlParams.get('t') || null;
|
|
|
|
const tags = tagsQuery ? tagsQuery.split(',') : null;
|
2020-03-31 22:30:56 +02:00
|
|
|
const repostedClaimIsResolved = repostedUri && repostedClaim;
|
2020-03-19 17:54:37 +01:00
|
|
|
|
2020-02-26 20:14:10 +01:00
|
|
|
// Eventually allow more than one tag on this page
|
|
|
|
// Restricting to one to make follow/unfollow simpler
|
2020-03-12 02:43:52 +01:00
|
|
|
const tag = (tags && tags[0]) || null;
|
2020-02-26 20:14:10 +01:00
|
|
|
|
|
|
|
const isFollowing = followedTags.map(({ name }) => name).includes(tag);
|
|
|
|
let label = isFollowing ? __('Following') : __('Follow');
|
|
|
|
if (isHovering && isFollowing) {
|
|
|
|
label = __('Unfollow');
|
|
|
|
}
|
|
|
|
|
2020-03-31 22:30:56 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (repostedUri && !repostedClaimIsResolved) {
|
|
|
|
doResolveUri(repostedUri);
|
|
|
|
}
|
|
|
|
}, [repostedUri, repostedClaimIsResolved, doResolveUri]);
|
|
|
|
|
2020-02-26 20:14:10 +01:00
|
|
|
function handleFollowClick() {
|
2020-03-12 02:43:52 +01:00
|
|
|
if (tag) {
|
|
|
|
doToggleTagFollowDesktop(tag);
|
2020-02-26 20:14:10 +01:00
|
|
|
|
2020-03-12 02:43:52 +01:00
|
|
|
const nowFollowing = !isFollowing;
|
|
|
|
analytics.tagFollowEvent(tag, nowFollowing, 'tag-page');
|
|
|
|
}
|
2020-02-26 20:14:10 +01:00
|
|
|
}
|
|
|
|
|
2020-03-19 17:54:37 +01:00
|
|
|
let headerLabel;
|
2020-03-31 22:30:56 +02:00
|
|
|
if (repostedClaim) {
|
|
|
|
headerLabel = __('Reposts of %uri%', { uri: repostedUri });
|
2020-03-19 17:54:37 +01:00
|
|
|
} else if (tag) {
|
|
|
|
headerLabel = (
|
|
|
|
<span>
|
|
|
|
<Icon icon={ICONS.TAG} size={10} />
|
2020-04-29 21:10:58 +02:00
|
|
|
{(tag === CS.TAGS_ALL && __('All Content')) || (tag === CS.TAGS_FOLLOWED && __('Followed Tags')) || tag}
|
2020-03-19 17:54:37 +01:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
headerLabel = (
|
|
|
|
<span>
|
|
|
|
<Icon icon={ICONS.DISCOVER} size={10} />
|
|
|
|
{__('All Content')}
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
return (
|
2020-05-08 18:48:58 +02:00
|
|
|
<Page noFooter>
|
2020-01-02 21:36:03 +01:00
|
|
|
<ClaimListDiscover
|
2020-02-29 00:13:49 +01:00
|
|
|
claimType={claimType ? [claimType] : undefined}
|
2020-03-19 17:54:37 +01:00
|
|
|
headerLabel={headerLabel}
|
|
|
|
tags={tags}
|
2020-02-26 20:14:10 +01:00
|
|
|
hiddenNsfwMessage={<HiddenNsfw type="page" />}
|
2020-03-31 22:30:56 +02:00
|
|
|
repostedClaimId={repostedClaim ? repostedClaim.claim_id : null}
|
2020-03-26 22:47:07 +01:00
|
|
|
injectedItem={!isAuthenticated && IS_WEB && <Ads type="video" />}
|
2020-02-26 20:14:10 +01:00
|
|
|
meta={
|
2020-05-21 17:38:28 +02:00
|
|
|
tag &&
|
|
|
|
!isMobile && (
|
2020-02-26 20:14:10 +01:00
|
|
|
<Button
|
|
|
|
ref={buttonRef}
|
|
|
|
button="alt"
|
|
|
|
icon={ICONS.SUBSCRIBE}
|
|
|
|
iconColor="red"
|
|
|
|
onClick={handleFollowClick}
|
|
|
|
requiresAuth={IS_WEB}
|
|
|
|
label={label}
|
|
|
|
/>
|
|
|
|
)
|
2020-01-02 21:36:03 +01:00
|
|
|
}
|
|
|
|
/>
|
2019-06-11 20:10:58 +02:00
|
|
|
</Page>
|
|
|
|
);
|
2017-05-04 05:44:08 +02:00
|
|
|
}
|
|
|
|
|
2020-03-24 17:31:23 +01:00
|
|
|
export default DiscoverPage;
|