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

59 lines
1.7 KiB
React
Raw Normal View History

// @flow
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';
import usePersistedState from 'effects/use-persisted-state';
type Props = {
2020-09-29 16:10:23 +02:00
myReacts: Array<string>,
othersReacts: any,
react: (string, string) => void,
commentId: string,
pendingCommentReacts: Array<string>,
};
export default function CommentReactions(props: Props) {
const { myReacts, othersReacts, commentId, react } = props;
2020-10-01 20:43:44 +02:00
const [activeChannel] = usePersistedState('comment-channel');
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-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)}
label={getCountForReact(REACTION_TYPES.LIKE)}
/>
<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)}
label={getCountForReact(REACTION_TYPES.DISLIKE)}
/>
</>
);
}