fix: completed cycle issue transfer validation (#5494)
This commit is contained in:
parent
6c3a8a9647
commit
e9f486eec6
2 changed files with 10 additions and 31 deletions
|
|
@ -1,44 +1,17 @@
|
|||
"use client";
|
||||
|
||||
import React from "react";
|
||||
|
||||
import isEmpty from "lodash/isEmpty";
|
||||
import { useParams } from "next/navigation";
|
||||
|
||||
import useSWR from "swr";
|
||||
|
||||
// component
|
||||
import { AlertCircle } from "lucide-react";
|
||||
// ui
|
||||
import { Button, TransferIcon } from "@plane/ui";
|
||||
// icon
|
||||
// services
|
||||
import { CYCLE_DETAILS } from "@/constants/fetch-keys";
|
||||
import { CycleService } from "@/services/cycle.service";
|
||||
// fetch-key
|
||||
|
||||
type Props = {
|
||||
handleClick: () => void;
|
||||
canTransferIssues?: boolean;
|
||||
disabled?: boolean;
|
||||
};
|
||||
|
||||
const cycleService = new CycleService();
|
||||
|
||||
export const TransferIssues: React.FC<Props> = (props) => {
|
||||
const { handleClick, disabled = false } = props;
|
||||
|
||||
const { workspaceSlug, projectId, cycleId } = useParams();
|
||||
|
||||
const { data: cycleDetails } = useSWR(
|
||||
cycleId ? CYCLE_DETAILS(cycleId as string) : null,
|
||||
workspaceSlug && projectId && cycleId
|
||||
? () => cycleService.getCycleDetails(workspaceSlug as string, projectId as string, cycleId as string)
|
||||
: null
|
||||
);
|
||||
|
||||
const transferableIssuesCount = cycleDetails
|
||||
? cycleDetails.backlog_issues + cycleDetails.unstarted_issues + cycleDetails.started_issues
|
||||
: 0;
|
||||
|
||||
const { handleClick, canTransferIssues = false, disabled = false } = props;
|
||||
return (
|
||||
<div className="-mt-2 mb-4 flex items-center justify-between px-4 pt-6">
|
||||
<div className="flex items-center gap-2 text-sm text-custom-text-200">
|
||||
|
|
@ -46,7 +19,7 @@ export const TransferIssues: React.FC<Props> = (props) => {
|
|||
<span>Completed cycles are not editable.</span>
|
||||
</div>
|
||||
|
||||
{isEmpty(cycleDetails?.progress_snapshot) && transferableIssuesCount > 0 && (
|
||||
{canTransferIssues && (
|
||||
<div>
|
||||
<Button
|
||||
variant="primary"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue