import { FC, FormEvent, useEffect, useState } from "react"; import { observer } from "mobx-react"; import { Check, Info, X } from "lucide-react"; import { TEstimatePointsObject, TEstimateSystemKeys } from "@plane/types"; import { Spinner, Tooltip } from "@plane/ui"; // constants import { EEstimateSystem } from "@/constants/estimates"; // helpers import { cn } from "@/helpers/common.helper"; import { isEstimatePointValuesRepeated } from "@/helpers/estimates"; // hooks import { useEstimatePoint } from "@/hooks/store"; type TEstimatePointUpdate = { workspaceSlug: string; projectId: string; estimateId: string | undefined; estimatePointId: string | undefined; estimateType: TEstimateSystemKeys; estimatePoints: TEstimatePointsObject[]; estimatePoint: TEstimatePointsObject; handleEstimatePointValueUpdate: (estimateValue: string) => void; closeCallBack: () => void; }; export const EstimatePointUpdate: FC = observer((props) => { const { workspaceSlug, projectId, estimateId, estimatePointId, estimateType, estimatePoints, estimatePoint, handleEstimatePointValueUpdate, closeCallBack, } = props; // hooks const { updateEstimatePoint } = useEstimatePoint(estimateId, estimatePointId); // states const [loader, setLoader] = useState(false); const [estimateInputValue, setEstimateInputValue] = useState(undefined); const [error, setError] = useState(undefined); useEffect(() => { if (estimateInputValue === undefined && estimatePoint) setEstimateInputValue(estimatePoint?.value || ""); }, [estimateInputValue, estimatePoint]); const handleSuccess = (value: string) => { handleEstimatePointValueUpdate(value); setEstimateInputValue(""); closeCallBack(); }; const handleClose = () => { setEstimateInputValue(""); closeCallBack(); }; const handleUpdate = async (event: FormEvent) => { event.preventDefault(); if (!workspaceSlug || !projectId) return; setError(undefined); if (estimateInputValue) { const currentEstimateType: EEstimateSystem | undefined = estimateType; let isEstimateValid = false; const currentEstimatePointValues = estimatePoints .map((point) => point?.value || undefined) .filter((value) => value != undefined) as string[]; const isRepeated = (estimateType && isEstimatePointValuesRepeated(currentEstimatePointValues, estimateType, estimateInputValue)) || false; if (!isRepeated) { if (currentEstimateType && [(EEstimateSystem.TIME, EEstimateSystem.POINTS)].includes(currentEstimateType)) { if (estimateInputValue && Number(estimateInputValue) && Number(estimateInputValue) >= 0) { isEstimateValid = true; } } else if (currentEstimateType && currentEstimateType === EEstimateSystem.CATEGORIES) { if (estimateInputValue && estimateInputValue.length > 0) { isEstimateValid = true; } } if (isEstimateValid) { if (estimateId != undefined) { try { setLoader(true); const payload = { value: estimateInputValue, }; await updateEstimatePoint(workspaceSlug, projectId, payload); setLoader(false); setError(undefined); handleClose(); } catch { setLoader(false); setError("something went wrong. please try again later"); } } else { handleSuccess(estimateInputValue); setError("Please fill the input field"); } } else { setLoader(false); setError("please enter a valid estimate value"); } } else setError("Estimate point values cannot be repeated"); } else setError("Please fill the input field"); }; return (
setEstimateInputValue(e.target.value)} className="border-none focus:ring-0 focus:border-0 focus:outline-none p-2.5 w-full bg-transparent" placeholder="Enter estimate point" autoFocus /> {error && ( <>
)}
); });