import React, { forwardRef, useEffect } from "react"; import { useRouter } from "next/router"; // mobx import { observer } from "mobx-react-lite"; import { useMobxStore } from "lib/mobx/store-provider"; // react-hook-form import { Controller, SubmitHandler, useForm } from "react-hook-form"; // hooks import useUserAuth from "hooks/use-user-auth"; // react-color import { TwitterPicker } from "react-color"; // headless ui import { Popover, Transition } from "@headlessui/react"; // ui import { Input, PrimaryButton, SecondaryButton } from "components/ui"; // icons import { ChevronDownIcon } from "@heroicons/react/24/outline"; // types import { IIssueLabels } from "types"; // fetch-keys import { getRandomLabelColor, LABEL_COLOR_OPTIONS } from "constants/label"; type Props = { labelForm: boolean; setLabelForm: React.Dispatch>; isUpdating: boolean; labelToUpdate: IIssueLabels | null; onClose?: () => void; }; const defaultValues: Partial = { name: "", color: "rgb(var(--color-text-200))", }; export const CreateUpdateLabelInline = observer( forwardRef(function CreateUpdateLabelInline(props, ref) { const { labelForm, setLabelForm, isUpdating, labelToUpdate, onClose } = props; const router = useRouter(); const { workspaceSlug, projectId } = router.query; const { label: labelStore } = useMobxStore(); const { createLabel, updateLabel } = labelStore; const { user } = useUserAuth(); const { handleSubmit, control, register, reset, formState: { errors, isSubmitting }, watch, setValue, } = useForm({ defaultValues, }); const handleClose = () => { setLabelForm(false); reset(defaultValues); if (onClose) onClose(); }; const handleLabelCreate: SubmitHandler = async (formData) => { if (!workspaceSlug || !projectId || isSubmitting || !user) return; await createLabel(workspaceSlug.toString(), projectId.toString(), formData, user).finally( () => { handleClose(); } ); }; const handleLabelUpdate: SubmitHandler = async (formData) => { if (!workspaceSlug || !projectId || isSubmitting || !user) return; await updateLabel( workspaceSlug.toString(), projectId.toString(), labelToUpdate?.id ?? "", formData, user ).finally(() => { handleClose(); }); }; useEffect(() => { if (!labelForm && isUpdating) return; reset(); }, [labelForm, isUpdating, reset]); useEffect(() => { if (!labelToUpdate) return; setValue( "color", labelToUpdate.color && labelToUpdate.color !== "" ? labelToUpdate.color : "#000" ); setValue("name", labelToUpdate.name); }, [labelToUpdate, setValue]); useEffect(() => { if (labelToUpdate) { setValue( "color", labelToUpdate.color && labelToUpdate.color !== "" ? labelToUpdate.color : "#000" ); return; } setValue("color", getRandomLabelColor()); }, [labelToUpdate, setValue]); return (
{({ open }) => ( <> ( onChange(value.hex)} /> )} /> )}
handleClose()}>Cancel {isUpdating ? ( {isSubmitting ? "Updating" : "Update"} ) : ( {isSubmitting ? "Adding" : "Add"} )}
); }) );