mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
2988d5e429
* chore: handled redirection when user is not logged in * dev: handle url redirection in space app * dev: remove user from redis on successful code matching
140 lines
4.7 KiB
TypeScript
140 lines
4.7 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useEffect } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { usePathname, useRouter, useSearchParams } from "next/navigation";
|
|
import { Tooltip } from "@plane/ui";
|
|
// helpers
|
|
import { queryParamGenerator } from "@/helpers/query-param-generator";
|
|
// hooks
|
|
import { useIssueDetails, useUser } from "@/hooks/store";
|
|
|
|
export const IssueVotes: React.FC = observer((props: any) => {
|
|
const router = useRouter();
|
|
const pathName = usePathname();
|
|
const searchParams = useSearchParams();
|
|
// query params
|
|
const peekId = searchParams.get("peekId") || undefined;
|
|
const board = searchParams.get("board") || undefined;
|
|
const state = searchParams.get("state") || undefined;
|
|
const priority = searchParams.get("priority") || undefined;
|
|
const labels = searchParams.get("labels") || undefined;
|
|
|
|
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;
|
|
|
|
// derived values
|
|
const { queryParam } = queryParamGenerator({ peekId, board, state, priority, labels });
|
|
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
{/* upvote button 👇 */}
|
|
<Tooltip
|
|
tooltipContent={
|
|
<div>
|
|
{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"
|
|
)}
|
|
</div>
|
|
}
|
|
>
|
|
<button
|
|
type="button"
|
|
disabled={isSubmitting}
|
|
onClick={(e) => {
|
|
if (user) handleVote(e, 1);
|
|
else router.push(`/?next_path=${pathName}?${queryParam}`);
|
|
}}
|
|
className={`flex items-center justify-center gap-x-1 overflow-hidden rounded border px-2 focus:outline-none ${
|
|
isUpVotedByUser ? "border-custom-primary-200 text-custom-primary-200" : "border-custom-border-300"
|
|
}`}
|
|
>
|
|
<span className="material-symbols-rounded !m-0 !p-0 text-base">arrow_upward_alt</span>
|
|
<span className="text-sm font-normal transition-opacity ease-in-out">{allUpVotes.length}</span>
|
|
</button>
|
|
</Tooltip>
|
|
|
|
{/* downvote button 👇 */}
|
|
<Tooltip
|
|
tooltipContent={
|
|
<div>
|
|
{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"
|
|
)}
|
|
</div>
|
|
}
|
|
>
|
|
<button
|
|
type="button"
|
|
disabled={isSubmitting}
|
|
onClick={(e) => {
|
|
if (user) handleVote(e, -1);
|
|
else router.push(`/?next_path=${pathName}?${queryParam}`);
|
|
}}
|
|
className={`flex items-center justify-center gap-x-1 overflow-hidden rounded border px-2 focus:outline-none ${
|
|
isDownVotedByUser ? "border-red-600 text-red-600" : "border-custom-border-300"
|
|
}`}
|
|
>
|
|
<span className="material-symbols-rounded !m-0 !p-0 text-base">arrow_downward_alt</span>
|
|
<span className="text-sm font-normal transition-opacity ease-in-out">{allDownVotes.length}</span>
|
|
</button>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
});
|