mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
197 lines
5.7 KiB
TypeScript
197 lines
5.7 KiB
TypeScript
import React, { forwardRef, useEffect } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// react-hook-form
|
|
import { Controller, SubmitHandler, useForm } from "react-hook-form";
|
|
// react-color
|
|
import { TwitterPicker } from "react-color";
|
|
// headless ui
|
|
import { 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 { IIssueLabels } from "types";
|
|
// fetch-keys
|
|
import { PROJECT_ISSUE_LABELS } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
labelForm: boolean;
|
|
setLabelForm: React.Dispatch<React.SetStateAction<boolean>>;
|
|
isUpdating: boolean;
|
|
labelToUpdate: IIssueLabels | null;
|
|
};
|
|
|
|
const defaultValues: Partial<IIssueLabels> = {
|
|
name: "",
|
|
color: "#858E96",
|
|
};
|
|
|
|
type Ref = HTMLDivElement;
|
|
|
|
export const CreateUpdateLabelInline = forwardRef<Ref, Props>(function CreateUpdateLabelInline(
|
|
{ labelForm, setLabelForm, isUpdating, labelToUpdate },
|
|
ref
|
|
) {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const {
|
|
handleSubmit,
|
|
control,
|
|
register,
|
|
reset,
|
|
formState: { errors, isSubmitting },
|
|
watch,
|
|
setValue,
|
|
} = useForm<IIssueLabels>({
|
|
defaultValues,
|
|
});
|
|
|
|
const handleLabelCreate: SubmitHandler<IIssueLabels> = async (formData) => {
|
|
if (!workspaceSlug || !projectId || isSubmitting) return;
|
|
|
|
await issuesService
|
|
.createIssueLabel(workspaceSlug as string, projectId as string, formData)
|
|
.then((res) => {
|
|
mutate<IIssueLabels[]>(
|
|
PROJECT_ISSUE_LABELS(projectId as string),
|
|
(prevData) => [res, ...(prevData ?? [])],
|
|
false
|
|
);
|
|
reset(defaultValues);
|
|
setLabelForm(false);
|
|
});
|
|
};
|
|
|
|
const handleLabelUpdate: SubmitHandler<IIssueLabels> = async (formData) => {
|
|
if (!workspaceSlug || !projectId || isSubmitting) return;
|
|
|
|
await issuesService
|
|
.patchIssueLabel(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
labelToUpdate?.id ?? "",
|
|
formData
|
|
)
|
|
.then(() => {
|
|
reset(defaultValues);
|
|
mutate<IIssueLabels[]>(
|
|
PROJECT_ISSUE_LABELS(projectId as string),
|
|
(prevData) =>
|
|
prevData?.map((p) => (p.id === labelToUpdate?.id ? { ...p, ...formData } : p)),
|
|
false
|
|
);
|
|
setLabelForm(false);
|
|
});
|
|
};
|
|
|
|
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]);
|
|
|
|
return (
|
|
<div
|
|
className={`flex scroll-m-8 items-center gap-2 rounded-[10px] border border-brand-base bg-brand-base p-5 ${
|
|
labelForm ? "" : "hidden"
|
|
}`}
|
|
ref={ref}
|
|
>
|
|
<div className="flex-shrink-0">
|
|
<Popover className="relative z-10 flex h-full w-full items-center justify-center">
|
|
{({ open }) => (
|
|
<>
|
|
<Popover.Button
|
|
className={`group inline-flex items-center text-base font-medium focus:outline-none ${
|
|
open ? "text-brand-base" : "text-brand-secondary"
|
|
}`}
|
|
>
|
|
<span
|
|
className="h-5 w-5 rounded"
|
|
style={{
|
|
backgroundColor: watch("color"),
|
|
}}
|
|
/>
|
|
<ChevronDownIcon
|
|
className={`ml-2 h-5 w-5 group-hover:text-brand-secondary ${
|
|
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="absolute top-full left-0 z-20 mt-3 w-screen max-w-xs px-2 sm:px-0">
|
|
<Controller
|
|
name="color"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<TwitterPicker color={value} onChange={(value) => onChange(value.hex)} />
|
|
)}
|
|
/>
|
|
</Popover.Panel>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Popover>
|
|
</div>
|
|
<div className="flex flex-1 flex-col justify-center">
|
|
<Input
|
|
type="text"
|
|
id="labelName"
|
|
name="name"
|
|
register={register}
|
|
placeholder="Label title"
|
|
validations={{
|
|
required: "Label title is required",
|
|
}}
|
|
error={errors.name}
|
|
/>
|
|
</div>
|
|
<SecondaryButton
|
|
onClick={() => {
|
|
reset();
|
|
setLabelForm(false);
|
|
}}
|
|
>
|
|
Cancel
|
|
</SecondaryButton>
|
|
{isUpdating ? (
|
|
<PrimaryButton onClick={handleSubmit(handleLabelUpdate)} loading={isSubmitting}>
|
|
{isSubmitting ? "Updating" : "Update"}
|
|
</PrimaryButton>
|
|
) : (
|
|
<PrimaryButton onClick={handleSubmit(handleLabelCreate)} loading={isSubmitting}>
|
|
{isSubmitting ? "Adding" : "Add"}
|
|
</PrimaryButton>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|