ad19495702
Naomi comment websockets increase slow mode time to 5 seconds fix to prevent duplicate comments update livestream details fix channel pin electron boom fix rebase prune unused icons updating meme updating meme update livestream for naomi fix rebase DigitalCashNetwork remove electroboom pin Slavguns Joel So he can edit his claims add streamTypes param to claimTilesDiscover so following section can search for all types of content fix typo
117 lines
3.3 KiB
JavaScript
117 lines
3.3 KiB
JavaScript
// @flow
|
|
import * as REACTION_TYPES from 'constants/reactions';
|
|
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';
|
|
|
|
type Props = {
|
|
claim: StreamClaim,
|
|
doFetchReactions: (string) => void,
|
|
doReactionLike: (string) => void,
|
|
doReactionDislike: (string) => void,
|
|
uri: string,
|
|
likeCount: number,
|
|
dislikeCount: number,
|
|
myReaction: ?string,
|
|
livestream?: boolean,
|
|
};
|
|
|
|
function FileReactions(props: Props) {
|
|
const {
|
|
claim,
|
|
uri,
|
|
doFetchReactions,
|
|
doReactionLike,
|
|
doReactionDislike,
|
|
myReaction,
|
|
likeCount,
|
|
dislikeCount,
|
|
livestream,
|
|
} = props;
|
|
const claimId = claim && claim.claim_id;
|
|
const channel = claim && claim.signing_channel && claim.signing_channel.name;
|
|
|
|
React.useEffect(() => {
|
|
function fetchReactions() {
|
|
doFetchReactions(claimId);
|
|
}
|
|
|
|
let fetchInterval;
|
|
if (claimId) {
|
|
fetchReactions();
|
|
|
|
if (livestream) {
|
|
fetchInterval = setInterval(fetchReactions, 10000);
|
|
}
|
|
}
|
|
|
|
return () => {
|
|
if (fetchInterval) {
|
|
clearInterval(fetchInterval);
|
|
}
|
|
};
|
|
}, [claimId, doFetchReactions, livestream]);
|
|
|
|
return (
|
|
<>
|
|
{channel && (
|
|
<NudgeFloating
|
|
name="nudge:support-acknowledge"
|
|
text={__('Let %channel% know you enjoyed this!', { channel })}
|
|
/>
|
|
)}
|
|
|
|
<Button
|
|
title={__('I like this')}
|
|
requiresAuth={IS_WEB}
|
|
authSrc="filereaction_like"
|
|
className={classnames('button--file-action', { 'button--fire': myReaction === REACTION_TYPES.LIKE })}
|
|
label={
|
|
<>
|
|
{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)}
|
|
</>
|
|
}
|
|
iconSize={18}
|
|
icon={myReaction === REACTION_TYPES.LIKE ? ICONS.FIRE_ACTIVE : ICONS.FIRE}
|
|
onClick={() => doReactionLike(uri)}
|
|
/>
|
|
<Button
|
|
requiresAuth={IS_WEB}
|
|
authSrc={'filereaction_dislike'}
|
|
title={__('I dislike this')}
|
|
className={classnames('button--file-action', { 'button--slime': myReaction === REACTION_TYPES.DISLIKE })}
|
|
label={
|
|
<>
|
|
{myReaction === REACTION_TYPES.DISLIKE && (
|
|
<>
|
|
<div className="button__slime-stain" />
|
|
<div className="button__slime-drop1" />
|
|
<div className="button__slime-drop2" />
|
|
</>
|
|
)}
|
|
{formatNumberWithCommas(dislikeCount, 0)}
|
|
</>
|
|
}
|
|
iconSize={18}
|
|
icon={myReaction === REACTION_TYPES.DISLIKE ? ICONS.SLIME_ACTIVE : ICONS.SLIME}
|
|
onClick={() => doReactionDislike(uri)}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default FileReactions;
|