mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
efd3ebf067
* refactor: updated preloaded function for the list view quick add * fix: resolved bug in the assignee dropdown * chore: issue sidebar link improvement * fix: resolved subscription store bug * chore: updated preloaded function for the kanban layout quick add * chore: resolved issues in the list filters and component * chore: filter store updated * fix: issue serializer changed * chore: quick add preload function updated * fix: build error * fix: serializer changed * fix: minor request change * chore: resolved build issues and updated the prepopulated data in the quick add issue. * fix: build fix and code refactor * fix: spreadsheet layout quick add fix * fix: issue peek overview link section updated * fix: cycle status bug fix * fix: serializer changes * fix: assignee and labels listing * chore: issue modal parent_id default value updated * fix: cycle and module issue serializer change * fix: cycle list serializer changed * chore: prepopulated validation in both list and kanban for quick add and group header add issues * chore: group header validation added * fix: issue response payload change * dev: make cycle and module issue create response simillar * chore: custom control link component added * dev: make issue create and update response simillar to list and retrieve * fix: build error * chore: control link component improvement * chore: globalise issue peek overview * chore: control link component improvement * chore: made changes and optimised the issue peek overview root * build-error: resolved build erros for issueId dependancy from issue detail store * chore: peek overview link fix * dev: update state nullable rule --------- Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
185 lines
5.0 KiB
TypeScript
185 lines
5.0 KiB
TypeScript
import { useEffect, useRef, useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { useForm } from "react-hook-form";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useProject, useWorkspace } from "hooks/store";
|
|
import useToast from "hooks/use-toast";
|
|
import useKeypress from "hooks/use-keypress";
|
|
import useOutsideClickDetector from "hooks/use-outside-click-detector";
|
|
// helpers
|
|
import { createIssuePayload } from "helpers/issue.helper";
|
|
// icons
|
|
import { PlusIcon } from "lucide-react";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
type Props = {
|
|
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;
|
|
onOpen?: () => void;
|
|
};
|
|
|
|
const defaultValues: Partial<TIssue> = {
|
|
name: "",
|
|
};
|
|
|
|
const Inputs = (props: any) => {
|
|
const { register, setFocus, projectDetails } = props;
|
|
|
|
useEffect(() => {
|
|
setFocus("name");
|
|
}, [setFocus]);
|
|
|
|
return (
|
|
<>
|
|
<h4 className="text-xs leading-5 text-custom-text-400">{projectDetails?.identifier ?? "..."}</h4>
|
|
<input
|
|
type="text"
|
|
autoComplete="off"
|
|
placeholder="Issue Title"
|
|
{...register("name", {
|
|
required: "Issue title is required.",
|
|
})}
|
|
className="w-full rounded-md bg-transparent py-1.5 pr-2 text-xs font-medium leading-5 text-custom-text-200 outline-none"
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export const CalendarQuickAddIssueForm: React.FC<Props> = observer((props) => {
|
|
const { formKey, groupId, prePopulatedData, quickAddCallback, viewId, onOpen } = props;
|
|
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
// store hooks
|
|
const { getProjectById } = useProject();
|
|
const { getWorkspaceBySlug } = useWorkspace();
|
|
// refs
|
|
const ref = useRef<HTMLDivElement>(null);
|
|
// states
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
// toast alert
|
|
const { setToastAlert } = useToast();
|
|
|
|
// derived values
|
|
const workspaceDetail = (workspaceSlug && getWorkspaceBySlug(workspaceSlug.toString())) || null;
|
|
const projectDetail = projectId ? getProjectById(projectId.toString()) : null;
|
|
|
|
const {
|
|
reset,
|
|
handleSubmit,
|
|
register,
|
|
setFocus,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm<TIssue>({ defaultValues });
|
|
|
|
const handleClose = () => {
|
|
setIsOpen(false);
|
|
};
|
|
|
|
useKeypress("Escape", handleClose);
|
|
useOutsideClickDetector(ref, handleClose);
|
|
|
|
useEffect(() => {
|
|
if (!isOpen) reset({ ...defaultValues });
|
|
}, [isOpen, reset]);
|
|
|
|
useEffect(() => {
|
|
if (!errors) return;
|
|
|
|
Object.keys(errors).forEach((key) => {
|
|
const error = errors[key as keyof TIssue];
|
|
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: error?.message?.toString() || "Some error occurred. Please try again.",
|
|
});
|
|
});
|
|
}, [errors, setToastAlert]);
|
|
|
|
const onSubmitHandler = async (formData: TIssue) => {
|
|
if (isSubmitting || !workspaceSlug || !projectId) return;
|
|
|
|
reset({ ...defaultValues });
|
|
|
|
const payload = createIssuePayload(projectId.toString(), {
|
|
...(prePopulatedData ?? {}),
|
|
...formData,
|
|
});
|
|
|
|
try {
|
|
quickAddCallback &&
|
|
(await quickAddCallback(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
{
|
|
...payload,
|
|
},
|
|
viewId
|
|
));
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "Issue created successfully.",
|
|
});
|
|
} catch (err: any) {
|
|
console.error(err);
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: err?.message || "Some error occurred. Please try again.",
|
|
});
|
|
}
|
|
};
|
|
|
|
const handleOpen = () => {
|
|
setIsOpen(true);
|
|
if (onOpen) onOpen();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{isOpen && (
|
|
<div
|
|
ref={ref}
|
|
className={`z-20 w-full transition-all ${
|
|
isOpen ? "scale-100 opacity-100" : "pointer-events-none scale-95 opacity-0"
|
|
}`}
|
|
>
|
|
<form
|
|
onSubmit={handleSubmit(onSubmitHandler)}
|
|
className="z-50 flex w-full items-center gap-x-2 rounded border-[0.5px] border-custom-border-200 bg-custom-background-100 px-2 shadow-custom-shadow-2xs transition-opacity"
|
|
>
|
|
<Inputs formKey={formKey} register={register} setFocus={setFocus} projectDetails={projectDetail} />
|
|
</form>
|
|
</div>
|
|
)}
|
|
|
|
{!isOpen && (
|
|
<div className="hidden rounded border-[0.5px] border-custom-border-200 group-hover:block">
|
|
<button
|
|
type="button"
|
|
className="flex w-full items-center gap-x-[6px] rounded-md px-2 py-1.5 text-custom-primary-100"
|
|
onClick={handleOpen}
|
|
>
|
|
<PlusIcon className="h-3.5 w-3.5 stroke-2" />
|
|
<span className="text-sm font-medium text-custom-primary-100">New Issue</span>
|
|
</button>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
});
|