import React from "react"; import { useRouter } from "next/router"; // mobx import { observer } from "mobx-react-lite"; import { useMobxStore } from "lib/mobx/store-provider"; // ui import { ReactionSelector, Tooltip } from "components/ui"; // helpers import { groupReactions, renderEmoji } from "helpers/emoji.helper"; type Props = { commentId: string; projectId: string; }; export const CommentReactions: React.FC = observer((props) => { const { commentId, projectId } = props; const router = useRouter(); const { workspace_slug } = router.query; const { issueDetails: issueDetailsStore, user: userStore } = useMobxStore(); const peekId = issueDetailsStore.peekId; const user = userStore.currentUser; const commentReactions = peekId ? issueDetailsStore.details[peekId].comments.find((c) => c.id === commentId)?.comment_reactions : []; const groupedReactions = peekId ? groupReactions(commentReactions ?? [], "reaction") : {}; const userReactions = commentReactions?.filter((r) => r.actor_detail.id === user?.id); const handleAddReaction = (reactionHex: string) => { if (!workspace_slug || !projectId || !peekId) return; issueDetailsStore.addCommentReaction( workspace_slug.toString(), projectId.toString(), peekId, commentId, reactionHex ); }; const handleRemoveReaction = (reactionHex: string) => { if (!workspace_slug || !projectId || !peekId) return; issueDetailsStore.removeCommentReaction( workspace_slug.toString(), projectId.toString(), peekId, commentId, reactionHex ); }; const handleReactionClick = (reactionHex: string) => { const userReaction = userReactions?.find((r) => r.actor_detail.id === user?.id && r.reaction === reactionHex); if (userReaction) handleRemoveReaction(reactionHex); else handleAddReaction(reactionHex); }; return (
{ userStore.requiredLogin(() => { handleReactionClick(value); }); }} position="top" selected={userReactions?.map((r) => r.reaction)} size="md" /> {Object.keys(groupedReactions || {}).map((reaction) => { const reactions = groupedReactions?.[reaction] ?? []; const REACTIONS_LIMIT = 1000; if (reactions.length > 0) return ( {reactions .map((r) => r.actor_detail.display_name) .splice(0, REACTIONS_LIMIT) .join(", ")} {reactions.length > REACTIONS_LIMIT && " and " + (reactions.length - REACTIONS_LIMIT) + " more"}
} > ); })} ); });