'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 YoutubeIconHandle {
startAnimation: () => void;
stopAnimation: () => void;
}
interface YoutubeIconProps extends HTMLAttributes<HTMLDivElement> {
size?: number;
}
const PATH_VARIANTS: Variants = {
normal: {
opacity: 1,
pathLength: 1,
pathOffset: 0,
transition: {
duration: 0.4,
opacity: { duration: 0.1 },
},
},
animate: {
opacity: [0, 1],
pathLength: [0, 1],
pathOffset: [1, 0],
transition: {
duration: 0.6,
ease: 'linear',
opacity: { duration: 0.1 },
},
},
};
const TRIANGLE_VARIANTS: Variants = {
normal: {
opacity: 1,
pathLength: 1,
pathOffset: 0,
transition: {
duration: 0.4,
opacity: { duration: 0.1 },
},
},
animate: {
opacity: [0, 1],
pathLength: [0, 1],
pathOffset: [1, 0],
transition: {
duration: 0.6,
ease: 'linear',
opacity: { duration: 0.1 },
},
},
};
const YoutubeIcon = forwardRef<YoutubeIconHandle, YoutubeIconProps>(
({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {
const pathControls = useAnimation();
const triangleControls = useAnimation();
const isControlledRef = useRef(false);
useImperativeHandle(ref, () => {
isControlledRef.current = true;
return {
startAnimation: () => {
pathControls.start('animate');
triangleControls.start('animate');
},
stopAnimation: () => {
pathControls.start('normal');
triangleControls.start('normal');
},
};
});
const handleMouseEnter = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
pathControls.start('animate');
triangleControls.start('animate');
} else {
onMouseEnter?.(e);
}
},
[onMouseEnter, pathControls, triangleControls]
);
const handleMouseLeave = useCallback(
(e: React.MouseEvent<HTMLDivElement>) => {
if (!isControlledRef.current) {
pathControls.start('normal');
triangleControls.start('normal');
} else {
onMouseLeave?.(e);
}
},
[pathControls, triangleControls, 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"
>
<motion.path
variants={PATH_VARIANTS}
initial="normal"
animate={pathControls}
d="M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17"
/>
<motion.path
variants={TRIANGLE_VARIANTS}
initial="normal"
animate={triangleControls}
d="M10 15l5-3-5-3z"
/>
</svg>
</div>
);
}
);
YoutubeIcon.displayName = 'YoutubeIcon';
export { YoutubeIcon };