import {useState } from 'react'; import { Button, FormControl, FormErrorMessage, FormLabel, Input, Modal, ModalBody, ModalCloseButton, ModalContent, ModalFooter, ModalHeader, ModalOverlay, NumberInput, NumberInputField, NumberInputStepper, NumberIncrementStepper, NumberDecrementStepper, Box, Image, } from "@chakra-ui/react" import { useMutation, useQueryClient } from "@tanstack/react-query" import { type SubmitHandler, useForm } from "react-hook-form" import { type ApiError, AboutUsService, AboutUsUpdate, AboutUsPublic } from "../../client" import useCustomToast from "../../hooks/useCustomToast" import { handleError } from "../../utils" 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"; interface EditAboutUsProps { isOpen: boolean onClose: () => void aboutUs: AboutUsPublic } // type FileUploadProps = { // register: UseFormRegisterReturn // accept?: string // multiple?: boolean // children?: ReactNode // } // const FileUpload = (props: FileUploadProps) => { // const { register, accept, multiple, children } = props // const inputRef = useRef(null) // const { ref, ...rest } = register as { ref: (instance: HTMLInputElement | null) => void } // const handleClick = () => inputRef.current?.click() // return ( // // { // ref(e) // inputRef.current = e // }} // /> // <> // {children} // // // ) // } const EditAboutUs = ({ aboutUs, isOpen, onClose }: EditAboutUsProps) => { const url = import.meta.env.VITE_API_URL const queryClient = useQueryClient() const showToast = useCustomToast() const { register, handleSubmit, reset, formState: { errors, isSubmitting }, } = useForm({ mode: "onBlur", criteriaMode: "all", defaultValues: { index: aboutUs.index, title: aboutUs.title, description: aboutUs.description, image: undefined, }, }) const [editorState, setEditorState] = useState(() => { const contentBlock = htmlToDraft(aboutUs.description); if (contentBlock) { const contentState = ContentState.createFromBlockArray(contentBlock.contentBlocks); return EditorState.createWithContent(contentState); } return EditorState.createEmpty(); }); const [content, setContent] = useState(aboutUs.description); // const validateFiles = (value: File) => { // if (typeof value === 'string') return true; // const fsMb = value.size / (1024 * 1024) // const MAX_FILE_SIZE = 10 // if (fsMb > MAX_FILE_SIZE) { // return 'Max file size 10mb' // } // return true // } // type FormValues = { // file_: FileList // } const mutation = useMutation({ mutationFn: (data: AboutUsUpdate) => AboutUsService.updateAboutUs({ id: aboutUs.id, formData: data }), onSuccess: () => { showToast("Success!", "About Us update successfully.", "success") reset() setEditorState(EditorState.createEmpty()); onClose() }, onError: (err: ApiError) => { handleError(err, showToast) }, onSettled: () => { queryClient.invalidateQueries({ queryKey: ["aboutUs"] }) }, }) const onSubmit: SubmitHandler = (data) => { if (data.image instanceof FileList && data.image.length > 0) { data.image = data.image[0] }else{ data.image = null } mutation.mutate(data) console.log(data) } return ( <> Edit About Us Title {errors.title && ( {errors.title.message} )} { setEditorState(newState); const newContent = draftToHtml(convertToRaw(newState.getCurrentContent())); setContent(newContent); reset({ description: newContent, }); }} 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 }, }} /> Index {errors.index && ( {errors.index.message} )} {'Image Upload'} {errors.image && errors?.image.message} ) } export default EditAboutUs