forked from github/plane
b3ac9def8d
* dev: workspace states and estimates * refactor issue dropdown logic to help work properly with issues on global level * fix: project labels response change * fix label type * change store computed actions to computed functions from mobx-utils * fix: state response change * chore: project and workspace state change * fix state and label types * chore: state and label serializer change * modify state and label types * fix dropdown reset on project id change * fix label sort order --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Rahul R <rahulr@Rahuls-MacBook-Pro.local> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Rahul R <rahul.ramesha@plane.so>
215 lines
8.1 KiB
TypeScript
215 lines
8.1 KiB
TypeScript
import React, { useEffect } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
import { TwitterPicker } from "react-color";
|
|
import { Dialog, Popover, Transition } from "@headlessui/react";
|
|
import { ChevronDown } from "lucide-react";
|
|
// hooks
|
|
import { useLabel } from "hooks/store";
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { Button, Input } from "@plane/ui";
|
|
// types
|
|
import type { IIssueLabel, IState } from "@plane/types";
|
|
// constants
|
|
import { LABEL_COLOR_OPTIONS, getRandomLabelColor } from "constants/label";
|
|
|
|
// types
|
|
type Props = {
|
|
isOpen: boolean;
|
|
projectId: string;
|
|
handleClose: () => void;
|
|
onSuccess?: (response: IIssueLabel) => void;
|
|
};
|
|
|
|
const defaultValues: Partial<IState> = {
|
|
name: "",
|
|
color: "rgb(var(--color-text-200))",
|
|
};
|
|
|
|
export const CreateLabelModal: React.FC<Props> = observer((props) => {
|
|
const { isOpen, projectId, handleClose, onSuccess } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store hooks
|
|
const { createLabel } = useLabel();
|
|
// form info
|
|
const {
|
|
formState: { errors, isSubmitting },
|
|
handleSubmit,
|
|
watch,
|
|
control,
|
|
reset,
|
|
setValue,
|
|
setFocus,
|
|
} = useForm<IIssueLabel>({
|
|
defaultValues,
|
|
});
|
|
|
|
/**
|
|
* For setting focus on name input
|
|
*/
|
|
useEffect(() => {
|
|
setFocus("name");
|
|
}, [setFocus, isOpen]);
|
|
|
|
useEffect(() => {
|
|
if (isOpen) setValue("color", getRandomLabelColor());
|
|
}, [setValue, isOpen]);
|
|
|
|
const onClose = () => {
|
|
handleClose();
|
|
reset(defaultValues);
|
|
};
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const onSubmit = async (formData: IIssueLabel) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
await createLabel(workspaceSlug.toString(), projectId.toString(), formData)
|
|
.then((res) => {
|
|
onClose();
|
|
if (onSuccess) onSuccess(res);
|
|
})
|
|
.catch((error) => {
|
|
setToastAlert({
|
|
title: "Oops!",
|
|
type: "error",
|
|
message: error?.error ?? "Error while adding the label",
|
|
});
|
|
reset(formData);
|
|
});
|
|
};
|
|
|
|
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-custom-backdrop 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-100 px-4 pb-4 pt-5 text-left shadow-custom-shadow-md 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",
|
|
}}
|
|
/>
|
|
)}
|
|
<ChevronDown
|
|
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 justify-center gap-0.5">
|
|
<Controller
|
|
control={control}
|
|
name="name"
|
|
rules={{
|
|
required: "Label title is required",
|
|
}}
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
type="text"
|
|
value={value}
|
|
onChange={onChange}
|
|
ref={ref}
|
|
tabIndex={1}
|
|
hasError={Boolean(errors.name)}
|
|
placeholder="Label title"
|
|
className="w-full resize-none text-xl"
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-5 flex justify-end gap-2">
|
|
<Button variant="neutral-primary" size="sm" onClick={onClose}>
|
|
Cancel
|
|
</Button>
|
|
<Button variant="primary" size="sm" type="submit" loading={isSubmitting}>
|
|
{isSubmitting ? "Creating Label..." : "Create Label"}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
});
|