
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.
@ultraq/react-async-transition-component
Advanced tools
A container for react-async-component for performing component transitions
A container for react-async-component for performing component transitions.
npm install @ultraq/react-async-transition-component
This component is intended to be used with react-router and
react-transition-group, when loading routes asynchronously with
react-async-component. The addition of route transitions causes all sorts of
weird visual quirks when the async route to go to isn't prepared, ruining the
animated routing that you worked so hard to build! This is where this component
comes to play, acting as a drop-in replacement of react-async-component in
these situations:
<Route path="/payments/confirm" render={() => (
<AsyncTransitionComponent className="route" transitionClassName={transitionClassName}
loader={import('./MyRoute.js')}/>
)}/>
In the example above, there is a base class set using the className prop which
is always present on a <div> that will contain the incoming component. Upon
loading of the incoming component from the loader prop, transitionClassName
(as supplied by react-dynamic-router) is added to the container. This delay
of applying the transition class helps create a smoother transition from one
route/component to the next.
Any props not mentioned below are passed along to the component that is loaded.
className: a CSS class to apply to a container <div>.transitionClassName: a CSS class applied to the container once the
component in loader has finished loading. This class typically initiates
a transition/animation.loader: required, the code through which a component will be loaded. In
the example above we used dynamic imports, but this can be any code that
returns a Promise of the loaded component.FAQs
A container for react-async-component for performing component transitions
We found that @ultraq/react-async-transition-component 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.