
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
use-spring-transition
Advanced tools
Utilize react-transition-group
functionality into the hook with spring animation support
// Menu.tsx
import cx from 'clsx';
import { useSpringTransition } from 'use-spring-transition';
import styles from './Menu.module.css';
const Menu = () => {
const [opened, setOpened] = useState(false);
const transition = useSpringTransition(
opened,
{ mass: 1, stiffness: 80, damping: 20 },
{
from: 0,
to: 500,
},
);
if (transition.stage === 'closed') {
return null;
}
return (
<div
className={styles.menu}
style={{ height: transition.springValue }}
>
Menu
</div>
);
};
/* Menu.module.css */
.menu {
width: 500px;
}
// Viewer.tsx
import cx from 'clsx';
import { useSpringTransition } from 'use-spring-transition';
import styles from './Viewer.module.css';
const Viewer = ({
images,
}: {
images: {
id: string;
url: sring;
alt: string;
}[];
}) => {
const [currentIndex, setCurrentIndex] =
useState(0);
const transitions = useSpringTransition(
images[currentIndex],
{ mass: 1, stiffness: 180, damping: 30 },
{ from: 100, to: { open: 0, close: -100 } },
);
return (
<div className={styles.viewer}>
{transitions.map(
(transition) =>
transition.value && (
<img
className={cx(
styles.image,
styles[transition.stage],
)}
style={{
transform: `translate3d(${transition.springValue}px, 0, 0)`,
}}
key={transition.value.id}
src={transition.value.url}
alt={transition.value.alt}
/>
),
)}
</div>
);
};
/* Viewer.module.css */
.viewer {
height: 100%;
width: 100%;
position: relative;
}
.image {
height: 100%;
width: 100%;
}
.image.close,
.image.closing {
position: absolute;
top: 0;
left: 0;
}
SpringOptions
interface SpringOptions {
mass?: number;
stiffness?: number;
damping?: number;
initialVelocity?: number;
threshold?: number;
}
Defaults:
mass: 1;
stiffness: 100;
damping: 10;
initialVelocity: 0;
threshold: 0.01;
Description:
mass, stiffness, damping, initialVelocity
- spring animation configurationthreshold
- special property for ending a spring animation when spring value difference on each frame lower than threshold
10 times in a row*.*spring animation can generate a small difference on each frame before reach to
value. For example, we want to animate opacity from 0 to 1. Spring animation can generate 0.991233, 0.992533, 0.993334... in a near minute before reach 1 (or never reach at all). To avoid this long useless animation we can finish animation when spring value is near the to
value. That's why we use threshold
property.
Stage
type Stage =
// closed -> opened transition started
| 'open'
// closed -> opened transition in proccess
| 'opening'
// closed -> opened transition ended
| 'opened'
// opened -> closed transition started
| 'close'
// opened -> closed transition in proccess
| 'closing'
// opened -> closed transition ended
| 'closed';
Values
interface Values {
from: number;
to:
| number
// you can use different "to" for closed -> opened and opened -> closed transitions
| {
open: number;
close: number;
};
}
Defaults:
{ from: 0, to: 1 }
Options
type Options =
// spring
| SpringOptions
// transiton-duration
| number
// you can use different animations for closed -> opened and opened -> closed transitions
| {
close: SpringOptions | number;
open: SpringOptions | number;
};
Defaults:
{
}
HookOptions
interface HookOptions<T> {
// item unique key getter (key can be same as you use for "key" prop)
getKey?: (item: T) => any;
// keep transitions with "closed" stage (they filtered by default)
keepClosed?: boolean;
}
Defaults:
getKey: (item) => item;
keepClosed: false;
Transition
interface Transition<T> {
value: T;
stage: Stage;
// animated value (it can be height or opacity, for example)
springValue: number;
}
useSpringTransition
// as open/close transition
export function useSpringTransition(
opened: boolean,
options?: Options,
values?: Values,
): Omit<Transition<boolean>, 'value'>;
// as value transition
export function useSpringTransition<T>(
value: T,
options?: Options,
values?: Values,
hookOptions?: HookOptions<T>,
): Transition<T>[];
// as list transition
export function useSpringTransition<T>(
value: T[],
options?: Options,
values?: Values,
hookOptions?: HookOptions<T>,
): Transition<T>[];
FAQs
Hooks for spring transition
We found that use-spring-transition 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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.