mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
404 lines
14 KiB
TypeScript
404 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 { ICurrentUserResponse, IEstimate, IEstimateFormData } from "types";
|
|
// fetch-keys
|
|
import { ESTIMATES_LIST, ESTIMATE_DETAILS } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
handleClose: () => void;
|
|
data?: IEstimate;
|
|
user: ICurrentUserResponse | undefined;
|
|
};
|
|
|
|
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, user }) => {
|
|
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, user)
|
|
.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,
|
|
user
|
|
)
|
|
.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: [],
|
|
};
|
|
|
|
for (let i = 0; i < 6; i++) {
|
|
const point = {
|
|
key: i,
|
|
value: formData[`value${i + 1}` as keyof FormValues],
|
|
};
|
|
|
|
if (data)
|
|
payload.estimate_points.push({
|
|
id: data.points[i].id,
|
|
...point,
|
|
});
|
|
else payload.estimate_points.push({ ...point });
|
|
}
|
|
|
|
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-custom-backdrop bg-opacity-50 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 border border-custom-border-200 bg-custom-background-100 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-custom-background-80">
|
|
<span className="rounded-lg px-2 text-sm text-custom-text-200">1</span>
|
|
<span className="rounded-r-lg bg-custom-background-100">
|
|
<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-custom-background-80">
|
|
<span className="rounded-lg px-2 text-sm text-custom-text-200">2</span>
|
|
<span className="rounded-r-lg bg-custom-background-100">
|
|
<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-custom-background-80">
|
|
<span className="rounded-lg px-2 text-sm text-custom-text-200">3</span>
|
|
<span className="rounded-r-lg bg-custom-background-100">
|
|
<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-custom-background-80">
|
|
<span className="rounded-lg px-2 text-sm text-custom-text-200">4</span>
|
|
<span className="rounded-r-lg bg-custom-background-100">
|
|
<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-custom-background-80">
|
|
<span className="rounded-lg px-2 text-sm text-custom-text-200">5</span>
|
|
<span className="rounded-r-lg bg-custom-background-100">
|
|
<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-custom-background-80">
|
|
<span className="rounded-lg px-2 text-sm text-custom-text-200">6</span>
|
|
<span className="rounded-r-lg bg-custom-background-100">
|
|
<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>
|
|
</>
|
|
);
|
|
};
|