import React, { useEffect, useState } from "react"; import { useRouter } from "next/router"; import Image from "next/image"; import useSWR, { mutate } from "swr"; // react-hook-form import { useForm } from "react-hook-form"; import { Disclosure, Popover, Transition } from "@headlessui/react"; import DatePicker from "react-datepicker"; // icons import { CalendarDaysIcon, ChartPieIcon, ArrowLongRightIcon, TrashIcon, UserCircleIcon, ChevronDownIcon, DocumentIcon, LinkIcon, } from "@heroicons/react/24/outline"; // ui import { CustomMenu, Loader, ProgressBar } from "components/ui"; // hooks import useToast from "hooks/use-toast"; // services import cyclesService from "services/cycles.service"; // components import { SidebarProgressStats } from "components/core"; import ProgressChart from "components/core/sidebar/progress-chart"; import { DeleteCycleModal } from "components/cycles"; // icons import { ExclamationIcon } from "components/icons"; // helpers import { capitalizeFirstLetter, copyTextToClipboard } from "helpers/string.helper"; import { isDateRangeValid, renderDateFormat, renderShortDate } from "helpers/date-time.helper"; // types import { ICycle, IIssue } from "types"; // fetch-keys import { CYCLE_DETAILS, CYCLE_ISSUES } from "constants/fetch-keys"; type Props = { cycle: ICycle | undefined; isOpen: boolean; cycleStatus: string; isCompleted: boolean; }; export const CycleDetailsSidebar: React.FC = ({ cycle, isOpen, cycleStatus, isCompleted, }) => { const [cycleDeleteModal, setCycleDeleteModal] = useState(false); const router = useRouter(); const { workspaceSlug, projectId, cycleId } = router.query; const { setToastAlert } = useToast(); const defaultValues: Partial = { start_date: new Date().toString(), end_date: new Date().toString(), }; const { data: issues } = useSWR( workspaceSlug && projectId && cycleId ? CYCLE_ISSUES(cycleId as string) : null, workspaceSlug && projectId && cycleId ? () => cyclesService.getCycleIssues( workspaceSlug as string, projectId as string, cycleId as string ) : null ); const { reset, watch } = useForm({ defaultValues, }); const submitChanges = (data: Partial) => { if (!workspaceSlug || !projectId || !cycleId) return; mutate( CYCLE_DETAILS(cycleId as string), (prevData) => ({ ...(prevData as ICycle), ...data }), false ); cyclesService .patchCycle(workspaceSlug as string, projectId as string, cycleId as string, data) .then(() => mutate(CYCLE_DETAILS(cycleId as string))) .catch((e) => console.log(e)); }; const handleCopyText = () => { const originURL = typeof window !== "undefined" && window.location.origin ? window.location.origin : ""; copyTextToClipboard(`${originURL}/${workspaceSlug}/projects/${projectId}/cycles/${cycle?.id}`) .then(() => { setToastAlert({ type: "success", title: "Cycle link copied to clipboard", }); }) .catch(() => { setToastAlert({ type: "error", title: "Some error occurred", }); }); }; useEffect(() => { if (cycle) reset({ ...cycle, }); }, [cycle, reset]); const isStartValid = new Date(`${cycle?.start_date}`) <= new Date(); const isEndValid = new Date(`${cycle?.end_date}`) >= new Date(`${cycle?.start_date}`); const progressPercentage = cycle ? Math.round((cycle.completed_issues / cycle.total_issues) * 100) : null; return ( <>
{cycle ? ( <>
{capitalizeFirstLetter(cycleStatus)}
{({ open }) => ( <> {renderShortDate(new Date(`${cycle?.start_date}`), "Start date")} { if (date && watch("end_date")) { if ( isDateRangeValid(renderDateFormat(date), `${watch("end_date")}`) ) { submitChanges({ start_date: renderDateFormat(date), }); } else { setToastAlert({ type: "error", title: "Error!", message: "The date you have entered is invalid. Please check and enter a valid date.", }); } } }} selectsStart startDate={new Date(`${watch("start_date")}`)} endDate={new Date(`${watch("end_date")}`)} maxDate={new Date(`${watch("end_date")}`)} shouldCloseOnSelect inline /> )} {({ open }) => ( <> {renderShortDate(new Date(`${cycle?.end_date}`), "End date")} { if (watch("start_date") && date) { if ( isDateRangeValid( `${watch("start_date")}`, renderDateFormat(date) ) ) { submitChanges({ end_date: renderDateFormat(date), }); } else { setToastAlert({ type: "error", title: "Error!", message: "The date you have entered is invalid. Please check and enter a valid date.", }); } } }} selectsEnd startDate={new Date(`${watch("start_date")}`)} endDate={new Date(`${watch("end_date")}`)} minDate={new Date(`${watch("start_date")}`)} shouldCloseOnSelect inline /> )}

{cycle.name}

{!isCompleted && ( setCycleDeleteModal(true)}> Delete )} Copy link
{cycle.description}
Lead
{cycle.owned_by.avatar && cycle.owned_by.avatar !== "" ? ( {cycle.owned_by.first_name} ) : ( {cycle.owned_by.first_name.charAt(0)} )} {cycle.owned_by.first_name}
Progress
{cycle.completed_issues}/{cycle.total_issues}
{({ open }) => (
Progress {!open && progressPercentage ? ( {progressPercentage ? `${progressPercentage}%` : ""} ) : ( "" )}
{isStartValid && isEndValid ? ( ) : (
{cycleStatus === "upcoming" ? "Cycle is yet to start." : "Invalid date. Please enter valid date."}
)}
{isStartValid && isEndValid ? (
Pending Issues -{" "} {cycle.total_issues - (cycle.completed_issues + cycle.cancelled_issues)}
Ideal
Current
) : ( "" )}
)}
{({ open }) => (
Other Information
{cycle.total_issues > 0 ? ( ) : (
No issues found. Please add issue.
)}
{cycle.total_issues > 0 ? (
) : ( "" )}
)}
) : (
)}
); };