mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
83 lines
2.4 KiB
TypeScript
83 lines
2.4 KiB
TypeScript
|
import React, { useState } from "react";
|
||
|
import { useRouter } from "next/router";
|
||
|
import { observer } from "mobx-react-lite";
|
||
|
// hooks
|
||
|
import useToast from "hooks/use-toast";
|
||
|
// services
|
||
|
import { IssueDraftService } from "services/issue";
|
||
|
// components
|
||
|
import { IssueFormRoot } from "components/issues/issue-modal/form";
|
||
|
import { ConfirmIssueDiscard } from "components/issues";
|
||
|
// types
|
||
|
import type { TIssue } from "@plane/types";
|
||
|
|
||
|
export interface DraftIssueProps {
|
||
|
changesMade: Partial<TIssue> | null;
|
||
|
data?: Partial<TIssue>;
|
||
|
onChange: (formData: Partial<TIssue> | null) => void;
|
||
|
onClose: (saveDraftIssueInLocalStorage?: boolean) => void;
|
||
|
onSubmit: (formData: Partial<TIssue>) => Promise<void>;
|
||
|
projectId: string;
|
||
|
}
|
||
|
|
||
|
const issueDraftService = new IssueDraftService();
|
||
|
|
||
|
export const DraftIssueLayout: React.FC<DraftIssueProps> = observer((props) => {
|
||
|
const { changesMade, data, onChange, onClose, onSubmit, projectId } = props;
|
||
|
// states
|
||
|
const [issueDiscardModal, setIssueDiscardModal] = useState(false);
|
||
|
// router
|
||
|
const router = useRouter();
|
||
|
const { workspaceSlug } = router.query;
|
||
|
// toast alert
|
||
|
const { setToastAlert } = useToast();
|
||
|
|
||
|
const handleClose = () => {
|
||
|
if (changesMade) setIssueDiscardModal(true);
|
||
|
else onClose(false);
|
||
|
};
|
||
|
|
||
|
const handleCreateDraftIssue = async () => {
|
||
|
if (!changesMade || !workspaceSlug || !projectId) return;
|
||
|
|
||
|
const payload = { ...changesMade };
|
||
|
|
||
|
await issueDraftService
|
||
|
.createDraftIssue(workspaceSlug.toString(), projectId.toString(), payload)
|
||
|
.then(() => {
|
||
|
setToastAlert({
|
||
|
type: "success",
|
||
|
title: "Success!",
|
||
|
message: "Draft Issue created successfully.",
|
||
|
});
|
||
|
|
||
|
onChange(null);
|
||
|
setIssueDiscardModal(false);
|
||
|
onClose(false);
|
||
|
})
|
||
|
.catch(() =>
|
||
|
setToastAlert({
|
||
|
type: "error",
|
||
|
title: "Error!",
|
||
|
message: "Issue could not be created. Please try again.",
|
||
|
})
|
||
|
);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<ConfirmIssueDiscard
|
||
|
isOpen={issueDiscardModal}
|
||
|
handleClose={() => setIssueDiscardModal(false)}
|
||
|
onConfirm={handleCreateDraftIssue}
|
||
|
onDiscard={() => {
|
||
|
onChange(null);
|
||
|
setIssueDiscardModal(false);
|
||
|
onClose(false);
|
||
|
}}
|
||
|
/>
|
||
|
<IssueFormRoot data={data} onChange={onChange} onClose={handleClose} onSubmit={onSubmit} projectId={projectId} />
|
||
|
</>
|
||
|
);
|
||
|
});
|