'use client';
import type { HTMLAttributes } from 'react';
import { forwardRef, useCallback, useImperativeHandle, useRef } from 'react';
import { motion, useAnimation } from 'motion/react';
import { cn } from '@/lib/utils';
export interface FolderGit2IconHandle {
startAnimation: () => void;
stopAnimation: () => void;
}
interface FolderGit2IconProps extends HTMLAttributes<HTMLDivElement> {
size?: number;
}
const DURATION = 0.3;
const CALCULATE_DELAY = (i: number) => {
if (i === 0) return 0.1;
return i * DURATION + 0.1;
};
const FolderGit2Icon = forwardRef<FolderGit2IconHandle, FolderGit2IconProps>(
({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {
const controls = useAnimation();
const isControlledRef = useRef(false);
useImperativeHandle(ref, () => {
isControlledRef.current = true;
return {
startAnimation: () => controls.start('animate'),
stopAnimation: () => controls.start('normal'),
};
});
const handleMouseEnter = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
controls.start('animate');
} else {
onMouseEnter?.(e);
}
},
[controls, onMouseEnter]
);
const handleMouseLeave = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
controls.start('normal');
} else {
onMouseLeave?.(e);
}
},
[controls, onMouseLeave]
);
return (
<div
className={cn(className)}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
{...props}
>
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5" />
<motion.circle
cx="13"
cy="12"
r="2"
transition={{
duration: DURATION,
delay: CALCULATE_DELAY(0),
opacity: { delay: CALCULATE_DELAY(0) },
}}
variants={{
normal: { pathLength: 1, opacity: 1, transition: { delay: 0 } },
animate: {
pathLength: [0, 1],
opacity: [0, 1],
},
}}
animate={controls}
/>
<motion.path
d="M18 19c-2.8 0-5-2.2-5-5v8"
transition={{
duration: DURATION,
delay: CALCULATE_DELAY(1),
opacity: { delay: CALCULATE_DELAY(1) },
}}
variants={{
normal: {
pathLength: 1,
pathOffset: 0,
opacity: 1,
transition: { delay: 0 },
},
animate: {
pathLength: [0, 1],
opacity: [0, 1],
pathOffset: [1, 0],
},
}}
animate={controls}
/>
<motion.circle
cx="20"
cy="19"
r="2"
transition={{
duration: DURATION,
delay: CALCULATE_DELAY(2),
opacity: { delay: CALCULATE_DELAY(2) },
}}
variants={{
normal: { pathLength: 1, opacity: 1, transition: { delay: 0 } },
animate: {
pathLength: [0, 1],
opacity: [0, 1],
},
}}
animate={controls}
/>
</svg>
</div>
);
}
);
FolderGit2Icon.displayName = 'FolderGit2Icon';
export { FolderGit2Icon };