2023-01-26 18:12:20 +00:00
|
|
|
import React, { useEffect, useState } from "react";
|
|
|
|
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
|
|
|
|
// headless ui
|
|
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
|
|
// services
|
|
|
|
import modulesService from "services/modules.service";
|
|
|
|
import issuesService from "services/issues.service";
|
2023-06-16 13:27:17 +00:00
|
|
|
import inboxServices from "services/inbox.service";
|
2023-01-26 18:12:20 +00:00
|
|
|
// hooks
|
|
|
|
import useUser from "hooks/use-user";
|
2023-05-15 06:05:07 +00:00
|
|
|
import useIssuesView from "hooks/use-issues-view";
|
|
|
|
import useCalendarIssuesView from "hooks/use-calendar-issues-view";
|
2023-01-26 18:12:20 +00:00
|
|
|
import useToast from "hooks/use-toast";
|
2023-06-16 13:27:17 +00:00
|
|
|
import useInboxView from "hooks/use-inbox-view";
|
2023-06-23 11:50:05 +00:00
|
|
|
import useSpreadsheetIssuesView from "hooks/use-spreadsheet-issues-view";
|
2023-07-13 14:14:53 +00:00
|
|
|
import useProjects from "hooks/use-projects";
|
2023-01-26 18:12:20 +00:00
|
|
|
// components
|
|
|
|
import { IssueForm } from "components/issues";
|
|
|
|
// types
|
2023-02-18 15:49:04 +00:00
|
|
|
import type { IIssue } from "types";
|
2023-05-15 06:05:07 +00:00
|
|
|
// fetch-keys
|
2023-01-26 18:12:20 +00:00
|
|
|
import {
|
|
|
|
PROJECT_ISSUES_DETAILS,
|
|
|
|
PROJECT_ISSUES_LIST,
|
|
|
|
USER_ISSUE,
|
|
|
|
SUB_ISSUES,
|
2023-03-18 06:04:29 +00:00
|
|
|
PROJECT_ISSUES_LIST_WITH_PARAMS,
|
|
|
|
CYCLE_ISSUES_WITH_PARAMS,
|
2023-03-29 13:43:53 +00:00
|
|
|
MODULE_ISSUES_WITH_PARAMS,
|
2023-04-14 14:10:00 +00:00
|
|
|
CYCLE_DETAILS,
|
|
|
|
MODULE_DETAILS,
|
2023-05-15 06:05:07 +00:00
|
|
|
VIEW_ISSUES,
|
2023-06-16 13:27:17 +00:00
|
|
|
INBOX_ISSUES,
|
2023-01-26 18:12:20 +00:00
|
|
|
} from "constants/fetch-keys";
|
2023-06-16 13:27:17 +00:00
|
|
|
// constants
|
|
|
|
import { INBOX_ISSUE_SOURCE } from "constants/inbox";
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
export interface IssuesModalProps {
|
|
|
|
isOpen: boolean;
|
|
|
|
handleClose: () => void;
|
|
|
|
data?: IIssue | null;
|
|
|
|
prePopulateData?: Partial<IIssue>;
|
|
|
|
isUpdatingSingleIssue?: boolean;
|
2023-06-16 13:27:17 +00:00
|
|
|
fieldsToShow?: (
|
|
|
|
| "project"
|
|
|
|
| "name"
|
|
|
|
| "description"
|
|
|
|
| "state"
|
|
|
|
| "priority"
|
|
|
|
| "assignee"
|
|
|
|
| "label"
|
|
|
|
| "dueDate"
|
|
|
|
| "estimate"
|
|
|
|
| "parent"
|
|
|
|
| "all"
|
|
|
|
)[];
|
2023-01-26 18:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const CreateUpdateIssueModal: React.FC<IssuesModalProps> = ({
|
|
|
|
isOpen,
|
|
|
|
handleClose,
|
|
|
|
data,
|
|
|
|
prePopulateData,
|
|
|
|
isUpdatingSingleIssue = false,
|
2023-06-16 13:27:17 +00:00
|
|
|
fieldsToShow = ["all"],
|
2023-01-26 18:12:20 +00:00
|
|
|
}) => {
|
|
|
|
// states
|
|
|
|
const [createMore, setCreateMore] = useState(false);
|
|
|
|
const [activeProject, setActiveProject] = useState<string | null>(null);
|
|
|
|
|
|
|
|
const router = useRouter();
|
2023-06-16 13:27:17 +00:00
|
|
|
const { workspaceSlug, projectId, cycleId, moduleId, viewId, inboxId } = router.query;
|
2023-02-02 13:33:54 +00:00
|
|
|
|
2023-05-10 20:57:14 +00:00
|
|
|
const { issueView, params } = useIssuesView();
|
2023-05-15 06:05:07 +00:00
|
|
|
const { params: calendarParams } = useCalendarIssuesView();
|
2023-05-20 12:00:15 +00:00
|
|
|
const { order_by, group_by, ...viewGanttParams } = params;
|
2023-06-16 13:27:17 +00:00
|
|
|
const { params: inboxParams } = useInboxView();
|
2023-06-23 11:50:05 +00:00
|
|
|
const { params: spreadsheetParams } = useSpreadsheetIssuesView();
|
2023-03-18 06:04:29 +00:00
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
const { user } = useUser();
|
2023-07-13 14:14:53 +00:00
|
|
|
const { projects } = useProjects();
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
|
2023-06-26 08:55:19 +00:00
|
|
|
if (cycleId) prePopulateData = { ...prePopulateData, cycle: cycleId as string };
|
|
|
|
if (moduleId) prePopulateData = { ...prePopulateData, module: moduleId as string };
|
|
|
|
if (router.asPath.includes("my-issues"))
|
|
|
|
prePopulateData = {
|
|
|
|
...prePopulateData,
|
|
|
|
assignees: [...(prePopulateData?.assignees ?? []), user?.id ?? ""],
|
|
|
|
};
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
const { data: issues } = useSWR(
|
|
|
|
workspaceSlug && activeProject
|
|
|
|
? PROJECT_ISSUES_LIST(workspaceSlug as string, activeProject ?? "")
|
|
|
|
: null,
|
|
|
|
workspaceSlug && activeProject
|
|
|
|
? () => issuesService.getIssues(workspaceSlug as string, activeProject ?? "")
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (projects && projects.length > 0)
|
|
|
|
setActiveProject(projects?.find((p) => p.id === projectId)?.id ?? projects?.[0].id ?? null);
|
|
|
|
}, [projectId, projects]);
|
|
|
|
|
2023-02-23 14:26:18 +00:00
|
|
|
useEffect(() => {
|
|
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
|
|
if (e.key === "Escape") {
|
|
|
|
handleClose();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
window.addEventListener("keydown", handleKeyDown);
|
|
|
|
return () => {
|
|
|
|
window.removeEventListener("keydown", handleKeyDown);
|
|
|
|
};
|
2023-02-24 10:20:15 +00:00
|
|
|
}, [handleClose]);
|
2023-02-23 14:26:18 +00:00
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
const addIssueToCycle = async (issueId: string, cycleId: string) => {
|
2023-06-26 08:55:19 +00:00
|
|
|
if (!workspaceSlug || !activeProject) return;
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
await issuesService
|
2023-06-06 16:06:00 +00:00
|
|
|
.addIssueToCycle(
|
|
|
|
workspaceSlug as string,
|
|
|
|
activeProject ?? "",
|
|
|
|
cycleId,
|
|
|
|
{
|
|
|
|
issues: [issueId],
|
|
|
|
},
|
|
|
|
user
|
|
|
|
)
|
2023-03-29 13:43:53 +00:00
|
|
|
.then(() => {
|
2023-04-14 14:10:00 +00:00
|
|
|
if (cycleId) {
|
|
|
|
mutate(CYCLE_ISSUES_WITH_PARAMS(cycleId, params));
|
|
|
|
mutate(CYCLE_DETAILS(cycleId as string));
|
|
|
|
}
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const addIssueToModule = async (issueId: string, moduleId: string) => {
|
2023-06-26 08:55:19 +00:00
|
|
|
if (!workspaceSlug || !activeProject) return;
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
await modulesService
|
2023-06-06 16:06:00 +00:00
|
|
|
.addIssuesToModule(
|
|
|
|
workspaceSlug as string,
|
|
|
|
activeProject ?? "",
|
|
|
|
moduleId as string,
|
|
|
|
{
|
|
|
|
issues: [issueId],
|
|
|
|
},
|
|
|
|
user
|
|
|
|
)
|
2023-03-29 13:43:53 +00:00
|
|
|
.then(() => {
|
2023-04-14 14:10:00 +00:00
|
|
|
if (moduleId) {
|
|
|
|
mutate(MODULE_ISSUES_WITH_PARAMS(moduleId as string, params));
|
|
|
|
mutate(MODULE_DETAILS(moduleId as string));
|
|
|
|
}
|
2023-03-29 13:43:53 +00:00
|
|
|
});
|
2023-01-26 18:12:20 +00:00
|
|
|
};
|
|
|
|
|
2023-06-16 13:27:17 +00:00
|
|
|
const addIssueToInbox = async (formData: Partial<IIssue>) => {
|
2023-06-26 08:55:19 +00:00
|
|
|
if (!workspaceSlug || !activeProject || !inboxId) return;
|
2023-06-16 13:27:17 +00:00
|
|
|
|
|
|
|
const payload = {
|
|
|
|
issue: {
|
|
|
|
name: formData.name,
|
|
|
|
description: formData.description,
|
|
|
|
description_html: formData.description_html,
|
|
|
|
priority: formData.priority,
|
|
|
|
},
|
|
|
|
source: INBOX_ISSUE_SOURCE,
|
|
|
|
};
|
|
|
|
|
|
|
|
await inboxServices
|
|
|
|
.createInboxIssue(
|
|
|
|
workspaceSlug.toString(),
|
2023-06-26 08:55:19 +00:00
|
|
|
activeProject.toString(),
|
2023-06-16 13:27:17 +00:00
|
|
|
inboxId.toString(),
|
|
|
|
payload,
|
|
|
|
user
|
|
|
|
)
|
2023-07-12 12:25:58 +00:00
|
|
|
.then((res) => {
|
2023-06-16 13:27:17 +00:00
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Success!",
|
|
|
|
message: "Issue created successfully.",
|
|
|
|
});
|
|
|
|
|
2023-06-23 07:49:26 +00:00
|
|
|
router.push(
|
2023-06-26 08:55:19 +00:00
|
|
|
`/${workspaceSlug}/projects/${activeProject}/inbox/${inboxId}?inboxIssueId=${res.issue_inbox[0].id}`
|
2023-06-23 07:49:26 +00:00
|
|
|
);
|
|
|
|
|
2023-06-16 13:27:17 +00:00
|
|
|
mutate(INBOX_ISSUES(inboxId.toString(), inboxParams));
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
|
|
|
message: "Issue could not be created. Please try again.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-05-15 06:05:07 +00:00
|
|
|
const calendarFetchKey = cycleId
|
|
|
|
? CYCLE_ISSUES_WITH_PARAMS(cycleId.toString(), calendarParams)
|
|
|
|
: moduleId
|
|
|
|
? MODULE_ISSUES_WITH_PARAMS(moduleId.toString(), calendarParams)
|
|
|
|
: viewId
|
|
|
|
? VIEW_ISSUES(viewId.toString(), calendarParams)
|
2023-06-26 08:55:19 +00:00
|
|
|
: PROJECT_ISSUES_LIST_WITH_PARAMS(activeProject?.toString() ?? "", calendarParams);
|
2023-05-15 06:05:07 +00:00
|
|
|
|
2023-06-23 11:50:05 +00:00
|
|
|
const spreadsheetFetchKey = cycleId
|
|
|
|
? CYCLE_ISSUES_WITH_PARAMS(cycleId.toString(), spreadsheetParams)
|
|
|
|
: moduleId
|
|
|
|
? MODULE_ISSUES_WITH_PARAMS(moduleId.toString(), spreadsheetParams)
|
|
|
|
: viewId
|
|
|
|
? VIEW_ISSUES(viewId.toString(), spreadsheetParams)
|
2023-06-26 08:55:19 +00:00
|
|
|
: PROJECT_ISSUES_LIST_WITH_PARAMS(activeProject?.toString() ?? "", spreadsheetParams);
|
2023-06-23 11:50:05 +00:00
|
|
|
|
2023-05-20 12:00:15 +00:00
|
|
|
const ganttFetchKey = cycleId
|
|
|
|
? CYCLE_ISSUES_WITH_PARAMS(cycleId.toString())
|
|
|
|
: moduleId
|
|
|
|
? MODULE_ISSUES_WITH_PARAMS(moduleId.toString())
|
|
|
|
: viewId
|
|
|
|
? VIEW_ISSUES(viewId.toString(), viewGanttParams)
|
2023-06-26 08:55:19 +00:00
|
|
|
: PROJECT_ISSUES_LIST_WITH_PARAMS(activeProject?.toString() ?? "");
|
2023-05-20 12:00:15 +00:00
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
const createIssue = async (payload: Partial<IIssue>) => {
|
2023-06-26 08:55:19 +00:00
|
|
|
if (!workspaceSlug || !activeProject) return;
|
2023-01-26 18:12:20 +00:00
|
|
|
|
2023-06-16 13:27:17 +00:00
|
|
|
if (inboxId) await addIssueToInbox(payload);
|
|
|
|
else
|
|
|
|
await issuesService
|
|
|
|
.createIssues(workspaceSlug as string, activeProject ?? "", payload, user)
|
|
|
|
.then(async (res) => {
|
|
|
|
mutate(PROJECT_ISSUES_LIST_WITH_PARAMS(activeProject ?? "", params));
|
|
|
|
if (payload.cycle && payload.cycle !== "") await addIssueToCycle(res.id, payload.cycle);
|
|
|
|
if (payload.module && payload.module !== "")
|
|
|
|
await addIssueToModule(res.id, payload.module);
|
2023-01-26 18:12:20 +00:00
|
|
|
|
2023-06-16 13:27:17 +00:00
|
|
|
if (issueView === "calendar") mutate(calendarFetchKey);
|
|
|
|
if (issueView === "gantt_chart") mutate(ganttFetchKey);
|
2023-06-23 11:50:05 +00:00
|
|
|
if (issueView === "spreadsheet") mutate(spreadsheetFetchKey);
|
2023-06-16 13:27:17 +00:00
|
|
|
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Success!",
|
|
|
|
message: "Issue created successfully.",
|
|
|
|
});
|
|
|
|
|
2023-06-26 08:55:19 +00:00
|
|
|
if (payload.assignees_list?.some((assignee) => assignee === user?.id))
|
|
|
|
mutate(USER_ISSUE(workspaceSlug as string));
|
2023-06-16 13:27:17 +00:00
|
|
|
|
|
|
|
if (payload.parent && payload.parent !== "") mutate(SUB_ISSUES(payload.parent));
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
|
|
|
message: "Issue could not be created. Please try again.",
|
|
|
|
});
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
|
2023-06-16 13:27:17 +00:00
|
|
|
if (!createMore) handleClose();
|
2023-01-26 18:12:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const updateIssue = async (payload: Partial<IIssue>) => {
|
|
|
|
await issuesService
|
2023-06-06 16:06:00 +00:00
|
|
|
.updateIssue(workspaceSlug as string, activeProject ?? "", data?.id ?? "", payload, user)
|
2023-01-26 18:12:20 +00:00
|
|
|
.then((res) => {
|
|
|
|
if (isUpdatingSingleIssue) {
|
|
|
|
mutate<IIssue>(PROJECT_ISSUES_DETAILS, (prevData) => ({ ...prevData, ...res }), false);
|
2023-02-05 11:27:37 +00:00
|
|
|
} else {
|
2023-05-15 06:05:07 +00:00
|
|
|
if (issueView === "calendar") mutate(calendarFetchKey);
|
2023-06-23 11:50:05 +00:00
|
|
|
if (issueView === "spreadsheet") mutate(spreadsheetFetchKey);
|
2023-06-23 19:05:43 +00:00
|
|
|
if (payload.parent) mutate(SUB_ISSUES(payload.parent.toString()));
|
2023-05-29 13:05:43 +00:00
|
|
|
mutate(PROJECT_ISSUES_LIST_WITH_PARAMS(activeProject ?? "", params));
|
2023-02-05 11:27:37 +00:00
|
|
|
}
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
if (payload.cycle && payload.cycle !== "") addIssueToCycle(res.id, payload.cycle);
|
2023-02-05 11:27:37 +00:00
|
|
|
if (payload.module && payload.module !== "") addIssueToModule(res.id, payload.module);
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
if (!createMore) handleClose();
|
|
|
|
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
2023-02-17 11:27:31 +00:00
|
|
|
title: "Success!",
|
|
|
|
message: "Issue updated successfully.",
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
})
|
2023-02-17 11:27:31 +00:00
|
|
|
.catch(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
|
|
|
message: "Issue could not be updated. Please try again.",
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleFormSubmit = async (formData: Partial<IIssue>) => {
|
2023-02-02 12:34:13 +00:00
|
|
|
if (!workspaceSlug || !activeProject) return;
|
|
|
|
|
|
|
|
const payload: Partial<IIssue> = {
|
|
|
|
...formData,
|
2023-06-16 13:27:17 +00:00
|
|
|
assignees_list: formData.assignees ?? [],
|
|
|
|
labels_list: formData.labels ?? [],
|
2023-02-17 11:27:31 +00:00
|
|
|
description: formData.description ?? "",
|
|
|
|
description_html: formData.description_html ?? "<p></p>",
|
2023-02-02 12:34:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (!data) await createIssue(payload);
|
|
|
|
else await updateIssue(payload);
|
2023-01-26 18:12:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Transition.Root show={isOpen} as={React.Fragment}>
|
2023-07-12 06:09:40 +00:00
|
|
|
<Dialog as="div" className="relative z-20" onClose={() => handleClose()}>
|
2023-01-26 18:12:20 +00:00
|
|
|
<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"
|
|
|
|
>
|
2023-07-10 07:17:00 +00:00
|
|
|
<div className="fixed inset-0 bg-custom-backdrop bg-opacity-50 transition-opacity" />
|
2023-01-26 18:12:20 +00:00
|
|
|
</Transition.Child>
|
|
|
|
|
2023-03-30 13:15:11 +00:00
|
|
|
<div className="fixed inset-0 z-10 overflow-y-auto">
|
2023-04-24 05:49:53 +00:00
|
|
|
<div className="my-10 flex items-center justify-center p-4 text-center sm:p-0 md:my-20">
|
2023-01-26 18:12:20 +00:00
|
|
|
<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"
|
|
|
|
>
|
2023-07-17 07:30:44 +00:00
|
|
|
<Dialog.Panel className="relative transform rounded-lg border border-custom-border-300 bg-custom-background-100 p-5 text-left shadow-xl transition-all sm:w-full sm:max-w-2xl">
|
2023-01-26 18:12:20 +00:00
|
|
|
<IssueForm
|
2023-02-18 15:49:04 +00:00
|
|
|
issues={issues ?? []}
|
2023-01-26 18:12:20 +00:00
|
|
|
handleFormSubmit={handleFormSubmit}
|
2023-06-23 05:39:57 +00:00
|
|
|
initialData={data ?? prePopulateData}
|
2023-01-26 18:12:20 +00:00
|
|
|
createMore={createMore}
|
|
|
|
setCreateMore={setCreateMore}
|
|
|
|
handleClose={handleClose}
|
|
|
|
projectId={activeProject ?? ""}
|
|
|
|
setActiveProject={setActiveProject}
|
|
|
|
status={data ? true : false}
|
2023-06-06 16:06:00 +00:00
|
|
|
user={user}
|
2023-06-16 13:27:17 +00:00
|
|
|
fieldsToShow={fieldsToShow}
|
2023-01-26 18:12:20 +00:00
|
|
|
/>
|
|
|
|
</Dialog.Panel>
|
|
|
|
</Transition.Child>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Dialog>
|
|
|
|
</Transition.Root>
|
|
|
|
);
|
|
|
|
};
|