"use client"; import { FC, useEffect, useState, FormEvent } from "react"; import { observer } from "mobx-react"; import { Check, Info, X } from "lucide-react"; import { TEstimatePointsObject, TEstimateSystemKeys, TEstimateTypeErrorObject } from "@plane/types"; import { Spinner, TOAST_TYPE, Tooltip, setToast } from "@plane/ui"; // helpers import { cn } from "@/helpers/common.helper"; import { isEstimatePointValuesRepeated } from "@/helpers/estimates"; // hooks import { useEstimatePoint } from "@/hooks/store"; // plane web constants import { EEstimateSystem } from "@/plane-web/constants/estimates"; type TEstimatePointUpdate = { workspaceSlug: string; projectId: string; estimateId: string | undefined; estimatePointId: string | undefined; estimateType: TEstimateSystemKeys; estimatePoints: TEstimatePointsObject[]; estimatePoint: TEstimatePointsObject; handleEstimatePointValueUpdate: (estimateValue: string) => void; closeCallBack: () => void; estimatePointError?: TEstimateTypeErrorObject | undefined; handleEstimatePointError?: (newValue: string, message: string | undefined, mode?: "add" | "delete") => void; }; export const EstimatePointUpdate: FC = observer((props) => { const { workspaceSlug, projectId, estimateId, estimatePointId, estimateType, estimatePoints, estimatePoint, handleEstimatePointValueUpdate, closeCallBack, estimatePointError, handleEstimatePointError, } = props; // hooks const { updateEstimatePoint } = useEstimatePoint(estimateId, estimatePointId); // states const [loader, setLoader] = useState(false); const [estimateInputValue, setEstimateInputValue] = 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 handleEstimateInputValue = (value: string) => { handleEstimatePointError && handleEstimatePointError(value, undefined); setEstimateInputValue(() => value); }; const handleUpdate = async (event: FormEvent) => { event.preventDefault(); if (!workspaceSlug || !projectId) return; handleEstimatePointError && handleEstimatePointError(estimateInputValue || "", undefined, "delete"); if (estimateInputValue) { const currentEstimateType: EEstimateSystem | undefined = estimateType; let isEstimateValid = false; const currentEstimatePointValues = estimatePoints .map((point) => (point?.key != estimatePoint?.key ? 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 && isNaN(Number(estimateInputValue))) { isEstimateValid = true; } } if (isEstimateValid) { if (estimateId != undefined) { if (estimateInputValue === estimatePoint.value) { setLoader(false); handleEstimatePointError && handleEstimatePointError(estimateInputValue, undefined); handleClose(); } else try { setLoader(true); const payload = { value: estimateInputValue, }; await updateEstimatePoint(workspaceSlug, projectId, payload); setLoader(false); handleEstimatePointError && handleEstimatePointError(estimateInputValue, undefined, "delete"); handleClose(); setToast({ type: TOAST_TYPE.SUCCESS, title: "Estimate modified", message: "The estimate point has been updated in your project.", }); } catch { setLoader(false); handleEstimatePointError && handleEstimatePointError( estimateInputValue, "We are unable to process your request, please try again." ); setToast({ type: TOAST_TYPE.ERROR, title: "Estimate modification failed", message: "We were unable to modify the estimate, please try again", }); } } else { handleSuccess(estimateInputValue); } } else { setLoader(false); handleEstimatePointError && handleEstimatePointError( estimateInputValue, [EEstimateSystem.POINTS, EEstimateSystem.TIME].includes(estimateType) ? "Estimate point needs to be a numeric value." : "Estimate point needs to be a character value." ); } } else handleEstimatePointError && handleEstimatePointError(estimateInputValue, "Estimate value already exists."); } else handleEstimatePointError && handleEstimatePointError(estimateInputValue || "", "Estimate value cannot be empty."); }; return (
handleEstimateInputValue(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 /> {estimatePointError?.message && ( <>
)}
{estimateInputValue && estimateInputValue.length > 0 && ( )}
); });