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

155 lines
3.9 KiB
React
Raw Normal View History

2020-10-02 21:18:53 +02:00
// @flow
2021-07-28 14:09:25 +02:00
import * as REACTION_TYPES from 'constants/reactions';
2020-10-02 21:18:53 +02:00
import * as ICONS from 'constants/icons';
import React from 'react';
import classnames from 'classnames';
import Button from 'component/button';
import { formatNumberWithCommas } from 'util/number';
import NudgeFloating from 'component/nudgeFloating';
import Tooltip from 'component/common/tooltip';
const LIVE_REACTION_FETCH_MS = 1000 * 45;
2020-10-02 21:18:53 +02:00
type Props = {
uri: string,
// redux
claimId?: string,
channelName?: string,
isCollection?: boolean,
2020-10-02 21:18:53 +02:00
likeCount: number,
dislikeCount: number,
myReaction: ?string,
isLivestreamClaim?: boolean,
doFetchReactions: (claimId: ?string) => void,
doReactionLike: (uri: string) => void,
doReactionDislike: (uri: string) => void,
2020-10-02 21:18:53 +02:00
};
export default function FileReactions(props: Props) {
2021-07-28 14:09:25 +02:00
const {
uri,
claimId,
channelName,
isCollection,
2021-07-28 14:09:25 +02:00
myReaction,
likeCount,
dislikeCount,
isLivestreamClaim,
doFetchReactions,
doReactionLike,
doReactionDislike,
2021-07-28 14:09:25 +02:00
} = props;
const likeIcon = myReaction === REACTION_TYPES.LIKE ? ICONS.FIRE_ACTIVE : ICONS.FIRE;
const dislikeIcon = myReaction === REACTION_TYPES.DISLIKE ? ICONS.SLIME_ACTIVE : ICONS.SLIME;
const likeLabel = (
<>
{myReaction === REACTION_TYPES.LIKE && (
<>
<div className="button__fire-glow" />
<div className="button__fire-particle1" />
<div className="button__fire-particle2" />
<div className="button__fire-particle3" />
<div className="button__fire-particle4" />
<div className="button__fire-particle5" />
<div className="button__fire-particle6" />
</>
)}
{formatNumberWithCommas(likeCount, 0)}
</>
);
const dislikeLabel = (
<>
{myReaction === REACTION_TYPES.DISLIKE && (
<>
<div className="button__slime-stain" />
<div className="button__slime-drop1" />
<div className="button__slime-drop2" />
</>
)}
{formatNumberWithCommas(dislikeCount, 0)}
</>
);
2020-10-02 21:18:53 +02:00
React.useEffect(() => {
2021-07-28 14:09:25 +02:00
function fetchReactions() {
2020-10-02 21:18:53 +02:00
doFetchReactions(claimId);
}
2021-07-28 14:09:25 +02:00
let fetchInterval;
if (claimId) {
fetchReactions();
if (isLivestreamClaim) {
fetchInterval = setInterval(fetchReactions, LIVE_REACTION_FETCH_MS);
2021-07-28 14:09:25 +02:00
}
}
return () => {
if (fetchInterval) {
clearInterval(fetchInterval);
}
};
}, [claimId, doFetchReactions, isLivestreamClaim]);
2020-10-02 21:18:53 +02:00
return (
<>
{channelName && !isCollection && (
<NudgeFloating
name="nudge:support-acknowledge"
text={__('Let %channel% know you enjoyed this!', { channel: channelName })}
/>
)}
<FileReaction
2020-10-02 21:18:53 +02:00
title={__('I like this')}
label={likeLabel}
2021-07-28 14:09:25 +02:00
icon={likeIcon}
isActive={myReaction === REACTION_TYPES.LIKE}
activeClassName="button--fire"
2020-10-02 21:18:53 +02:00
onClick={() => doReactionLike(uri)}
/>
<FileReaction
2020-10-02 21:18:53 +02:00
title={__('I dislike this')}
label={dislikeLabel}
2021-07-28 14:09:25 +02:00
icon={dislikeIcon}
isActive={myReaction === REACTION_TYPES.DISLIKE}
activeClassName="button--slime"
2020-10-02 21:18:53 +02:00
onClick={() => doReactionDislike(uri)}
/>
</>
);
}
type ReactionProps = {
title: string,
label: any,
icon: string,
isActive: boolean,
activeClassName: string,
onClick: () => void,
};
const FileReaction = (reactionProps: ReactionProps) => {
const { title, label, icon, isActive, activeClassName, onClick } = reactionProps;
return (
<Tooltip title={title} arrow={false}>
<div className="file-reaction__tooltip-inner">
<Button
requiresAuth
authSrc="filereaction_like"
className={classnames('button--file-action', { [activeClassName]: isActive })}
label={label}
iconSize={18}
icon={icon}
onClick={onClick}
/>
</div>
</Tooltip>
);
};