use-resize-observer
A React hook that allows you to use a ResizeObserver to measure an element's size.
Last updated 4 years ago by zeecoder .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install use-resize-observer 
SYNC missed versions from official npm registry.

use-resize-observer


useResizeObserver

A React hook that allows you to use a ResizeObserver to measure an element's size.

npm version build

Highlights

  • Written in TypeScript.
  • Tiny: 500B (minified, gzipped) Monitored by size-limit.
  • Exposes an onResize callback if you need more control.
  • Works with SSR.
  • Works with CSS-in-JS.
  • Supports custom refs in case you had one already.
  • Handles many edge cases you might not even think of. (See this documentation and the test cases.)
  • Throttle / Debounce
  • Tested in real browsers. (Headless Chrome and Firefox).

In Action

CodeSandbox Demo

Install

yarn add use-resize-observer --dev
# or
npm install use-resize-observer --save-dev

Basic Usage

Note that the default builds are not polyfilled! For instructions and alternatives, see the Transpilation / Polyfilling section.

import React from "react";
import useResizeObserver from "use-resize-observer";

const App = () => {
  const { ref, width = 1, height = 1 } = useResizeObserver<HTMLDivElement>();

  return (
    <div ref={ref}>
      Size: {width}x{height}
    </div>
  );
};

Passing in Your Own ref

You can pass in your own ref instead of using the one provided. This can be useful if you already have a ref you want to measure.

const ref = useRef<HTMLDivElement>(null);
const { width, height } = useResizeObserver<HTMLDivElement>({ ref });

You can even reuse the same hook instance to measure different elements:

CodeSandbox Demo

Measuring a raw element

There might be situations where you have an element already that you need to measure. ref now accepts elements as well, not just refs, which means that you can do this:

const { width, height } = useResizeObserver<HTMLDivElement>({
  ref: divElement,
});

Observing components mounted with a delay

Often times you might have to wait before you can mount a component. Unfortunately if you use a ref, the hook will not be able to pick up its "current" value being changed afterwards. (Which is by design by React.)

To handle this case, you can do one of these three:

  • Use the provided callback ref
  • Refactor to a component which you can mount after a "loading" concluded with the hook within it. This means that the hook will be mounted with the measured element, which means that a regular ref will work fine.
  • Use local state to store the custom ref the hook needs to observe, with "null" as its starting value. Then once loading concluded, set this state to the ref. This'll make the hook notice a change from null to the ref, where this time the ref actually has its current value set properly as well. (See example here)

Using a callback ref is recommended, and might look like this:

const { callbackRef, width, height } = useResizeObserver<HTMLDivElement>();
const [loaded, setLoaded] = useState(false);

// Simulating a loading state.
useEffect(() => {
  setTimeout(() => {
    setLoaded(true);
  }, 2000);
}, []);

if (!loaded) {
  return <div>Loading...</div>;
}

return <div ref={callbackRef}></div>;

Using a single hook to measure multiple refs

The hook reacts to ref changes, as it resolves it to an element to observe. This means that you can freely change the custom ref option from one ref to another and back, and the hook will start observing whatever is set in its options.

Opting Out of (or Delaying) ResizeObserver instantiation

In certain cases you might want to delay creating a ResizeObserver instance.

You might provide a library, that only optionally provides observation features based on props, which means that while you have the hook within your component, you might not want to actually initialise it.

Another example is that you might want to entirely opt out of initialising, when you run some tests, where the environment does not provide the ResizeObserver.

(See discussions)

You can do one of the following depending on your needs:

  • Use a callback ref, or provide a custom ref conditionally, only when needed. The hook will not create a ResizeObserver instance up until there's something there to actually observe.
  • Patch the test environment, and make a polyfill available as the ResizeObserver. (This assumes you don't already use the polyfilled version, which would switch to the polyfill when no native implementation was available.)

The "onResize" callback

By the default the hook will trigger a re-render on all changes to the target element's width and / or height.

You can opt out of this behaviour, by providing an onResize callback function, which'll simply receive the width and height of the element when it changes, so that you can decide what to do with it:

import React from "react";
import useResizeObserver from "use-resize-observer";

const App = () => {
  // width / height will not be returned here when the onResize callback is present
  const { ref } = useResizeObserver<HTMLDivElement>({
    onResize: ({ width, height }) => {
      // do something here.
    },
  });

  return <div ref={ref} />;
};

This callback also makes it possible to implement your own hooks that report only what you need, for example:

  • Reporting only width or height
  • Throttle / debounce

Throttle / Debounce

You might want to receive values less frequently than changes actually occur.

While this hook does not come with its own implementation of throttling / debouncing, you can use the onResize callback to implement your own version:

CodeSandbox Demo

Defaults (SSR)

On initial mount the ResizeObserver will take a little time to report on the actual size.

Until the hook receives the first measurement, it returns undefined for width and height by default.

You can override this behaviour, which could be useful for SSR as well.

const { ref, width = 100, height = 50 } = useResizeObserver<HTMLDivElement>();

Here "width" and "height" will be 100 and 50 respectively, until the ResizeObserver kicks in and reports the actual size.

Without Defaults

If you only want real measurements (only values from the ResizeObserver without any default values), then you can just leave defaults off:

const { ref, width, height } = useResizeObserver<HTMLDivElement>();

Here "width" and "height" will be undefined until the ResizeObserver takes its first measurement.

Container/Element Query with CSS-in-JS

It's possible to apply styles conditionally based on the width / height of an element using a CSS-in-JS solution, which is the basic idea behind container/element queries:

CodeSandbox Demo

Transpilation / Polyfilling

By default the library provides transpiled ES5 modules in CJS / ESM module formats.

Polyfilling is recommended to be done in the host app, and not within imported libraries, as that way consumers have control over the exact polyfills being used.

That said, there's a polyfilled CJS module that can be used for convenience (Not affecting globals):

import useResizeObserver from "use-resize-observer/polyfilled";

Related

License

MIT

Current Tags

  • 9.1.0-alpha.1                                ...           alpha (2 years ago)
  • 9.1.0                                ...           latest (2 years ago)

24 Versions

  • 9.1.0                                ...           2 years ago
  • 9.1.0-alpha.1                                ...           2 years ago
  • 9.0.2                                ...           2 years ago
  • 9.0.0                                ...           2 years ago
  • 8.0.0                                ...           3 years ago
  • 7.1.0 [deprecated]           ...           3 years ago
  • 7.0.1                                ...           3 years ago
  • 7.0.0                                ...           4 years ago
  • 7.0.0-alpha.4                                ...           4 years ago
  • 7.0.0-alpha.3                                ...           4 years ago
  • 7.0.0-alpha.1                                ...           4 years ago
  • 6.2.0-alpha.1                                ...           4 years ago
  • 6.1.0                                ...           4 years ago
  • 6.1.0-alpha.3                                ...           5 years ago
  • 6.1.0-alpha.2                                ...           5 years ago
  • 6.1.0-alpha.1                                ...           5 years ago
  • 6.0.0                                ...           5 years ago
  • 5.0.0                                ...           5 years ago
  • 4.0.0                                ...           5 years ago
  • 3.1.0                                ...           6 years ago
  • 3.0.0                                ...           6 years ago
  • 2.0.1                                ...           6 years ago
  • 2.0.0                                ...           6 years ago
  • 1.0.0                                ...           6 years ago
Maintainers (1)
Downloads
Total 0
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dependents (1)

© 2010 - cnpmjs.org x YWFE | Home | YWFE