mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 08:52:10 +01:00
Major code quality overhaul addressing 58% of all linting issues: • Type Safety Improvements: - Replace all any types with proper TypeScript interfaces - Fix Map component shadowing (renamed to CountryMap) - Add comprehensive custom error classes system - Enhance API route type safety • Accessibility Enhancements: - Add explicit button types to all interactive elements - Implement useId() hooks for form element accessibility - Add SVG title attributes for screen readers - Fix static element interactions with keyboard handlers • React Best Practices: - Resolve exhaustive dependencies warnings with useCallback - Extract nested component definitions to top level - Fix array index keys with proper unique identifiers - Improve component organization and prop typing • Code Organization: - Automatic import organization and type import optimization - Fix unused function parameters and variables - Enhanced error handling with structured error responses - Improve component reusability and maintainability Results: 248 → 104 total issues (58% reduction) - Fixed all critical type safety and security issues - Enhanced accessibility compliance significantly - Improved code maintainability and performance
110 lines
3.2 KiB
TypeScript
110 lines
3.2 KiB
TypeScript
"use client";
|
|
|
|
import { motion, useMotionTemplate, useMotionValue } from "motion/react";
|
|
import type React from "react";
|
|
import { useCallback, useEffect, useRef } from "react";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
interface MagicCardProps {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
gradientSize?: number;
|
|
gradientColor?: string;
|
|
gradientOpacity?: number;
|
|
gradientFrom?: string;
|
|
gradientTo?: string;
|
|
}
|
|
|
|
export function MagicCard({
|
|
children,
|
|
className,
|
|
gradientSize = 200,
|
|
gradientColor = "#262626",
|
|
gradientOpacity = 0.8,
|
|
gradientFrom = "#9E7AFF",
|
|
gradientTo = "#FE8BBB",
|
|
}: MagicCardProps) {
|
|
const cardRef = useRef<HTMLDivElement>(null);
|
|
const mouseX = useMotionValue(-gradientSize);
|
|
const mouseY = useMotionValue(-gradientSize);
|
|
|
|
const handleMouseMove = useCallback(
|
|
(e: MouseEvent) => {
|
|
if (cardRef.current) {
|
|
const { left, top } = cardRef.current.getBoundingClientRect();
|
|
const clientX = e.clientX;
|
|
const clientY = e.clientY;
|
|
mouseX.set(clientX - left);
|
|
mouseY.set(clientY - top);
|
|
}
|
|
},
|
|
[mouseX, mouseY]
|
|
);
|
|
|
|
const handleMouseOut = useCallback(
|
|
(e: MouseEvent) => {
|
|
if (!e.relatedTarget) {
|
|
document.removeEventListener("mousemove", handleMouseMove);
|
|
mouseX.set(-gradientSize);
|
|
mouseY.set(-gradientSize);
|
|
}
|
|
},
|
|
[handleMouseMove, mouseX, gradientSize, mouseY]
|
|
);
|
|
|
|
const handleMouseEnter = useCallback(() => {
|
|
document.addEventListener("mousemove", handleMouseMove);
|
|
mouseX.set(-gradientSize);
|
|
mouseY.set(-gradientSize);
|
|
}, [handleMouseMove, mouseX, gradientSize, mouseY]);
|
|
|
|
useEffect(() => {
|
|
document.addEventListener("mousemove", handleMouseMove);
|
|
document.addEventListener("mouseout", handleMouseOut);
|
|
document.addEventListener("mouseenter", handleMouseEnter);
|
|
|
|
return () => {
|
|
document.removeEventListener("mousemove", handleMouseMove);
|
|
document.removeEventListener("mouseout", handleMouseOut);
|
|
document.removeEventListener("mouseenter", handleMouseEnter);
|
|
};
|
|
}, [handleMouseEnter, handleMouseMove, handleMouseOut]);
|
|
|
|
useEffect(() => {
|
|
mouseX.set(-gradientSize);
|
|
mouseY.set(-gradientSize);
|
|
}, [gradientSize, mouseX, mouseY]);
|
|
|
|
return (
|
|
<div
|
|
ref={cardRef}
|
|
className={cn("group relative rounded-[inherit]", className)}
|
|
>
|
|
<motion.div
|
|
className="pointer-events-none absolute inset-0 rounded-[inherit] bg-border duration-300 group-hover:opacity-100"
|
|
style={{
|
|
background: useMotionTemplate`
|
|
radial-gradient(${gradientSize}px circle at ${mouseX}px ${mouseY}px,
|
|
${gradientFrom},
|
|
${gradientTo},
|
|
var(--border) 100%
|
|
)
|
|
`,
|
|
}}
|
|
/>
|
|
<div className="absolute inset-px rounded-[inherit] bg-background" />
|
|
<motion.div
|
|
className="pointer-events-none absolute inset-px rounded-[inherit] opacity-0 transition-opacity duration-300 group-hover:opacity-100"
|
|
style={{
|
|
background: useMotionTemplate`
|
|
radial-gradient(${gradientSize}px circle at ${mouseX}px ${mouseY}px, ${gradientColor}, transparent 100%)
|
|
`,
|
|
opacity: gradientOpacity,
|
|
}}
|
|
/>
|
|
<div className="relative">{children}</div>
|
|
</div>
|
|
);
|
|
}
|