Giter VIP home page Giter VIP logo

react-even-simpler-img's Introduction

React Even Simpler Img

Smaller (< 2KB) alternative of react-simple-img that doesn't include IntersectionObserver polyfill.

Install

npm install --save react-even-simpler-img

Import

import { ImageLoader, SimpleImg } from 'react-even-simpler-img';

Usage

First, wrap your app with :

ReactDOM.render(
  <ImageLoader>
    <App />
  </ImageLoader>,
  rootNode
);

Use as if it's a normal HTML Image element

<SimpleImg src="https://picsum.photos/40" />

Lazy Loading

To lazy load images, set importance prop to low:

<SimpleImg src="https://picsum.photos/40" importance="low" />

This library uses IntersectionObserver to lazy load images. If the browser doesn't support it, this library will gracefully degrade to eager loading approach.

Error Handling

To display a fallback when the image fails to load, you need to wrap it with an Error Boundary.

// you need to have your own implementation
// of React error boundary
import ErrorBoundary from './MyErrorBoundary';

<ErrorBoundary fallback={<MyImgFallback />}>
  <SimpleImg src="https://rubbish.xyz/foo/bar.jpg" />
</ErrorBoundary>;

Also check out react-error-boundary for ready-made ErrorBoundary component!

react-even-simpler-img's People

Contributors

raibima avatar

Stargazers

andrew ananta avatar

Watchers

James Cloos avatar

react-even-simpler-img's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.