This is a lightweight React <Img />
component, which helps you handle image UX (user experience) and performance optimization as a professional guy π€
It empowers the standard img
tag by many cool features without breaking your original development experience. Ideally, it can be an img
tag replacement for React.js.
β‘οΈ Live demo: https://react-cool-img.netlify.app
β€οΈ it? βοΈ it on GitHub or Tweet about it.
- πΌ Placeholders for satisfying various image loading states (e.g. loading image > actual image > error image).
- π Smart lazy loading with performant and efficient way, using Intersection Observer.
- π€ Built-in auto-retry mechanism. User won't miss out your important information.
- π« Aborts any current image downloads on component unmount potentially saving bandwidth and browser resources.
- π Supports server-side rendering / Javascript is disabled / SEO.
- π Supports TypeScript type definition.
- π¦ Tiny size (~ 2kB gzipped). No external dependencies, aside for the
react
andreact-dom
. - π° Easy to use.
β οΈ Most modern browsers support Intersection Observer natively. You can also add polyfill for full browser support.
react-cool-img
is based on React Hooks. It requires react v16.8+
.
This package is distributed via npm.
$ yarn add react-cool-img
# or
$ npm install --save react-cool-img
The default props of the component has been fine-tuned for the purpose of loading optimization. Let's start it as the following example.
import Img from "react-cool-img";
// Suggest to use low quality or vector images
import loadingImage from "./images/loading.gif";
import errorImage from "./images/error.svg";
const App = () => (
<Img
placeholder={loadingImage}
src="https://the-image-url"
error={errorImage}
alt="REACT COOL IMG"
/>
);
Don't want an image placeholder? No worries, you can use inline styles or CSS for it. The component is fully compatible with the development experience of normal img
tag.
import Img from "react-cool-img";
const App = () => (
<Img
style={{ backgroundColor: "grey", width: "480", height: "320" }}
src="https://the-image-url"
alt="REACT COOL IMG"
/>
);
The image component working similar with standard img
tag and with the following props.
Prop | Type | Default | Description |
---|---|---|---|
src |
string | Image source. It's required . Support formats |
|
srcSet |
string | Image sources for responsive images. For src prop only. Reference article |
|
sizes |
string | Image sizes for responsive images. For src prop only. Reference article |
|
width |
string | Width of the image in px. | |
height |
string | Height of the image in px. | |
placeholder |
string | Placeholder image source. Support formats |
|
error |
string | Error image source. It'll replace Placeholder image. Support formats |
|
alt |
string | An alternate text for an image section. | |
decode |
boolean | true |
Use img.decode() to pre-decode the image before render it. Useful to prevent main thread from blocking by decoding of large image. |
lazy |
boolean | true |
Turn on/off lazy loading. Using Intersection Observer |
cache |
boolean | true |
Instantly load images which have been cached when possible to abort the lazy loading behavior. Reference article |
debounce |
number | 300 |
How much to wait in milliseconds that the image has to be in viewport before starting to load. This can prevent images from being downloaded while the user scrolls quickly past them. |
observerOptions |
object | { root: window, rootMargin: '50px', threshold: 0.01 } |
See the observerOptions section. |
retry |
object | { count: 3, delay: 2, acc: '*' } |
See the retry section. |
... |
Find more props and events. |
All the properties are optional
.
root: Element | null
- the element that is used as the viewport for checking visibility of the target. Must be the ancestor of the target. Defaults to the browser viewport if not specified or ifnull
.rootMargin: string
- margin around the root. Can have values similar to the CSS margin property, e.g."10px 20px 30px 40px"
(top, right, bottom, left). The values can be percentages. This set of values serves to grow or shrink each side of the root element's bounding box before computing intersections.threshold: number
- a single number between 0 and 1, which indicate at what percentage of the target's visibility the observer's callback should be executed. A value of 0 means as soon as even one pixel is visible, the callback will be run. 1 means that the threshold isn't considered passed until every pixel is visible.
All the properties are optional
.
count: number
- specifies the number of times you want to retry. Set it to 0 will disable auto-retry.delay: number
- specifies the delay between retries in seconds.acc: string | false
- specifies how the delay should be accumulated with each retry. It accepts the following values:'*' (default)
- multiply delay after each subsequent retry by the givendelay
value, e.g.delay: 2
means retry will run after 2 seconds, 4 seconds, 8 seconds, and so on.'+'
- increment delay after each retry by the givendelay
value, e.g.delay: 2
means retry will run after 2 seconds, 4 seconds, 6 seconds, and so on.false
- keep the delay constant between retries, e.g.delay: 2
means retry will run every 2 seconds.
Lazy image loading via the Intersection Observer API is good. But could it be greater to download an image only when user want to see it? Or bypass lazy loading for cached images? The answer is yes and these features already be built into react-cool-img
by the debounce
and cache
props.
By the debounce
prop, an image can wait to be downloaded while it's in the viewport for a set time. In cases where you have a long list of images that the user might scroll through inadvertently. At this time loading images can cause unnecessary waste of bandwidth and processing time.
import Img from "react-cool-img";
import defaultImg from "./images/default.svg";
const App = () => (
<Img
placeholder={defaultImg}
src="https://the-image-url"
debounce={1000} // Default is 300 (ms)
alt="REACT COOL IMG"
/>
);
By the cache
prop, images you already have cached will abort lazy loading until user visit your app next time. Lazy loading is set up for any remaining images which were not cached. This is helpful for UX, because there's not much extra work to load cached images immediately and is an easy win for making the UI looks more intuitive.
import Img from "react-cool-img";
import defaultImg from "./images/default.svg";
const App = () => (
<Img
placeholder={defaultImg}
src="https://the-image-url"
cache // Default is true, just for demo
alt="REACT COOL IMG"
/>
);
There're two challenges when doing lazy image loading with server-side rendering. One is Javascript availability the other is SEO. Fortunately, we can use <noscript>
tag to solve these problems. It will render the actual image as fallback if Javascript is disabled thus user won't see the image which be stuck with the placeholder. Moreover, the <noscript>
tag ensure the image is indexed by search engine bots even if they cannot fully understand our JavaScript code. Take a look at how magic happens.
// src/Img.tsx
const Img = () => {
// ...
return (
<>
<img
class="image"
src="https://the-placeholder-image"
alt="There's no magic"
/>
<noscript>
<img
class="image"
src="https://the-actual-image"
alt="The magic begins in here..."
/>
</noscript>
</>
);
};
Intersection Observer has good support amongst browsers, but it's not universal. You'll need to polyfill browsers that don't support it. Polyfills is something you should do consciously at the application level. Therefore react-cool-img
doesn't include it.
You can use W3C's polyfill:
$ yarn add intersection-observer
# or
$ npm install --save intersection-observer
Then import it at your app's entry point:
import "intersection-observer";
Or use dynamic imports to only load the file when the polyfill is required:
(async () => {
if (!("IntersectionObserver" in window))
await import("intersection-observer");
})();
Polyfill.io is an alternative way to add the polyfill when needed.
Thanks goes to these wonderful people (emoji key):
Welly π» π π§ |
This project follows the all-contributors specification. Contributions of any kind welcome!