import { Button, FormControl, FormErrorMessage, FormLabel, Input, Textarea, Container, Heading, Box } from "@chakra-ui/react" import { useQueryClient, useMutation } from "@tanstack/react-query" import { useEffect, useState } from "react" import useCustomToast from "../../hooks/useCustomToast" import { CoursesService, type ApiError, CourseCreate, CourseDetailsPublic } from "../../client" import { handleError } from "../../utils" import { type SubmitHandler, useForm } from "react-hook-form" import { EditorState, ContentState, convertToRaw } from 'draft-js'; import { Editor } from "react-draft-wysiwyg"; import draftToHtml from 'draftjs-to-html'; import htmlToDraft from 'html-to-draftjs'; import "react-draft-wysiwyg/dist/react-draft-wysiwyg.css"; const CourseDetails = () => { const queryClient = useQueryClient(); const courseDetails = queryClient.getQueryData(['course']) as CourseDetailsPublic | undefined; const toolbar = { options: ['inline', 'blockType', 'fontSize', 'list', 'textAlign', 'history', 'embedded', 'emoji', 'image'], inline: { inDropdown: true }, list: { inDropdown: true }, textAlign: { inDropdown: true }, link: { inDropdown: true }, history: { inDropdown: true }, } const showToast = useCustomToast() const [contentEditorState, setContentEditorState] = useState(EditorState.createEmpty()); const [contents, setContent] = useState(''); const [infoEditorState, setInfoEditorState] = useState(EditorState.createEmpty()); const [info, setInfo] = useState(''); const [longDescriptionEditorState, setLongDescriptionEditorState] = useState(EditorState.createEmpty()); const [longDescription, setlongDescription] = useState(''); const [remarksEditorState, setRemarksEditorState] = useState(EditorState.createEmpty()); const [remarks, setRemarks] = useState(''); const { register, handleSubmit, reset, //getValues, setValue, formState: { isSubmitting, errors, isDirty }, } = useForm({ mode: "onBlur", criteriaMode: "all", defaultValues: { title: courseDetails?.title, sort_description: courseDetails?.sort_description, long_description: courseDetails?.long_description, remark: courseDetails?.remark, information: courseDetails?.information, contant: courseDetails?.contant, } }) useEffect(() => { reset({}, { keepDirty: true }); if (courseDetails) { setValue('title', courseDetails.title, { shouldDirty: true }); setValue('sort_description', courseDetails.sort_description, { shouldDirty: true }); setValue('long_description', courseDetails.long_description, { shouldDirty: true }); setValue('remark', courseDetails.remark, { shouldDirty: true }); setValue('information', courseDetails.information, { shouldDirty: true }); setValue('contant', courseDetails.contant, { shouldDirty: true }); // Update other form fields as needed } if (courseDetails?.long_description) { const contentBlock = htmlToDraft(courseDetails.long_description); if (contentBlock) { const contentState = ContentState.createFromBlockArray(contentBlock.contentBlocks); const editorState = EditorState.createWithContent(contentState); setLongDescriptionEditorState(editorState); // setValue('long_description', courseDetails.long_description); } } if (courseDetails?.remark) { const contentBlock = htmlToDraft(courseDetails.remark); if (contentBlock) { const contentState = ContentState.createFromBlockArray(contentBlock.contentBlocks); const editorState = EditorState.createWithContent(contentState); setRemarksEditorState(editorState); //setValue('remark', courseDetails.remark); } } if (courseDetails?.information) { const contentBlock = htmlToDraft(courseDetails.information); if (contentBlock) { const contentState = ContentState.createFromBlockArray(contentBlock.contentBlocks); const editorState = EditorState.createWithContent(contentState); setInfoEditorState(editorState); //setValue('information', courseDetails.information); } } if (courseDetails?.contant) { const contentBlock = htmlToDraft(courseDetails.contant); if (contentBlock) { const contentState = ContentState.createFromBlockArray(contentBlock.contentBlocks); const editorState = EditorState.createWithContent(contentState); setContentEditorState(editorState); //setValue('contant', courseDetails.contant); } } }, [courseDetails]); const mutation = useMutation({ mutationFn: (data: CourseCreate) => CoursesService.updateCourse({ id: courseDetails?.id ?? '', requestBody: data }), onSuccess: () => { showToast("Success!", "Course create successfully.", "success") }, onError: (err: ApiError) => { handleError(err, showToast) }, onSettled: () => { queryClient.invalidateQueries({ queryKey: ["courses"] }) //history.go(-1) }, }) const onSubmit: SubmitHandler = async (data) => { mutation.mutate(data) } return ( Course Details Title {errors.title && ( {errors.title.message} )} Short Description