'use client';
import type { 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 ShowerHeadIconHandle {
startAnimation: () => void;
stopAnimation: () => void;
}
interface ShowerHeadIconProps extends HTMLAttributes<HTMLDivElement> {
size?: number;
}
const DROP_VARIANTS: Variants = {
animate: {
transition: {
staggerChildren: 0.2,
},
},
};
const DROP_CHILD_VARIANTS: Variants = {
normal: {
opacity: 1,
},
animate: {
opacity: [1, 0.2, 1],
transition: {
duration: 1,
repeat: Infinity,
ease: 'easeInOut',
},
},
};
const DROP_PATH = [
{ id: 'drop1', d: 'M14 17v.01' },
{ id: 'drop2', d: 'M10 16v.01' },
{ id: 'drop3', d: 'M13 13v.01' },
{ id: 'drop4', d: 'M16 10v.01' },
{ id: 'drop5', d: 'M11 20v.01' },
{ id: 'drop6', d: 'M17 14v.01' },
{ id: 'drop7', d: 'M20 11v.01' },
];
const ShowerHeadIcon = forwardRef<ShowerHeadIconHandle, ShowerHeadIconProps>(
({ 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="m4 4 2.5 2.5" />
<path d="M13.5 6.5a4.95 4.95 0 0 0-7 7" />
<path d="M15 5 5 15" />
<motion.g
variants={DROP_VARIANTS}
animate={controls}
initial="normal"
>
{DROP_PATH.map((path) => (
<motion.path
variants={DROP_CHILD_VARIANTS}
key={path.id}
d={path.d}
/>
))}
</motion.g>
</svg>
</div>
);
}
);
ShowerHeadIcon.displayName = 'ShowerHeadIcon';
export { ShowerHeadIcon };