forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
57 lines
1.7 KiB
TypeScript
57 lines
1.7 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 px-8 pt-6">
|
|
<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" />
|
|
<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>
|
|
);
|
|
};
|