import { FC, useMemo } from "react"; import { observer } from "mobx-react-lite"; // components import { TOAST_TYPE, setToast } from "@plane/ui"; import { renderEmoji } from "helpers/emoji.helper"; import { useIssueDetail } from "hooks/store"; // ui // types import { IUser } from "@plane/types"; import { ReactionSelector } from "./reaction-selector"; export type TIssueCommentReaction = { workspaceSlug: string; projectId: string; commentId: string; currentUser: IUser; }; export const IssueCommentReaction: FC = observer((props) => { const { workspaceSlug, projectId, commentId, currentUser } = props; // hooks const { commentReaction: { getCommentReactionsByCommentId, commentReactionsByUser }, createCommentReaction, removeCommentReaction, } = useIssueDetail(); const reactionIds = getCommentReactionsByCommentId(commentId); const userReactions = commentReactionsByUser(commentId, currentUser.id).map((r) => r.reaction); const issueCommentReactionOperations = useMemo( () => ({ create: async (reaction: string) => { try { if (!workspaceSlug || !projectId || !commentId) throw new Error("Missing fields"); await createCommentReaction(workspaceSlug, projectId, commentId, reaction); setToast({ title: "Reaction created successfully", type: TOAST_TYPE.SUCCESS, message: "Reaction created successfully", }); } catch (error) { setToast({ title: "Reaction creation failed", type: TOAST_TYPE.ERROR, message: "Reaction creation failed", }); } }, remove: async (reaction: string) => { try { if (!workspaceSlug || !projectId || !commentId || !currentUser?.id) throw new Error("Missing fields"); removeCommentReaction(workspaceSlug, projectId, commentId, reaction, currentUser.id); setToast({ title: "Reaction removed successfully", type: TOAST_TYPE.SUCCESS, message: "Reaction removed successfully", }); } catch (error) { setToast({ title: "Reaction remove failed", type: TOAST_TYPE.ERROR, message: "Reaction remove failed", }); } }, react: async (reaction: string) => { if (userReactions.includes(reaction)) await issueCommentReactionOperations.remove(reaction); else await issueCommentReactionOperations.create(reaction); }, }), [workspaceSlug, projectId, commentId, currentUser, createCommentReaction, removeCommentReaction, userReactions] ); return (
{reactionIds && Object.keys(reactionIds || {}).map( (reaction) => reactionIds[reaction]?.length > 0 && ( <> ) )}
); });