From 3e674751e00a9965f16e71526a6c3a9ffe5f27c0 Mon Sep 17 00:00:00 2001 From: LAKHAN BAHETI Date: Wed, 6 Sep 2023 20:54:36 +0530 Subject: [PATCH] feat: editor for create issue --- web/pages/[workspaceSlug]/editor.tsx | 180 ++++++--------------------- 1 file changed, 37 insertions(+), 143 deletions(-) diff --git a/web/pages/[workspaceSlug]/editor.tsx b/web/pages/[workspaceSlug]/editor.tsx index 73f0932ea..0f2b791b9 100644 --- a/web/pages/[workspaceSlug]/editor.tsx +++ b/web/pages/[workspaceSlug]/editor.tsx @@ -1,137 +1,42 @@ import { TipTapEditor } from "components/tiptap"; import type { NextPage } from "next"; -import { useCallback, useEffect, useState } from "react"; +import { useEffect, useState } from "react"; import { Controller, useForm } from "react-hook-form"; -import issuesService from "services/issues.service"; -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 { PrimaryButton, Spinner } from "components/ui"; import { useRouter } from "next/router"; - +import Cookies from "js-cookie"; const Editor: NextPage = () => { - const [user, setUser] = useState(); - const [isSubmitting, setIsSubmitting] = useState<"submitting" | "submitted" | "saved">("saved"); const [isLoading, setIsLoading] = useState("false"); - const { setShowAlert } = useReloadConfirmations(); - const [cookies, setCookies] = useState({}); - const [issueDetail, setIssueDetail] = useState(null); const router = useRouter(); - const { editable } = router.query; + const { workspaceSlug, editable } = router.query; const { - handleSubmit, watch, setValue, control, formState: { errors }, - } = useForm({ + } = useForm({ defaultValues: { - name: "", - description: "", - description_html: "", + data: "", + data_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(() => { - 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); - }, []); - - useEffect(() => { - if (isSubmitting === "submitted") { - setShowAlert(false); - setTimeout(async () => { - setIsSubmitting("saved"); - }, 2000); - } else if (isSubmitting === "submitting") { - setShowAlert(true); - } - }, [isSubmitting, setShowAlert]); - - const submitChanges = async ( - formData: Partial, - workspaceSlug: string, - projectId: string, - issueId: string - ) => { - if (!workspaceSlug || !projectId || !issueId) return; - - const payload: Partial = { - ...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) => { - if (!formData) return; - - await submitChanges( - { - name: issueDetail?.name ?? "", - description: formData.description ?? "", - description_html: formData.description_html ?? "

", - }, - cookies.MOBILE_slug, - cookies.MOBILE_project_id, - cookies.MOBILE_issue_id - ); - }, - [submitChanges] - ); - - return isLoading === "error" ? ( - - ) : isLoading === "true" ? ( + return isLoading === "true" ? (
) : ( -
+
( { !value || value === "" || (typeof value === "object" && Object.keys(value).length === 0) - ? watch("description_html") + ? watch("data_html") : value } editable={editable === "true"} noBorder={true} - workspaceSlug={cookies.MOBILE_slug ?? ""} + workspaceSlug={workspaceSlug?.toString() ?? ""} debouncedUpdatesEnabled={true} - setShouldShowAlert={setShowAlert} - setIsSubmitting={setIsSubmitting} customClassName="min-h-[150px] shadow-sm" editorContentCustomClassNames="pb-9" onChange={(description: Object, description_html: string) => { - setShowAlert(true); - setIsSubmitting("submitting"); onChange(description_html); - setValue("description", description); - handleSubmit(handleDescriptionFormSubmit)().finally(() => { - setIsSubmitting("submitted"); - }); + setValue("data_html", description_html); + setValue("data", JSON.stringify(description)); }} /> )} /> -
- {isSubmitting === "submitting" ? "Saving..." : "Saved"} -
+ {editable === "true" ? ( + { + console.log( + "submitted", + JSON.stringify({ + data_html: watch("data_html"), + }) + ); + }} + > + Submit + + ) : ( + <> + )}
); }; -const ErrorEncountered: NextPage = () => ( - -
-
-
- 404- Page not found -
-
-

Oops! Something went wrong.

-
-
-
-
-); - export default Editor;