2023-04-03 10:27:52 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
// component
|
|
|
|
import { PrimaryButton, Tooltip } from "components/ui";
|
|
|
|
// icon
|
|
|
|
import { ExclamationIcon, TransferIcon } from "components/icons";
|
|
|
|
// services
|
|
|
|
import cycleServices from "services/cycles.service";
|
|
|
|
// fetch-key
|
|
|
|
import { CYCLE_DETAILS } from "constants/fetch-keys";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
handleClick: () => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const TransferIssues: React.FC<Props> = ({ handleClick }) => {
|
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId, cycleId } = router.query;
|
|
|
|
|
|
|
|
const { data: cycleDetails } = useSWR(
|
|
|
|
cycleId ? CYCLE_DETAILS(cycleId as string) : null,
|
|
|
|
workspaceSlug && projectId && cycleId
|
|
|
|
? () =>
|
|
|
|
cycleServices.getCycleDetails(
|
|
|
|
workspaceSlug as string,
|
|
|
|
projectId as string,
|
|
|
|
cycleId as string
|
|
|
|
)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
const transferableIssuesCount = cycleDetails
|
|
|
|
? cycleDetails.backlog_issues + cycleDetails.unstarted_issues + cycleDetails.started_issues
|
|
|
|
: 0;
|
|
|
|
return (
|
2023-05-11 12:08:46 +00:00
|
|
|
<div className="-mt-2 mb-4 flex items-center justify-between px-8 pt-6">
|
2023-07-10 07:17:00 +00:00
|
|
|
<div className="flex items-center gap-2 text-sm text-custom-text-200">
|
|
|
|
<ExclamationIcon height={14} width={14} className="fill-current text-custom-text-200" />
|
2023-04-03 10:27:52 +00:00
|
|
|
<span>Completed cycles are not editable.</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{transferableIssuesCount > 0 && (
|
|
|
|
<div>
|
|
|
|
<PrimaryButton onClick={handleClick} className="flex items-center gap-3 rounded-lg">
|
2023-05-02 14:30:33 +00:00
|
|
|
<TransferIcon className="h-4 w-4" color="white" />
|
2023-04-03 10:27:52 +00:00
|
|
|
<span className="text-white">Transfer Issues</span>
|
|
|
|
</PrimaryButton>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|