'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 CloudSunIconHandle {
startAnimation: () => void;
stopAnimation: () => void;
}
interface CloudSunIconProps extends HTMLAttributes<HTMLDivElement> {
size?: number;
}
const CLOUD_VARIANTS: Variants = {
normal: {
x: 0,
y: 0,
},
animate: {
x: [-1, 1, -1, 1, 0],
y: [-1, 1, -1, 1, 0],
transition: {
duration: 1,
ease: 'easeInOut',
},
},
};
const SUN_VARIANTS: Variants = {
normal: { opacity: 1 },
animate: (i: number) => ({
opacity: [0, 1],
transition: { delay: i * 0.1, duration: 0.3 },
}),
};
const CloudSunIcon = forwardRef<CloudSunIconHandle, CloudSunIconProps>(
({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {
const cloudControls = useAnimation();
const sunControls = useAnimation();
const isControlledRef = useRef(false);
useImperativeHandle(ref, () => {
isControlledRef.current = true;
return {
startAnimation: () => {
cloudControls.start('animate');
sunControls.start('animate');
},
stopAnimation: () => {
cloudControls.start('normal');
sunControls.start('normal');
},
};
});
const handleMouseEnter = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
cloudControls.start('animate');
sunControls.start('animate');
} else {
onMouseEnter?.(e);
}
},
[cloudControls, sunControls, onMouseEnter]
);
const handleMouseLeave = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
cloudControls.start('normal');
sunControls.start('normal');
} else {
onMouseLeave?.(e);
}
},
[cloudControls, sunControls, 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"
style={{ overflow: 'visible' }}
>
<motion.g
variants={CLOUD_VARIANTS}
animate={cloudControls}
initial="normal"
>
<path d="M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z" />
</motion.g>
{[
'M12 2v2',
'm4.93 4.93 1.41 1.41',
'M20 12h2',
'm19.07 4.93-1.41 1.41',
'M15.947 12.65a4 4 0 0 0-5.925-4.128',
].map((d, index) => (
<motion.path
key={d}
d={d}
animate={sunControls}
variants={SUN_VARIANTS}
custom={index + 1}
initial="normal"
/>
))}
</svg>
</div>
);
}
);
CloudSunIcon.displayName = 'CloudSunIcon';
export { CloudSunIcon };