"use client"; import { useState, useEffect } from "react"; import { observer } from "mobx-react-lite"; import { Tooltip } from "@plane/ui"; // hooks import { useIssueDetails, useUser } from "@/hooks/store"; export const IssueVotes: React.FC = observer((props: any) => { const { workspaceSlug, projectId } = props; // states const [isSubmitting, setIsSubmitting] = useState(false); const issueDetailsStore = useIssueDetails(); const { data: user, fetchCurrentUser } = useUser(); const issueId = issueDetailsStore.peekId; const votes = issueId ? issueDetailsStore.details[issueId]?.votes : []; const allUpVotes = votes?.filter((vote) => vote.vote === 1); const allDownVotes = votes?.filter((vote) => vote.vote === -1); const isUpVotedByUser = allUpVotes?.some((vote) => vote.actor === user?.id); const isDownVotedByUser = allDownVotes?.some((vote) => vote.actor === user?.id); const handleVote = async (e: any, voteValue: 1 | -1) => { if (!workspaceSlug || !projectId || !issueId) return; setIsSubmitting(true); const actionPerformed = votes?.find((vote) => vote.actor === user?.id && vote.vote === voteValue); if (actionPerformed) await issueDetailsStore.removeIssueVote(workspaceSlug.toString(), projectId.toString(), issueId); else await issueDetailsStore.addIssueVote(workspaceSlug.toString(), projectId.toString(), issueId, { vote: voteValue, }); setIsSubmitting(false); }; useEffect(() => { if (user) return; fetchCurrentUser(); }, [user, fetchCurrentUser]); const VOTES_LIMIT = 1000; return (
{/* upvote button 👇 */} {allUpVotes.length > 0 ? ( <> {allUpVotes .map((r) => r.actor_detail.display_name) .splice(0, VOTES_LIMIT) .join(", ")} {allUpVotes.length > VOTES_LIMIT && " and " + (allUpVotes.length - VOTES_LIMIT) + " more"} ) : ( "No upvotes yet" )}
} > {/* downvote button 👇 */} {allDownVotes.length > 0 ? ( <> {allDownVotes .map((r) => r.actor_detail.display_name) .splice(0, VOTES_LIMIT) .join(", ")} {allDownVotes.length > VOTES_LIMIT && " and " + (allDownVotes.length - VOTES_LIMIT) + " more"} ) : ( "No downvotes yet" )} } > ); });