
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-delegate-transition-group
Advanced tools
Low-level API for custom animations.
Essentially the same as react-transition-group except that lifecycle hooks (called when children are added or removed) are handled by the parent component rather than its children.
npm install --save react-delegate-transition-group
import DelegateTransitionGroup from 'react-delegate-transition-group';
import { createElement } from 'react';
import { findDOMNode } from 'react-dom';
class ExampleAnimation extends Component {
childWillEnter = (component, callback) => {
const parent = findDOMNode(this);
const child = findDOMNode(component);
const { height } = child.getBoundingClientRect();
parent.style.height = `${height}px`;
setTimeout(callback, 400);
}
render() {
return createElement(DelegateTransitionGroup, { ...this.props, onEnter: this.childWillEnter });
}
}
export default ExampleAnimation;
For example implementations see:
onAppear(component, callback) - Called at the same time as componentDidMount() for components that are initially mounted in a DelegateTransitionGroup.
It will block other animations from occurring until callback is called. It is only called on the initial render of a DelegateTransitionGroup
onEnter(component, callback) - Called at the same time as componentDidMount() for components added to an existing DelegateTransitionGroup.
It will block other animations from occurring until callback is called. It will not be called on the initial render of a TransitionGroup.
onLeave(component, callback) - Called when the child has been removed from the DelegateTransitionGroup.
Though the child has been removed, DelegateTransitionGroup will keep it in the DOM until callback is called.
FAQs
Low-level API for custom animations
We found that react-delegate-transition-group 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.