import { FC, useMemo } from "react"; import { observer } from "mobx-react-lite"; // components import { ReactionSelector } from "./reaction-selector"; // hooks import { useIssueDetail } from "hooks/store"; import useToast from "hooks/use-toast"; // types import { IUser } from "@plane/types"; import { renderEmoji } from "helpers/emoji.helper"; export type TIssueReaction = { workspaceSlug: string; projectId: string; issueId: string; currentUser: IUser; }; export const IssueReaction: FC = observer((props) => { const { workspaceSlug, projectId, issueId, currentUser } = props; // hooks const { reaction: { getReactionsByIssueId, reactionsByUser }, createReaction, removeReaction, } = useIssueDetail(); const { setToastAlert } = useToast(); const reactionIds = getReactionsByIssueId(issueId); const userReactions = reactionsByUser(issueId, currentUser.id).map((r) => r.reaction); const issueReactionOperations = useMemo( () => ({ create: async (reaction: string) => { try { if (!workspaceSlug || !projectId || !issueId) throw new Error("Missing fields"); await createReaction(workspaceSlug, projectId, issueId, reaction); setToastAlert({ title: "Reaction created successfully", type: "success", message: "Reaction created successfully", }); } catch (error) { setToastAlert({ title: "Reaction creation failed", type: "error", message: "Reaction creation failed", }); } }, remove: async (reaction: string) => { try { if (!workspaceSlug || !projectId || !issueId || !currentUser?.id) throw new Error("Missing fields"); await removeReaction(workspaceSlug, projectId, issueId, reaction, currentUser.id); setToastAlert({ title: "Reaction removed successfully", type: "success", message: "Reaction removed successfully", }); } catch (error) { setToastAlert({ title: "Reaction remove failed", type: "error", message: "Reaction remove failed", }); } }, react: async (reaction: string) => { if (userReactions.includes(reaction)) await issueReactionOperations.remove(reaction); else await issueReactionOperations.create(reaction); }, }), [workspaceSlug, projectId, issueId, currentUser, createReaction, removeReaction, setToastAlert, userReactions] ); return (
{reactionIds && Object.keys(reactionIds || {}).map( (reaction) => reactionIds[reaction]?.length > 0 && ( <> ) )}
); });