From 89806d334fe2c7ef0ea8b3d12c74759e8e3ba860 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 4 Aug 2020 02:31:59 +0800 Subject: ... --- Timeline/ClientApp/src/app/common/BlobImage.tsx | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Timeline/ClientApp/src/app/common/BlobImage.tsx (limited to 'Timeline/ClientApp/src/app/common/BlobImage.tsx') diff --git a/Timeline/ClientApp/src/app/common/BlobImage.tsx b/Timeline/ClientApp/src/app/common/BlobImage.tsx new file mode 100644 index 00000000..91497705 --- /dev/null +++ b/Timeline/ClientApp/src/app/common/BlobImage.tsx @@ -0,0 +1,27 @@ +import React from 'react'; + +import { ExcludeKey } from '../utilities/type'; + +const BlobImage: React.FC< + ExcludeKey, 'src'> & { blob?: Blob } +> = (props) => { + const { blob, ...otherProps } = props; + + const [url, setUrl] = React.useState(undefined); + + React.useEffect(() => { + if (blob != null) { + const url = URL.createObjectURL(blob); + setUrl(url); + return () => { + URL.revokeObjectURL(url); + }; + } else { + setUrl(undefined); + } + }, [blob]); + + return ; +}; + +export default BlobImage; -- cgit v1.2.3