
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
react-render-image
Advanced tools
Render an image in React.
npm install --save react-render-image
// OR
yarn add react-render-image
import React from 'react';
import {Image, useImage} from 'react-render-image';
const {image, loaded, errored} = useImage({src});
<Image src={src} loading="🔄" loaded="✅" errored="❌"/>
<Image src={src} loading="🔄" errored="❌">
{({image, loaded, errored}) => {
return <img src={image.src} width={image.width} height={image.height}/>;
}}
</Image>
string
The image URI.
string
The image URIs to use given various conditions. See the MDN for further detail.
string
The width of the image given various conditions. See the MDN for further detail.
React.Node
Rendered when the image is loading
.
React.Node
Rendered when the image is loaded
.
React.Node
Rendered when the image is errored
.
({ image?: Image; status: enum, loaded: boolean; errored: boolean; }) => React.Node
Called to render something when the image is loading
, loaded
or errored
.
Parameters:
status
- An enum indicating whether the image is loading, loaded or errored.loaded
- A boolean
indicating whether the image has loaded.errored
- A boolean
indicating whether the image has errored.image
- The Image
object. This can be used to inspect the width
and height
of the image, or it can be drawn onto a canvas using ctx.drawImage()
.Returns:
RectNode
() => void
Called when the image has been loaded.
() => void
Called when the image cannot be loaded.
useImage({ src?: string; srcset: string[]; sizes: string[]; }) => {status, image?: Image}
Parameters:
src
- An enum indicating whether the image is loading, loaded or errored.srcset
- The image URIs to use given various conditions. See the MDN for further detail.sizes
- The image URIs to use given various conditions. See the MDN for further detail.Returns:
status
- An enum indicating whether the image is loading, loaded or errored.loaded
- Aboolean
indicating whether the image has loaded.errored
- Aboolean
indicating whether the image has erroredimage
- TheImage
object. This can be used to inspect thewidth
andheight
of the image, or it can be drawn onto a canvas usingctx.drawImage()
.
FAQs
Render an image in React.
The npm package react-render-image receives a total of 8,147 weekly downloads. As such, react-render-image popularity was classified as popular.
We found that react-render-image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.