import { ExclamationCircleIcon } from '@heroicons/react/24/outline'; import React, { ChangeEvent, useState } from 'react'; type FileInputProps = { id: string; name: string; onFileSelect: (file: { name: string; content: string }) => void; requiredField?: boolean; requiredAlert?: boolean; label?: string; }; const FileInput: React.FC = ({ id, name, onFileSelect, requiredField = false, requiredAlert = false, label, }) => { const [fileName, setFileName] = useState(''); const [isFocused, setIsFocused] = useState(false); const handleFileChange = (e: ChangeEvent) => { const file = e.target.files?.[0]; if (file) { setFileName(file.name); const reader = new FileReader(); reader.onloadend = () => { // eslint-disable-next-line @typescript-eslint/consistent-type-assertions const base64String = reader.result as string; onFileSelect({ name: file.name, content: base64String }); }; reader.readAsDataURL(file); } else { setFileName(''); onFileSelect({ name: '', content: '' }); } }; return (
{label ? ( ) : null}
setIsFocused(false)} onChange={handleFileChange} onFocus={() => setIsFocused(true)} type="file" /> {!isFocused && requiredAlert && !fileName ? ( ) : null}
{fileName ? (

{fileName}

) : null}
); }; export default FileInput;