Update src/components/ui/ButtonMagnetic.tsx

This commit is contained in:
2026-06-10 10:40:52 +00:00
parent 485d90e1bc
commit 562fe1b5d5

View File

@@ -1,69 +0,0 @@
"use client";
import { useRef } from "react";
import { motion, useMotionValue, useSpring } from "motion/react";
import { useButtonClick } from "@/hooks/useButtonClick";
import { cls } from "@/lib/utils";
interface ButtonMagneticProps {
text: string;
variant?: "primary" | "secondary";
href?: string;
onClick?: () => void;
animate?: boolean;
animationDelay?: number;
className?: string;
}
const ButtonMagnetic = ({ text, variant = "primary", href = "#", onClick, animate = true, animationDelay = 0, className = "" }: ButtonMagneticProps) => {
const handleClick = useButtonClick(href, onClick);
const ref = useRef<HTMLAnchorElement>(null);
const x = useMotionValue(0);
const y = useMotionValue(0);
const springX = useSpring(x, { stiffness: 150, damping: 15 });
const springY = useSpring(y, { stiffness: 150, damping: 15 });
const handleMouseMove = (e: React.MouseEvent) => {
if (!ref.current || window.innerWidth < 768) return;
const rect = ref.current.getBoundingClientRect();
const offsetX = (e.clientX - rect.left - rect.width / 2) * 0.15;
const offsetY = (e.clientY - rect.top - rect.height / 2) * 0.15;
x.set(offsetX);
y.set(offsetY);
};
const handleMouseLeave = () => {
x.set(0);
y.set(0);
};
const button = (
<motion.a
ref={ref}
href={href}
onClick={handleClick}
onMouseMove={handleMouseMove}
onMouseLeave={handleMouseLeave}
style={{ x: springX, y: springY }}
className={cls("flex items-center justify-center h-10 px-6 text-sm rounded cursor-pointer", variant === "primary" ? "primary-button text-primary-cta-text" : "secondary-button text-secondary-cta-text", className)}
>
{text}
</motion.a>
);
if (!animate) return button;
return (
<motion.div
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.6, delay: animationDelay, ease: "easeOut" }}
>
{button}
</motion.div>
);
};
export default ButtonMagnetic;