import { type FunctionalComponent } from "preact"; import { useEffect, useState } from "preact/hooks"; import { EmptyComponent } from "@/components/TestResult/TestResultSteps/wrongAttachment"; import * as styles from "@/components/TestResult/TestResultSteps/styles.scss"; export const AttachmentImage: FunctionalComponent<{ attachment: { img: string; originalFileName: string }; }> = ({ attachment }) => { const [isValidImage, setIsValidImage] = useState(true); useEffect(() => { if (attachment?.img) { const img = new Image(); img.onload = () => setIsValidImage(true); img.onerror = () => setIsValidImage(false); img.src = attachment.img; } }, [attachment?.img]); if (!attachment?.img || !isValidImage) { return (