use-fetch-image
v1.0.3
Published
React hook to fetch an image
Downloads
5
Maintainers
Readme
use-fetch-image
React hook for fetch an image with the download percentage.
Install
Yarn
yarn add use-fetch-imageNPM
npm install use-fetch-imageUsage
import { useImage } from "use-fetch-image";
export default () => {
const url = 'https://picsum.photos/400/300'; // demo picture
const [ image, status, progress ] = useImage(url);
return (!!image && status === 'loaded') ? (
<img src={image.src} alt="use-image" />
) : (
<div>Loading... ({(progress * 100) << 0}%)</div>
);
}API
| Returns | Desc |
|------------|------|
| image | the image DOM element or undefined before image is loaded |
| status | the download status, including "loading", "loaded", "error" |
| progress | the download percentage, it is a floating point number, from 0 to 1 |
Note
progresscalculation depends on thecontent-lengthvalue in the HTTP header.
Some image servers will not setcontent-lengthin the HTTP header when responding.
At this time, the progress will be set to1when the download status is"loaded".
Note
This hook is fully compatible with use-image inkonvajs.
License
MIT
