mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
164 lines
4.7 KiB
TypeScript
164 lines
4.7 KiB
TypeScript
import { useEffect, useState, useRef } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
import { useForm } from "react-hook-form";
|
|
import { PlusIcon } from "lucide-react";
|
|
import { TIssue } from "@plane/types";
|
|
// hooks
|
|
import { setPromiseToast } from "@plane/ui";
|
|
import { ISSUE_CREATED } from "@/constants/event-tracker";
|
|
import { createIssuePayload } from "@/helpers/issue.helper";
|
|
import { useEventTracker, useProject } from "@/hooks/store";
|
|
import useKeypress from "@/hooks/use-keypress";
|
|
import useOutsideClickDetector from "@/hooks/use-outside-click-detector";
|
|
// helpers
|
|
// ui
|
|
// types
|
|
// constants
|
|
|
|
const Inputs = (props: any) => {
|
|
const { register, setFocus, projectDetail } = props;
|
|
|
|
useEffect(() => {
|
|
setFocus("name");
|
|
}, [setFocus]);
|
|
|
|
return (
|
|
<div className="w-full">
|
|
<h4 className="text-xs font-medium leading-5 text-custom-text-300">{projectDetail?.identifier ?? "..."}</h4>
|
|
<input
|
|
autoComplete="off"
|
|
placeholder="Issue Title"
|
|
{...register("name", {
|
|
required: "Issue title is required.",
|
|
})}
|
|
className="w-full rounded-md bg-transparent px-2 py-1.5 pl-0 text-sm font-medium leading-5 text-custom-text-200 outline-none"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
interface IKanBanQuickAddIssueForm {
|
|
formKey: keyof TIssue;
|
|
groupId?: string;
|
|
subGroupId?: string | null;
|
|
prePopulatedData?: Partial<TIssue>;
|
|
quickAddCallback?: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: TIssue,
|
|
viewId?: string
|
|
) => Promise<TIssue | undefined>;
|
|
viewId?: string;
|
|
}
|
|
|
|
const defaultValues: Partial<TIssue> = {
|
|
name: "",
|
|
};
|
|
|
|
export const KanBanQuickAddIssueForm: React.FC<IKanBanQuickAddIssueForm> = observer((props) => {
|
|
const { formKey, prePopulatedData, quickAddCallback, viewId } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
// store hooks
|
|
const { getProjectById } = useProject();
|
|
const { captureIssueEvent } = useEventTracker();
|
|
|
|
const projectDetail = projectId ? getProjectById(projectId.toString()) : null;
|
|
|
|
const ref = useRef<HTMLFormElement>(null);
|
|
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const handleClose = () => setIsOpen(false);
|
|
|
|
useKeypress("Escape", handleClose);
|
|
useOutsideClickDetector(ref, handleClose);
|
|
|
|
const {
|
|
reset,
|
|
handleSubmit,
|
|
setFocus,
|
|
register,
|
|
formState: { isSubmitting },
|
|
} = useForm<TIssue>({ defaultValues });
|
|
|
|
useEffect(() => {
|
|
if (!isOpen) reset({ ...defaultValues });
|
|
}, [isOpen, reset]);
|
|
|
|
const onSubmitHandler = async (formData: TIssue) => {
|
|
if (isSubmitting || !workspaceSlug || !projectId) return;
|
|
|
|
reset({ ...defaultValues });
|
|
|
|
const payload = createIssuePayload(projectId.toString(), {
|
|
...(prePopulatedData ?? {}),
|
|
...formData,
|
|
});
|
|
|
|
if (quickAddCallback) {
|
|
const quickAddPromise = quickAddCallback(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
{
|
|
...payload,
|
|
},
|
|
viewId
|
|
);
|
|
setPromiseToast<any>(quickAddPromise, {
|
|
loading: "Adding issue...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Issue created successfully.",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: (err) => err?.message || "Some error occurred. Please try again.",
|
|
},
|
|
});
|
|
|
|
await quickAddPromise
|
|
.then((res) => {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_CREATED,
|
|
payload: { ...res, state: "SUCCESS", element: "Kanban quick add" },
|
|
path: router.asPath,
|
|
});
|
|
})
|
|
.catch(() => {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_CREATED,
|
|
payload: { ...payload, state: "FAILED", element: "Kanban quick add" },
|
|
path: router.asPath,
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{isOpen ? (
|
|
<div className="m-1.5 overflow-hidden rounded shadow-custom-shadow-sm">
|
|
<form
|
|
ref={ref}
|
|
onSubmit={handleSubmit(onSubmitHandler)}
|
|
className="flex w-full items-center gap-x-3 bg-custom-background-100 p-3"
|
|
>
|
|
<Inputs formKey={formKey} register={register} setFocus={setFocus} projectDetail={projectDetail} />
|
|
</form>
|
|
<div className="px-3 py-2 text-xs italic text-custom-text-200">{`Press 'Enter' to add another issue`}</div>
|
|
</div>
|
|
) : (
|
|
<div
|
|
className="flex w-full cursor-pointer items-center gap-2 p-3 py-1.5 text-custom-primary-100"
|
|
onClick={() => setIsOpen(true)}
|
|
>
|
|
<PlusIcon className="h-3.5 w-3.5 stroke-2" />
|
|
<span className="text-sm font-medium text-custom-primary-100">New Issue</span>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
});
|