forked from github/plane
149 lines
4.6 KiB
TypeScript
149 lines
4.6 KiB
TypeScript
|
import { FC, useEffect, useState, useRef } from "react";
|
||
|
import { useRouter } from "next/router";
|
||
|
import { useForm } from "react-hook-form";
|
||
|
import { PlusIcon } from "lucide-react";
|
||
|
import { observer } from "mobx-react-lite";
|
||
|
// hooks
|
||
|
import useToast from "hooks/use-toast";
|
||
|
import useKeypress from "hooks/use-keypress";
|
||
|
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
||
|
// store
|
||
|
import { useMobxStore } from "lib/mobx/store-provider";
|
||
|
// constants
|
||
|
import { IIssue, IProject } from "types";
|
||
|
// types
|
||
|
import { createIssuePayload } from "helpers/issue.helper";
|
||
|
|
||
|
interface IInputProps {
|
||
|
formKey: string;
|
||
|
register: any;
|
||
|
setFocus: any;
|
||
|
projectDetail: IProject | null;
|
||
|
}
|
||
|
const Inputs: FC<IInputProps> = (props) => {
|
||
|
const { formKey, register, setFocus, projectDetail } = props;
|
||
|
|
||
|
useEffect(() => {
|
||
|
setFocus(formKey);
|
||
|
}, [formKey, setFocus]);
|
||
|
|
||
|
return (
|
||
|
<div className="flex items-center gap-3 w-full">
|
||
|
<div className="text-xs font-medium text-custom-text-400">{projectDetail?.identifier ?? "..."}</div>
|
||
|
<input
|
||
|
type="text"
|
||
|
autoComplete="off"
|
||
|
placeholder="Issue Title"
|
||
|
{...register(formKey, {
|
||
|
required: "Issue title is required.",
|
||
|
})}
|
||
|
className="w-full px-2 py-3 rounded-md bg-transparent text-sm font-medium leading-5 text-custom-text-200 outline-none"
|
||
|
/>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
interface IListQuickAddIssueForm {
|
||
|
prePopulatedData?: Partial<IIssue>;
|
||
|
quickAddCallback?: (
|
||
|
workspaceSlug: string,
|
||
|
projectId: string,
|
||
|
data: IIssue,
|
||
|
viewId?: string
|
||
|
) => Promise<IIssue | undefined>;
|
||
|
viewId?: string;
|
||
|
}
|
||
|
|
||
|
const defaultValues: Partial<IIssue> = {
|
||
|
name: "",
|
||
|
};
|
||
|
|
||
|
export const ListQuickAddIssueForm: FC<IListQuickAddIssueForm> = observer((props) => {
|
||
|
const { prePopulatedData, quickAddCallback, viewId } = props;
|
||
|
|
||
|
const router = useRouter();
|
||
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
||
|
|
||
|
const { workspace: workspaceStore, project: projectStore } = useMobxStore();
|
||
|
|
||
|
const workspaceDetail = (workspaceSlug && workspaceStore.getWorkspaceBySlug(workspaceSlug)) || null;
|
||
|
const projectDetail: IProject | null =
|
||
|
(workspaceSlug && projectId && projectStore.getProjectById(workspaceSlug, projectId)) || null;
|
||
|
|
||
|
const ref = useRef<HTMLFormElement>(null);
|
||
|
|
||
|
const [isOpen, setIsOpen] = useState(false);
|
||
|
const handleClose = () => setIsOpen(false);
|
||
|
|
||
|
useKeypress("Escape", handleClose);
|
||
|
useOutsideClickDetector(ref, handleClose);
|
||
|
const { setToastAlert } = useToast();
|
||
|
|
||
|
const {
|
||
|
reset,
|
||
|
handleSubmit,
|
||
|
setFocus,
|
||
|
register,
|
||
|
formState: { errors, isSubmitting },
|
||
|
} = useForm<IIssue>({ defaultValues });
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (!isOpen) reset({ ...defaultValues });
|
||
|
}, [isOpen, reset]);
|
||
|
|
||
|
const onSubmitHandler = async (formData: IIssue) => {
|
||
|
if (isSubmitting || !workspaceDetail || !projectDetail) return;
|
||
|
|
||
|
reset({ ...defaultValues });
|
||
|
|
||
|
const payload = createIssuePayload(workspaceDetail, projectDetail, {
|
||
|
...(prePopulatedData ?? {}),
|
||
|
...formData,
|
||
|
});
|
||
|
|
||
|
try {
|
||
|
quickAddCallback && (await quickAddCallback(workspaceSlug, projectId, { ...payload }, viewId));
|
||
|
setToastAlert({
|
||
|
type: "success",
|
||
|
title: "Success!",
|
||
|
message: "Issue created successfully.",
|
||
|
});
|
||
|
} catch (err: any) {
|
||
|
setToastAlert({
|
||
|
type: "error",
|
||
|
title: "Error!",
|
||
|
message: err?.message || "Some error occurred. Please try again.",
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<div
|
||
|
className={`bg-custom-background-100 border-t border-b border-custom-border-200 ${
|
||
|
errors && errors?.name && errors?.name?.message ? `border-red-500 bg-red-500/10` : ``
|
||
|
}`}
|
||
|
>
|
||
|
{isOpen ? (
|
||
|
<div className="shadow-custom-shadow-sm">
|
||
|
<form
|
||
|
ref={ref}
|
||
|
onSubmit={handleSubmit(onSubmitHandler)}
|
||
|
className="flex items-center gap-x-3 border-[0.5px] w-full border-t-0 border-custom-border-100 px-3 bg-custom-background-100"
|
||
|
>
|
||
|
<Inputs formKey={"name"} register={register} setFocus={setFocus} projectDetail={projectDetail} />
|
||
|
</form>
|
||
|
<div className="text-xs italic text-custom-text-200 px-3 py-2">{`Press 'Enter' to add another issue`}</div>
|
||
|
</div>
|
||
|
) : (
|
||
|
<div
|
||
|
className="w-full flex items-center text-custom-primary-100 p-3 py-3 cursor-pointer gap-2"
|
||
|
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>
|
||
|
)}
|
||
|
</div>
|
||
|
);
|
||
|
});
|