import React, { useEffect } from "react"; import { observer } from "mobx-react-lite"; import { useRouter } from "next/router"; import { TwitterPicker } from "react-color"; import { useForm, Controller } from "react-hook-form"; import { Popover, Transition } from "@headlessui/react"; // ui import { Button, CustomSelect, Input, Tooltip, TOAST_TYPE, setToast } from "@plane/ui"; // constants import { STATE_CREATED, STATE_UPDATED } from "constants/event-tracker"; import { GROUP_CHOICES } from "constants/project"; // hooks import { useEventTracker, useProjectState } from "hooks/store"; import { usePlatformOS } from "hooks/use-platform-os"; // types import type { IState } from "@plane/types"; type Props = { data: IState | null; onClose: () => void; groupLength: number; selectedGroup: StateGroup | null; }; export type StateGroup = "backlog" | "unstarted" | "started" | "completed" | "cancelled" | null; const defaultValues: Partial = { name: "", description: "", color: "rgb(var(--color-text-200))", group: "backlog", }; export const CreateUpdateStateInline: React.FC = observer((props) => { const { data, onClose, selectedGroup, groupLength } = props; // router const router = useRouter(); const { workspaceSlug, projectId } = router.query; // store hooks const { captureProjectStateEvent, setTrackElement } = useEventTracker(); const { createState, updateState } = useProjectState(); const { isMobile } = usePlatformOS(); // form info const { handleSubmit, formState: { errors, isSubmitting }, watch, reset, control, } = useForm({ defaultValues, }); /** * @description pre-populate form with data if data is present */ useEffect(() => { if (!data) return; reset(data); }, [data, reset]); /** * @description pre-populate form with default values if data is not present */ useEffect(() => { if (data) return; reset({ ...defaultValues, group: selectedGroup ?? "backlog", }); }, [selectedGroup, data, reset]); const handleClose = () => { onClose(); reset({ name: "", color: "#000000", group: "backlog" }); }; const handleCreate = async (formData: IState) => { if (!workspaceSlug || !projectId || isSubmitting) return; await createState(workspaceSlug.toString(), projectId.toString(), formData) .then((res) => { handleClose(); setToast({ type: TOAST_TYPE.SUCCESS, title: "Success!", message: "State created successfully.", }); captureProjectStateEvent({ eventName: STATE_CREATED, payload: { ...res, state: "SUCCESS", element: "Project settings states page", }, }); }) .catch((error) => { if (error.status === 400) setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "State with that name already exists. Please try again with another name.", }); else setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "State could not be created. Please try again.", }); captureProjectStateEvent({ eventName: STATE_CREATED, payload: { ...formData, state: "FAILED", element: "Project settings states page", }, }); }); }; const handleUpdate = async (formData: IState) => { if (!workspaceSlug || !projectId || !data || isSubmitting) return; await updateState(workspaceSlug.toString(), projectId.toString(), data.id, formData) .then((res) => { handleClose(); captureProjectStateEvent({ eventName: STATE_UPDATED, payload: { ...res, state: "SUCCESS", element: "Project settings states page", }, }); setToast({ type: TOAST_TYPE.SUCCESS, title: "Success!", message: "State updated successfully.", }); }) .catch((error) => { if (error.status === 400) setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "Another state exists with the same name. Please try again with another name.", }); else setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "State could not be updated. Please try again.", }); captureProjectStateEvent({ eventName: STATE_UPDATED, payload: { ...formData, state: "FAILED", element: "Project settings states page", }, }); }); }; const onSubmit = async (formData: IState) => { if (data) await handleUpdate(formData); else await handleCreate(formData); }; return (
{({ open }) => ( <> {watch("color") && watch("color") !== "" && ( )} ( onChange(value.hex)} /> )} /> )}
( )} /> {data && ( (
k === value.toString()) ? GROUP_CHOICES[value.toString() as keyof typeof GROUP_CHOICES] : "Select group" } input > {Object.keys(GROUP_CHOICES).map((key) => ( {GROUP_CHOICES[key as keyof typeof GROUP_CHOICES]} ))}
)} /> )} ( )} /> ); });