mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
feat: editor for create issue
This commit is contained in:
parent
85f797058d
commit
3e674751e0
@ -1,137 +1,42 @@
|
|||||||
import { TipTapEditor } from "components/tiptap";
|
import { TipTapEditor } from "components/tiptap";
|
||||||
import type { NextPage } from "next";
|
import type { NextPage } from "next";
|
||||||
import { useCallback, useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { Controller, useForm } from "react-hook-form";
|
import { Controller, useForm } from "react-hook-form";
|
||||||
import issuesService from "services/issues.service";
|
import { PrimaryButton, Spinner } from "components/ui";
|
||||||
import { ICurrentUserResponse, IIssue } from "types";
|
|
||||||
import useReloadConfirmations from "hooks/use-reload-confirmation";
|
|
||||||
import { Spinner } from "components/ui";
|
|
||||||
import Image404 from "public/404.svg";
|
|
||||||
import DefaultLayout from "layouts/default-layout";
|
|
||||||
import Image from "next/image";
|
|
||||||
import userService from "services/user.service";
|
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
const Editor: NextPage = () => {
|
const Editor: NextPage = () => {
|
||||||
const [user, setUser] = useState<ICurrentUserResponse | undefined>();
|
|
||||||
const [isSubmitting, setIsSubmitting] = useState<"submitting" | "submitted" | "saved">("saved");
|
|
||||||
const [isLoading, setIsLoading] = useState("false");
|
const [isLoading, setIsLoading] = useState("false");
|
||||||
const { setShowAlert } = useReloadConfirmations();
|
|
||||||
const [cookies, setCookies] = useState<any>({});
|
|
||||||
const [issueDetail, setIssueDetail] = useState<IIssue | null>(null);
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { editable } = router.query;
|
const { workspaceSlug, editable } = router.query;
|
||||||
const {
|
const {
|
||||||
handleSubmit,
|
|
||||||
watch,
|
watch,
|
||||||
setValue,
|
setValue,
|
||||||
control,
|
control,
|
||||||
formState: { errors },
|
formState: { errors },
|
||||||
} = useForm<IIssue>({
|
} = useForm({
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
name: "",
|
data: "",
|
||||||
description: "",
|
data_html: "",
|
||||||
description_html: "",
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const getCookies = () => {
|
|
||||||
const cookies = document.cookie.split(";");
|
|
||||||
const cookieObj: any = {};
|
|
||||||
cookies.forEach((cookie) => {
|
|
||||||
const cookieArr = cookie.split("=");
|
|
||||||
cookieObj[cookieArr[0].trim()] = cookieArr[1];
|
|
||||||
});
|
|
||||||
|
|
||||||
setCookies(cookieObj);
|
|
||||||
return cookieObj;
|
|
||||||
};
|
|
||||||
|
|
||||||
const getIssueDetail = async (cookiesData: any) => {
|
|
||||||
try {
|
|
||||||
setIsLoading("true");
|
|
||||||
const userData = await userService.currentUser();
|
|
||||||
setUser(userData);
|
|
||||||
const issueDetail = await issuesService.retrieve(
|
|
||||||
cookiesData.MOBILE_slug,
|
|
||||||
cookiesData.MOBILE_project_id,
|
|
||||||
cookiesData.MOBILE_issue_id
|
|
||||||
);
|
|
||||||
setIssueDetail(issueDetail);
|
|
||||||
setIsLoading("false");
|
|
||||||
setValue("description_html", issueDetail.description_html);
|
|
||||||
setValue("description", issueDetail.description);
|
|
||||||
} catch (e) {
|
|
||||||
setIsLoading("error");
|
|
||||||
console.log(e);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const cookiesData = getCookies();
|
setIsLoading("true");
|
||||||
|
if (!router.query["editable"]) return;
|
||||||
|
setIsLoading("false");
|
||||||
|
const data_html = Cookies.get("data_html");
|
||||||
|
setValue("data_html", data_html ?? "");
|
||||||
|
}, [router.query, setValue]);
|
||||||
|
|
||||||
getIssueDetail(cookiesData);
|
return isLoading === "true" ? (
|
||||||
}, []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isSubmitting === "submitted") {
|
|
||||||
setShowAlert(false);
|
|
||||||
setTimeout(async () => {
|
|
||||||
setIsSubmitting("saved");
|
|
||||||
}, 2000);
|
|
||||||
} else if (isSubmitting === "submitting") {
|
|
||||||
setShowAlert(true);
|
|
||||||
}
|
|
||||||
}, [isSubmitting, setShowAlert]);
|
|
||||||
|
|
||||||
const submitChanges = async (
|
|
||||||
formData: Partial<IIssue>,
|
|
||||||
workspaceSlug: string,
|
|
||||||
projectId: string,
|
|
||||||
issueId: string
|
|
||||||
) => {
|
|
||||||
if (!workspaceSlug || !projectId || !issueId) return;
|
|
||||||
|
|
||||||
const payload: Partial<IIssue> = {
|
|
||||||
...formData,
|
|
||||||
};
|
|
||||||
|
|
||||||
delete payload.blocker_issues;
|
|
||||||
delete payload.blocked_issues;
|
|
||||||
await issuesService
|
|
||||||
.patchIssue(workspaceSlug as string, projectId as string, issueId as string, payload, user)
|
|
||||||
.catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleDescriptionFormSubmit = useCallback(
|
|
||||||
async (formData: Partial<IIssue>) => {
|
|
||||||
if (!formData) return;
|
|
||||||
|
|
||||||
await submitChanges(
|
|
||||||
{
|
|
||||||
name: issueDetail?.name ?? "",
|
|
||||||
description: formData.description ?? "",
|
|
||||||
description_html: formData.description_html ?? "<p></p>",
|
|
||||||
},
|
|
||||||
cookies.MOBILE_slug,
|
|
||||||
cookies.MOBILE_project_id,
|
|
||||||
cookies.MOBILE_issue_id
|
|
||||||
);
|
|
||||||
},
|
|
||||||
[submitChanges]
|
|
||||||
);
|
|
||||||
|
|
||||||
return isLoading === "error" ? (
|
|
||||||
<ErrorEncountered />
|
|
||||||
) : isLoading === "true" ? (
|
|
||||||
<div className="grid place-items-center h-screen w-full">
|
<div className="grid place-items-center h-screen w-full">
|
||||||
<Spinner />
|
<Spinner />
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="flex blur-none shadow-none backdrop:backdrop-blur-none justify-center items-center">
|
<div className="flex-col blur-none shadow-none backdrop:backdrop-blur-none justify-center items-center">
|
||||||
<Controller
|
<Controller
|
||||||
name="description_html"
|
name="data_html"
|
||||||
control={control}
|
control={control}
|
||||||
render={({ field: { value, onChange } }) => (
|
render={({ field: { value, onChange } }) => (
|
||||||
<TipTapEditor
|
<TipTapEditor
|
||||||
@ -140,53 +45,42 @@ const Editor: NextPage = () => {
|
|||||||
!value ||
|
!value ||
|
||||||
value === "" ||
|
value === "" ||
|
||||||
(typeof value === "object" && Object.keys(value).length === 0)
|
(typeof value === "object" && Object.keys(value).length === 0)
|
||||||
? watch("description_html")
|
? watch("data_html")
|
||||||
: value
|
: value
|
||||||
}
|
}
|
||||||
editable={editable === "true"}
|
editable={editable === "true"}
|
||||||
noBorder={true}
|
noBorder={true}
|
||||||
workspaceSlug={cookies.MOBILE_slug ?? ""}
|
workspaceSlug={workspaceSlug?.toString() ?? ""}
|
||||||
debouncedUpdatesEnabled={true}
|
debouncedUpdatesEnabled={true}
|
||||||
setShouldShowAlert={setShowAlert}
|
|
||||||
setIsSubmitting={setIsSubmitting}
|
|
||||||
customClassName="min-h-[150px] shadow-sm"
|
customClassName="min-h-[150px] shadow-sm"
|
||||||
editorContentCustomClassNames="pb-9"
|
editorContentCustomClassNames="pb-9"
|
||||||
onChange={(description: Object, description_html: string) => {
|
onChange={(description: Object, description_html: string) => {
|
||||||
setShowAlert(true);
|
|
||||||
setIsSubmitting("submitting");
|
|
||||||
onChange(description_html);
|
onChange(description_html);
|
||||||
setValue("description", description);
|
setValue("data_html", description_html);
|
||||||
handleSubmit(handleDescriptionFormSubmit)().finally(() => {
|
setValue("data", JSON.stringify(description));
|
||||||
setIsSubmitting("submitted");
|
|
||||||
});
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
<div
|
{editable === "true" ? (
|
||||||
className={`absolute right-5 bottom-5 text-xs text-custom-text-200 border border-custom-border-400 rounded-xl w-[6.5rem] py-1 z-10 flex items-center justify-center ${
|
<PrimaryButton
|
||||||
isSubmitting === "saved" ? "fadeOut" : "fadeIn"
|
className="mt-4 w-[calc(100%-30px)] h-[45px] mx-[15px] text-[17px]"
|
||||||
}`}
|
onClick={() => {
|
||||||
>
|
console.log(
|
||||||
{isSubmitting === "submitting" ? "Saving..." : "Saved"}
|
"submitted",
|
||||||
</div>
|
JSON.stringify({
|
||||||
|
data_html: watch("data_html"),
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Submit
|
||||||
|
</PrimaryButton>
|
||||||
|
) : (
|
||||||
|
<></>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const ErrorEncountered: NextPage = () => (
|
|
||||||
<DefaultLayout>
|
|
||||||
<div className="grid max-h-fit place-items-center p-4">
|
|
||||||
<div className="space-y-8 text-center">
|
|
||||||
<div className="relative mx-auto h-40 w-40 lg:h-40 lg:w-40">
|
|
||||||
<Image src={Image404} layout="fill" alt="404- Page not found" />
|
|
||||||
</div>
|
|
||||||
<div className="space-y-2">
|
|
||||||
<h3 className="text-lg font-semibold">Oops! Something went wrong.</h3>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</DefaultLayout>
|
|
||||||
);
|
|
||||||
|
|
||||||
export default Editor;
|
export default Editor;
|
||||||
|
Loading…
Reference in New Issue
Block a user