Socket
Book a DemoInstallSign in
Socket

react-render-image

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-render-image

Render an image in React using a render prop.

1.0.2
Source
npmnpm
Version published
Weekly downloads
7.6K
-25.09%
Maintainers
1
Weekly downloads
 
Created
Source

react-render-image

Render an image in React using a render prop.

Installation

npm install --save react-render-image

Usage

Example (source)

import React from 'react';
import Image from 'react-render-image';

<Image src={src}>
  {({image, loaded, errored}) => {

    if (loaded) {
      return <img src={src} width={image.width} height={image.height}/>;
    }

    if (errored) {
      return <span></span>;
    }

    return <span>Loading...</span>;
  }}
</Image>

API

Props

src

A string. The image URL.

onLoad

A function called when the image is loaded.

onError

A function called when the image cannot be loaded.

children

The function called to render something when the image is loading, loaded or errored.

Parameters:

  • status - An object containing:
    • loaded - A boolean indicating whether the image has loaded.
    • errored - A booleanindicating whether the image has errored.
    • image - The Image object which can be inspected to determine the width and height of the image, or drawn onto a canvas with ctx.drawImage().

Returns:

A RectNode.

Keywords

react

FAQs

Package last updated on 11 Dec 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.