Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
rc-resize-observer
Advanced tools
The rc-resize-observer npm package is a React component that allows you to monitor and respond to changes in the size of a DOM element. It leverages the ResizeObserver API to provide a simple and efficient way to perform actions based on element or viewport resizing. This can be particularly useful in responsive design, where you might need to adjust layout or content based on the available space.
Observing size changes
This feature allows you to wrap any component or element with the ResizeObserver component. It will then call the provided `onResize` callback whenever the size of the wrapped element changes, passing an object containing the new size information.
import ResizeObserver from 'rc-resize-observer';
function MyComponent() {
return (
<ResizeObserver
onResize={(sizeInfo) => {
console.log('New size:', sizeInfo);
}}
>
<div>Resize me!</div>
</ResizeObserver>
);
}
This package provides a polyfill for the ResizeObserver API, which is the underlying technology used by rc-resize-observer. While not a React-specific solution, it can be used in React projects to achieve similar functionality by manually attaching and managing observers in component lifecycle methods.
react-resize-detector is another React component designed to listen for element size changes. It offers a similar API to rc-resize-observer but includes additional features such as the ability to specify a specific element to observe via a ref, and the option to throttle or debounce the resize events to improve performance.
Resize observer for React.
https://react-component.github.io/resize-observer/
import ResizeObserver from 'rc-resize-observer';
import { render } from 'react-dom';
render(
<ResizeObserver
onResize={() => {
console.log('resized!');
}}
>
<textarea />
</ResizeObserver>,
mountNode,
);
Property | Type | Default | Description |
---|---|---|---|
disabled | boolean | false | |
onResize | ({ width, height }) => void | - | Trigger when child node resized |
npm install
npm start
rc-resize-observer is released under the MIT license.
FAQs
Resize observer for React
The npm package rc-resize-observer receives a total of 326,968 weekly downloads. As such, rc-resize-observer popularity was classified as popular.
We found that rc-resize-observer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.