import React, { FC, memo, useRef } from 'react'; import { Controller, useForm } from 'react-hook-form'; import { Button, FormControl, FormErrorMessage, FormHelperText, FormLabel, HStack, Input, } from '@chakra-ui/react'; import { useTranslation } from 'react-i18next'; import { landingApi } from '../../../__data__/service/landing.api'; import { UploadCarImage } from '../../../models/api'; import { useHandleUploadCarImageResponse } from './helper'; type FormValues = { carImg: File & { fileName: string; }; }; type CarImageFormProps = { orderId: UploadCarImage.Params['orderId']; }; export const CarImageForm: FC = memo(function CarImageForm({ orderId, }) { const { handleSubmit, control, formState: { errors, isSubmitting }, } = useForm({ shouldFocusError: true }); const [uploadCarImage, uploadCarImageMutation] = landingApi.useUploadCarImageMutation(); useHandleUploadCarImageResponse(uploadCarImageMutation); const onSubmit = (formData: FormValues) => { const body = new FormData(); body.append('file', formData.carImg); uploadCarImage({ orderId, body }); }; const fileInputRef = useRef(null); const { t } = useTranslation('~', { keyPrefix: 'dry-wash.order-view.upload-car-image', }); return (
{t('field.label')} { return ( { onChange(event.target.files[0]); handleSubmit(onSubmit)(); }} type='file' hidden /> ); }} /> {errors.carImg?.message} {t('field.help')}
); });