New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-image-loader-hoc

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-image-loader-hoc

React High Order Component (HOC) to handle Image Components pre-loading state and onLoad error state

Source
npmnpm
Version
1.0.9
Version published
Weekly downloads
164
130.99%
Maintainers
1
Weekly downloads
 
Created
Source

React Image Loader HOC

Version React Downloads License

React-Image-Loader-HOC is a High Order Component that allows you to enhance your React Image Component by adding features to handle the loading of the image source in an elegant way.

Features

  • Super easy to use.
  • Customizable - Provided props to make it custom for your project.

Installation

$ yarn add react-image-loader-hoc
or
$ npm install --save react-image-loader-hoc

Usage

import React, { Component } from 'react';
import withImageLoader from 'react-image-loader-hoc';

const Image = props => (<img alt="" {...props} />);
const ImageWithLoader = withImageLoader(Image);

class App extends Component {
  render() {
    return (
        <div>
          <ImageWithLoader
            src="https://edmullen.net/test/rc.jpg"
            width="400px"
            height="200px"
          />
        </div>
    );
  }
}

Props

PropTypeRequiredDescriptionDefault
srcStringYesImage url-
onLoadFunctionNoCallback when load is successful-
onErrorFunctionNoCallback when load fails-
loaderCompComponentNoCustom React component to be displayed while loading-
errorCompComponentNoCustom React component to be displayed on Error-
fadeInBooleanNoLoad the image with Fade In effectTrue

Demo

You want to see some examples? Go to Online Demo

Keywords

React

FAQs

Package last updated on 25 Aug 2020

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