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

88 lines
2.9 KiB
React
Raw Normal View History

// @flow
2020-10-27 17:24:31 +01:00
import { ENABLE_CREATOR_REACTIONS } from 'config';
2020-10-01 20:43:44 +02:00
import * as ICONS from 'constants/icons';
import * as REACTION_TYPES from 'constants/reactions';
import React from 'react';
import classnames from 'classnames';
import Button from 'component/button';
2020-10-27 17:24:31 +01:00
import ChannelThumbnail from 'component/channelThumbnail';
type Props = {
2020-09-29 16:10:23 +02:00
myReacts: Array<string>,
othersReacts: any,
react: (string, string) => void,
commentId: string,
pendingCommentReacts: Array<string>,
2020-10-27 17:24:31 +01:00
claimIsMine: boolean,
activeChannel: string,
claim: ?ChannelClaim,
};
export default function CommentReactions(props: Props) {
2020-10-27 17:24:31 +01:00
const { myReacts, othersReacts, commentId, react, claimIsMine, claim, activeChannel } = props;
2020-10-28 16:55:10 +01:00
const canCreatorReact =
claim &&
claimIsMine &&
(claim.value_type === 'channel'
? claim.name === activeChannel
: claim.signing_channel && claim.signing_channel.name === activeChannel);
const authorUri =
claim && claim.value_type === 'channel'
? claim.canonical_url
: claim && claim.signing_channel && claim.signing_channel.canonical_url;
2020-09-29 16:10:23 +02:00
2020-10-01 20:43:44 +02:00
const getCountForReact = type => {
let count = 0;
if (othersReacts && othersReacts[type]) {
count += othersReacts[type];
}
if (myReacts && myReacts.includes(type)) {
count += 1;
}
return count;
};
2020-10-27 17:24:31 +01:00
const creatorLiked = getCountForReact(REACTION_TYPES.CREATOR_LIKE) > 0;
2020-10-01 20:43:44 +02:00
return (
<>
<Button
requiresAuth={IS_WEB}
2020-10-01 20:43:44 +02:00
title={__('Upvote')}
icon={ICONS.UPVOTE}
className={classnames('comment__action', {
'comment__action--active': myReacts && myReacts.includes(REACTION_TYPES.LIKE),
})}
disabled={!activeChannel}
2020-10-01 20:43:44 +02:00
onClick={() => react(commentId, REACTION_TYPES.LIKE)}
2020-10-27 17:24:31 +01:00
label={<span className="comment__reaction-count">{getCountForReact(REACTION_TYPES.LIKE)}</span>}
2020-10-01 20:43:44 +02:00
/>
<Button
requiresAuth={IS_WEB}
2020-10-01 20:43:44 +02:00
title={__('Downvote')}
icon={ICONS.DOWNVOTE}
className={classnames('comment__action', {
'comment__action--active': myReacts && myReacts.includes(REACTION_TYPES.DISLIKE),
})}
disabled={!activeChannel}
2020-10-01 20:43:44 +02:00
onClick={() => react(commentId, REACTION_TYPES.DISLIKE)}
2020-10-27 17:24:31 +01:00
label={<span className="comment__reaction-count">{getCountForReact(REACTION_TYPES.DISLIKE)}</span>}
2020-10-01 20:43:44 +02:00
/>
2020-10-27 17:24:31 +01:00
2020-10-28 03:16:46 +01:00
{ENABLE_CREATOR_REACTIONS && (canCreatorReact || creatorLiked) && (
<Button
iconOnly
disabled={!canCreatorReact || !claimIsMine}
requiresAuth={IS_WEB}
title={claimIsMine ? __('You loved this') : __('Creator loved this')}
icon={creatorLiked ? ICONS.CREATOR_LIKE : ICONS.SUBSCRIBE}
className={classnames('comment__action comment__action--creator-like')}
onClick={() => react(commentId, REACTION_TYPES.CREATOR_LIKE)}
>
2020-10-27 17:24:31 +01:00
{creatorLiked && <ChannelThumbnail uri={authorUri} className="comment__creator-like" />}
2020-10-28 03:16:46 +01:00
</Button>
2020-10-27 17:24:31 +01:00
)}
2020-10-01 20:43:44 +02:00
</>
);
}