mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
441 lines
14 KiB
TypeScript
441 lines
14 KiB
TypeScript
import React, { useEffect } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// react-hook-form
|
|
import { useForm } from "react-hook-form";
|
|
// headless ui
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
// services
|
|
import estimatesService from "services/estimates.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { Input, PrimaryButton, SecondaryButton, TextArea } from "components/ui";
|
|
// helpers
|
|
import { checkDuplicates } from "helpers/array.helper";
|
|
// types
|
|
import { IEstimate, IEstimateFormData } from "types";
|
|
// fetch-keys
|
|
import { ESTIMATES_LIST, ESTIMATE_DETAILS } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
handleClose: () => void;
|
|
data?: IEstimate;
|
|
};
|
|
|
|
type FormValues = {
|
|
name: string;
|
|
description: string;
|
|
value1: string;
|
|
value2: string;
|
|
value3: string;
|
|
value4: string;
|
|
value5: string;
|
|
value6: string;
|
|
};
|
|
|
|
const defaultValues: Partial<FormValues> = {
|
|
name: "",
|
|
description: "",
|
|
value1: "",
|
|
value2: "",
|
|
value3: "",
|
|
value4: "",
|
|
value5: "",
|
|
value6: "",
|
|
};
|
|
|
|
export const CreateUpdateEstimateModal: React.FC<Props> = ({ handleClose, data, isOpen }) => {
|
|
const {
|
|
register,
|
|
formState: { isSubmitting },
|
|
handleSubmit,
|
|
reset,
|
|
} = useForm<FormValues>({
|
|
defaultValues,
|
|
});
|
|
|
|
const onClose = () => {
|
|
handleClose();
|
|
reset();
|
|
};
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const createEstimate = async (payload: IEstimateFormData) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await estimatesService
|
|
.createEstimate(workspaceSlug as string, projectId as string, payload)
|
|
.then(() => {
|
|
mutate(ESTIMATES_LIST(projectId as string));
|
|
onClose();
|
|
})
|
|
.catch((err) => {
|
|
if (err.status === 400)
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Estimate with that name already exists. Please try again with another name.",
|
|
});
|
|
else
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Estimate could not be created. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const updateEstimate = async (payload: IEstimateFormData) => {
|
|
if (!workspaceSlug || !projectId || !data) return;
|
|
|
|
mutate<IEstimate[]>(
|
|
ESTIMATES_LIST(projectId.toString()),
|
|
(prevData) =>
|
|
prevData?.map((p) => {
|
|
if (p.id === data.id)
|
|
return {
|
|
...p,
|
|
name: payload.estimate.name,
|
|
description: payload.estimate.description,
|
|
points: p.points.map((point, index) => ({
|
|
...point,
|
|
value: payload.estimate_points[index].value,
|
|
})),
|
|
};
|
|
|
|
return p;
|
|
}),
|
|
false
|
|
);
|
|
|
|
await estimatesService
|
|
.patchEstimate(workspaceSlug as string, projectId as string, data?.id as string, payload)
|
|
.then(() => {
|
|
mutate(ESTIMATES_LIST(projectId.toString()));
|
|
mutate(ESTIMATE_DETAILS(data.id));
|
|
handleClose();
|
|
})
|
|
.catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Estimate could not be updated. Please try again.",
|
|
});
|
|
});
|
|
|
|
onClose();
|
|
};
|
|
|
|
const onSubmit = async (formData: FormValues) => {
|
|
if (!formData.name || formData.name === "") {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Estimate title cannot be empty.",
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (
|
|
formData.value1 === "" ||
|
|
formData.value2 === "" ||
|
|
formData.value3 === "" ||
|
|
formData.value4 === "" ||
|
|
formData.value5 === "" ||
|
|
formData.value6 === ""
|
|
) {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Estimate point cannot be empty.",
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (
|
|
checkDuplicates([
|
|
formData.value1,
|
|
formData.value2,
|
|
formData.value3,
|
|
formData.value4,
|
|
formData.value5,
|
|
formData.value6,
|
|
])
|
|
) {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Estimate points cannot have duplicate values.",
|
|
});
|
|
return;
|
|
}
|
|
|
|
const payload: IEstimateFormData = {
|
|
estimate: {
|
|
name: formData.name,
|
|
description: formData.description,
|
|
},
|
|
estimate_points: data
|
|
? [
|
|
{
|
|
id: data.points[0].id,
|
|
key: 0,
|
|
value: formData.value1,
|
|
},
|
|
{
|
|
id: data.points[1].id,
|
|
key: 1,
|
|
value: formData.value2,
|
|
},
|
|
{
|
|
id: data.points[2].id,
|
|
key: 2,
|
|
value: formData.value3,
|
|
},
|
|
{
|
|
id: data.points[3].id,
|
|
key: 3,
|
|
value: formData.value4,
|
|
},
|
|
{
|
|
id: data.points[4].id,
|
|
key: 4,
|
|
value: formData.value5,
|
|
},
|
|
{
|
|
id: data.points[5].id,
|
|
key: 5,
|
|
value: formData.value6,
|
|
},
|
|
]
|
|
: [
|
|
{
|
|
key: 0,
|
|
value: formData.value1,
|
|
},
|
|
{
|
|
key: 1,
|
|
value: formData.value2,
|
|
},
|
|
{
|
|
key: 2,
|
|
value: formData.value3,
|
|
},
|
|
{
|
|
key: 3,
|
|
value: formData.value4,
|
|
},
|
|
{
|
|
key: 4,
|
|
value: formData.value5,
|
|
},
|
|
{
|
|
key: 5,
|
|
value: formData.value6,
|
|
},
|
|
],
|
|
};
|
|
|
|
if (data) await updateEstimate(payload);
|
|
else await createEstimate(payload);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (data)
|
|
reset({
|
|
...defaultValues,
|
|
...data,
|
|
value1: data.points[0]?.value,
|
|
value2: data.points[1]?.value,
|
|
value3: data.points[2]?.value,
|
|
value4: data.points[3]?.value,
|
|
value5: data.points[4]?.value,
|
|
value6: data.points[5]?.value,
|
|
});
|
|
else reset({ ...defaultValues });
|
|
}, [data, reset]);
|
|
|
|
return (
|
|
<>
|
|
<Transition.Root show={isOpen} as={React.Fragment}>
|
|
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
|
<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-gray-500 bg-opacity-75 transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-20 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-brand-base px-5 py-8 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-2xl sm:p-6">
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="space-y-3">
|
|
<div className="text-lg font-medium leading-6">
|
|
{data ? "Update" : "Create"} Estimate
|
|
</div>
|
|
<div>
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
type="name"
|
|
placeholder="Title"
|
|
autoComplete="off"
|
|
className="resize-none text-xl"
|
|
register={register}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<TextArea
|
|
id="description"
|
|
name="description"
|
|
placeholder="Description"
|
|
className="h-32 resize-none text-sm"
|
|
register={register}
|
|
/>
|
|
</div>
|
|
<div className="grid grid-cols-3 gap-3">
|
|
<div className="flex items-center">
|
|
<span className="flex h-full items-center rounded-lg bg-brand-surface-2">
|
|
<span className="rounded-lg px-2 text-sm text-brand-secondary">1</span>
|
|
<span className="rounded-r-lg bg-brand-base">
|
|
<Input
|
|
id="name"
|
|
name="value1"
|
|
type="name"
|
|
className="rounded-l-none"
|
|
placeholder="Point 1"
|
|
autoComplete="off"
|
|
register={register}
|
|
/>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div className="flex items-center">
|
|
<span className="flex h-full items-center rounded-lg bg-brand-surface-2">
|
|
<span className="rounded-lg px-2 text-sm text-brand-secondary">2</span>
|
|
<span className="rounded-r-lg bg-brand-base">
|
|
<Input
|
|
id="name"
|
|
name="value2"
|
|
type="name"
|
|
className="rounded-l-none"
|
|
placeholder="Point 2"
|
|
autoComplete="off"
|
|
register={register}
|
|
/>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div className="flex items-center">
|
|
<span className="flex h-full items-center rounded-lg bg-brand-surface-2">
|
|
<span className="rounded-lg px-2 text-sm text-brand-secondary">3</span>
|
|
<span className="rounded-r-lg bg-brand-base">
|
|
<Input
|
|
id="name"
|
|
name="value3"
|
|
type="name"
|
|
className="rounded-l-none"
|
|
placeholder="Point 3"
|
|
autoComplete="off"
|
|
register={register}
|
|
/>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div className="flex items-center">
|
|
<span className="flex h-full items-center rounded-lg bg-brand-surface-2">
|
|
<span className="rounded-lg px-2 text-sm text-brand-secondary">4</span>
|
|
<span className="rounded-r-lg bg-brand-base">
|
|
<Input
|
|
id="name"
|
|
name="value4"
|
|
type="name"
|
|
className="rounded-l-none"
|
|
placeholder="Point 4"
|
|
autoComplete="off"
|
|
register={register}
|
|
/>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div className="flex items-center">
|
|
<span className="flex h-full items-center rounded-lg bg-brand-surface-2">
|
|
<span className="rounded-lg px-2 text-sm text-brand-secondary">5</span>
|
|
<span className="rounded-r-lg bg-brand-base">
|
|
<Input
|
|
id="name"
|
|
name="value5"
|
|
type="name"
|
|
className="rounded-l-none"
|
|
placeholder="Point 5"
|
|
autoComplete="off"
|
|
register={register}
|
|
/>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div className="flex items-center">
|
|
<span className="flex h-full items-center rounded-lg bg-brand-surface-2">
|
|
<span className="rounded-lg px-2 text-sm text-brand-secondary">6</span>
|
|
<span className="rounded-r-lg bg-brand-base">
|
|
<Input
|
|
id="name"
|
|
name="value6"
|
|
type="name"
|
|
className="rounded-l-none"
|
|
placeholder="Point 6"
|
|
autoComplete="off"
|
|
register={register}
|
|
/>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-5 flex justify-end gap-2">
|
|
<SecondaryButton onClick={handleClose}>Cancel</SecondaryButton>
|
|
<PrimaryButton type="submit" loading={isSubmitting}>
|
|
{data
|
|
? isSubmitting
|
|
? "Updating Estimate..."
|
|
: "Update Estimate"
|
|
: isSubmitting
|
|
? "Creating Estimate..."
|
|
: "Create Estimate"}
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
</>
|
|
);
|
|
};
|