forked from github/plane
483c49d0ff
* style: sub issue theming * style: shortcut modal theming * style: blocking and blocked by modal theming * fix: filter labels dropdown width fix * style: display properties * chore: workspace invite * style: invite co workers theming * style: create workspace theming * style: attachment theming * style: workspace sidebar theming * style: issue property theming * style: create module modal lead icon * style: label list modal theming * delete attachment and member modal theming * style: transfer issue modal * style: delete estimate modal theming * style: module form status * style: delete state modal theming * style: shortcut modal * style: onboarding logo * style: onboarding command menu
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
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 (
|
|
<div className="-mt-2 mb-4 flex items-center justify-between">
|
|
<div className="flex items-center gap-2 text-sm text-brand-secondary">
|
|
<ExclamationIcon height={14} width={14} />
|
|
<span>Completed cycles are not editable.</span>
|
|
</div>
|
|
|
|
{transferableIssuesCount > 0 && (
|
|
<div>
|
|
<PrimaryButton onClick={handleClick} className="flex items-center gap-3 rounded-lg">
|
|
<TransferIcon className="h-4 w-4" color="white" />
|
|
<span className="text-white">Transfer Issues</span>
|
|
</PrimaryButton>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|