Package Exports
- use-resize-observer
- use-resize-observer/polyfilled
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (use-resize-observer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
use-resize-observer
A React hook that allows you to use a ResizeObserver to measure an element's size.
In Action
Install
yarn add use-resize-observer --dev
# or
npm install use-resize-observer --save-devBasic 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, height } = useResizeObserver();
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(null);
const { width, height } = useResizeObserver({ ref });You can even reuse the same hook instance to measure different elements:
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 hook composition instead to achieve the same results:
Defaults (SSR)
On initial mount the ResizeObserver will take a little time to report on the actual size.
Until then the hook receives the first measurement, it returns with "1x1" by default.
You can override this behaviour, which could be useful for SSR as well.
const { ref, width, height } = useResizeObserver({
defaultWidth: 100,
defaultHeight: 50
});Here "width" and "height" will be 100 and 50 respectively, until the ResizeObserver kicks in and reports the actual size.
No Defaults
If you only want real measurements (only values from the ResizeObserver without any default values), then you can use the following:
const { ref, width, height } = useResizeObserver({
useDefaults: false
});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:
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