'use client';
import type { Transition, Variants } from 'motion/react';
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 FolderSyncIconHandle {
startAnimation: () => void;
stopAnimation: () => void;
}
interface FolderSyncIconProps extends HTMLAttributes<HTMLDivElement> {
size?: number;
}
const SYNC_VARIANTS: Variants = {
normal: { rotate: 0 },
animate: { rotate: -360 },
};
const SYNC_TRANSITION: Transition = {
duration: 1.2,
ease: 'easeInOut',
};
const FolderSyncIcon = forwardRef<FolderSyncIconHandle, FolderSyncIconProps>(
({ 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 2v.5" />
<motion.g
variants={SYNC_VARIANTS}
animate={controls}
initial="normal"
transition={SYNC_TRANSITION}
>
<path d="M12 10v4h4" />
<path d="m12 14 1.535-1.605a5 5 0 0 1 8 1.5" />
<path d="M22 22v-4h-4" />
<path d="m22 18-1.535 1.605a5 5 0 0 1-8-1.5" />
</motion.g>
</svg>
</div>
);
}
);
FolderSyncIcon.displayName = 'FolderSyncIcon';
export { FolderSyncIcon };