blob: 259c2210bb3821eebdbf258179f65936e1456cd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import { ComponentPropsWithoutRef, useState, useEffect } from "react";
type BlobImageProps = Omit<ComponentPropsWithoutRef<"img">, "src"> & {
imgRef?: React.Ref<HTMLImageElement>;
src?: Blob | string | null;
};
export default function BlobImage(props: BlobImageProps) {
const { imgRef, src, ...otherProps } = props;
const [url, setUrl] = useState<string | null | undefined>(undefined);
useEffect(() => {
if (src instanceof Blob) {
const url = URL.createObjectURL(src);
setUrl(url);
return () => {
URL.revokeObjectURL(url);
};
} else {
setUrl(src);
}
}, [src]);
return <img ref={imgRef} {...otherProps} src={url ?? undefined} />;
}
|