import React, { useEffect } from "react"; import { useRouter } from "next/router"; import { mutate } from "swr"; // react-hook-form import { Controller, useForm } from "react-hook-form"; // react-color import { TwitterPicker } from "react-color"; // headless ui import { Dialog, Popover, Transition } from "@headlessui/react"; // services import issuesService from "services/issues.service"; // ui import { Input, PrimaryButton, SecondaryButton } from "components/ui"; // icons import { ChevronDownIcon } from "@heroicons/react/24/outline"; // types import type { ICurrentUserResponse, IIssueLabels, IState } from "types"; // constants import { PROJECT_ISSUE_LABELS } from "constants/fetch-keys"; import { LABEL_COLOR_OPTIONS, getRandomLabelColor } from "constants/label"; // types type Props = { isOpen: boolean; projectId: string; handleClose: () => void; onSuccess?: (response: IIssueLabels) => void; user: ICurrentUserResponse | undefined; }; const defaultValues: Partial<IState> = { name: "", color: "rgb(var(--color-text-200))", }; export const CreateLabelModal: React.FC<Props> = ({ isOpen, projectId, handleClose, user, onSuccess, }) => { const router = useRouter(); const { workspaceSlug } = router.query; const { register, formState: { errors, isSubmitting }, handleSubmit, watch, control, reset, setValue, } = useForm<IIssueLabels>({ defaultValues, }); useEffect(() => { if (isOpen) setValue("color", getRandomLabelColor()); }, [setValue, isOpen]); const onClose = () => { handleClose(); reset(defaultValues); }; const onSubmit = async (formData: IIssueLabels) => { if (!workspaceSlug) return; await issuesService .createIssueLabel(workspaceSlug as string, projectId as string, formData, user) .then((res) => { mutate<IIssueLabels[]>( PROJECT_ISSUE_LABELS(projectId), (prevData) => [res, ...(prevData ?? [])], false ); onClose(); if (onSuccess) onSuccess(res); }) .catch((error) => { console.log(error); }); }; return ( <Transition.Root show={isOpen} as={React.Fragment}> <Dialog as="div" className="relative z-30" onClose={onClose}> <Transition.Child as={React.Fragment} enter="ease-out duration-300" enterFrom="opacity-0" enterTo="opacity-100" leave="ease-in duration-200" leaveFrom="opacity-100" leaveTo="opacity-0" > <div className="fixed inset-0 bg-[#131313] bg-opacity-50 transition-opacity" /> </Transition.Child> <div className="fixed inset-0 z-10 overflow-y-auto"> <div className="flex min-h-full items-center justify-center p-4 text-center sm:p-0"> <Transition.Child as={React.Fragment} enter="ease-out duration-300" enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" enterTo="opacity-100 translate-y-0 sm:scale-100" leave="ease-in duration-200" leaveFrom="opacity-100 translate-y-0 sm:scale-100" leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" > <Dialog.Panel className="relative transform rounded-lg bg-custom-background-90 px-4 pt-5 pb-4 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-2xl sm:p-6"> <form onSubmit={handleSubmit(onSubmit)}> <div> <Dialog.Title as="h3" className="text-lg font-medium leading-6 text-custom-text-100" > Create Label </Dialog.Title> <div className="mt-8 flex items-center gap-2"> <Popover className="relative"> {({ open, close }) => ( <> <Popover.Button className={`group inline-flex items-center rounded-sm py-2 text-base font-medium hover:text-custom-text-100 focus:outline-none ${ open ? "text-custom-text-100" : "text-custom-text-200" }`} > {watch("color") && watch("color") !== "" && ( <span className="ml-2 h-5 w-5 rounded" style={{ backgroundColor: watch("color") ?? "black", }} /> )} <ChevronDownIcon className={`ml-2 h-5 w-5 group-hover:text-custom-text-200 ${ open ? "text-gray-600" : "text-gray-400" }`} aria-hidden="true" /> </Popover.Button> <Transition as={React.Fragment} enter="transition ease-out duration-200" enterFrom="opacity-0 translate-y-1" enterTo="opacity-100 translate-y-0" leave="transition ease-in duration-150" leaveFrom="opacity-100 translate-y-0" leaveTo="opacity-0 translate-y-1" > <Popover.Panel className="fixed left-5 z-50 mt-3 w-screen max-w-xs transform px-2 sm:px-0"> <Controller name="color" control={control} render={({ field: { value, onChange } }) => ( <TwitterPicker color={value} colors={LABEL_COLOR_OPTIONS} onChange={(value) => { onChange(value.hex); close(); }} /> )} /> </Popover.Panel> </Transition> </> )} </Popover> <div className="flex w-full flex-col gap-0.5 justify-center"> <Input type="text" id="name" name="name" placeholder="Label title" autoComplete="off" error={errors.name} register={register} width="full" validations={{ required: "Label title is required", }} /> </div> </div> </div> <div className="mt-5 flex justify-end gap-2"> <SecondaryButton onClick={onClose}>Cancel</SecondaryButton> <PrimaryButton type="submit" loading={isSubmitting}> {isSubmitting ? "Creating Label..." : "Create Label"} </PrimaryButton> </div> </form> </Dialog.Panel> </Transition.Child> </div> </div> </Dialog> </Transition.Root> ); };