
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
react-dom-resize-observer
Advanced tools
Hook to provide a performant mechanism by which code can monitor an element for changes to its size, with notifications being delivered to the observer each time the size changes.
Hook to provide a performant mechanism by which code can monitor an element for changes to its size, with notifications being delivered to the observer each time the size changes.
$ npm install react-dom-resize-observer
export function App() {
// Pass a callback to be fired on resize event.
// Wrap in `useCallback` or in module scope for referential stability.
const onResize = useCallback((entry: HTMLDivElement | null) => {
if (entry === null) return
entry.style.color = "orange"
}, [])
/*
* Pass the element type you're going to attach the observer to. In this case, `HTMLDivElement`.
* This generic type parameter helps infer the correct typing for `onResize` and `observer`.
*/
const {
// New dimensions when resize is observed.
entry,
// Callback to pass as a ref to give this hook access to the DOM element.
observer,
// Callback to disconnect observing completely.
disconnect
// `onResize` can be used to get access to the raw DOM element when resizing occurs.
// Can be used to perform some imperative updates or other logic on element resize event.
} = useResizeObserver<HTMLDivElement>(onResize)
return (
// Attack the observer as a ref to the DOM.
<div ref={observer} onClick={disconnect}>
App
</div>
)
}
FAQs
React hook implementing the Resize Observer API.
The npm package react-dom-resize-observer receives a total of 22 weekly downloads. As such, react-dom-resize-observer popularity was classified as not popular.
We found that react-dom-resize-observer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.