Files
Wyview/components/DragonEye.tsx
2026-03-11 16:02:55 +01:00

149 lines
5.8 KiB
TypeScript

"use client";
import { useEffect, useRef } from "react";
import { useTheme } from "@/lib/theme";
export default function DragonEye({ size = 60 }: { size?: number }) {
const irisRef = useRef<HTMLDivElement>(null);
const { theme } = useTheme();
const isLight = theme === "light";
useEffect(() => {
const handleMouseMove = (e: MouseEvent) => {
if (!irisRef.current) return;
const rect = irisRef.current.parentElement!.getBoundingClientRect();
const cx = rect.left + rect.width / 2;
const cy = rect.top + rect.height / 2;
const dx = e.clientX - cx;
const dy = e.clientY - cy;
const dist = Math.sqrt(dx * dx + dy * dy);
const max = 5;
const mx = (dx / Math.max(dist, 1)) * Math.min(dist * 0.1, max);
const my = (dy / Math.max(dist, 1)) * Math.min(dist * 0.1, max);
irisRef.current.style.transform = `translate(calc(-50% + ${mx}px), calc(-50% + ${my}px))`;
};
window.addEventListener("mousemove", handleMouseMove);
return () => window.removeEventListener("mousemove", handleMouseMove);
}, []);
const h = size;
const w = size * 1.6;
// Light theme: sky-blue palette
const glowColor = isLight ? "#38bdf8" : "#4aff8c";
const eyeBg = isLight
? "radial-gradient(ellipse at 40% 35%, #e0f7ff, #b8eeff)"
: "radial-gradient(ellipse at 40% 35%, #0a1a0a, #020402)";
const eyeBorder = isLight ? "rgba(56,189,248,0.4)" : "rgba(74,255,140,0.25)";
const eyeShadow = isLight
? "0 0 20px rgba(56,189,248,0.25), inset 0 0 10px rgba(56,189,248,0.1)"
: "0 0 20px rgba(74,255,140,0.1), inset 0 0 20px rgba(0,0,0,0.8)";
const irisBg = isLight
? "radial-gradient(ellipse at 40% 35%, #7dd3fc 0%, #0ea5e9 35%, #0369a1 70%)"
: "radial-gradient(ellipse at 40% 35%, #1aff6a 0%, #0a8a3a 35%, #022a12 70%)";
const irisShadow = isLight ? "0 0 12px rgba(56,189,248,0.6)" : "0 0 12px rgba(74,255,140,0.4)";
const pupilBg = isLight ? "#001a2e" : "#010801";
const eyelidBg = isLight ? "#dbeafe" : "#0a0d0f";
return (
<div
className="relative flex-shrink-0"
style={{ width: w, height: h }}
>
{/* Outer glow */}
<div
className="absolute inset-0 rounded-full blur-md opacity-30"
style={{
background: `radial-gradient(ellipse, ${glowColor} 0%, transparent 70%)`,
borderRadius: "50%",
}}
/>
{/* Eye shape */}
<div
className="absolute inset-0 overflow-hidden"
style={{
borderRadius: "50%",
background: eyeBg,
border: `1px solid ${eyeBorder}`,
boxShadow: eyeShadow,
animation: "blink 9s ease-in-out infinite",
}}
>
{/* Iris */}
<div
ref={irisRef}
className="absolute top-1/2 left-1/2"
style={{
transform: "translate(-50%, -50%)",
width: h * 0.65,
height: h * 0.65,
borderRadius: "50%",
background: irisBg,
boxShadow: irisShadow,
transition: "transform 0.08s ease-out",
}}
>
{/* Pupil */}
<div
className="absolute top-1/2 left-1/2"
style={{
transform: "translate(-50%, -50%)",
width: h * 0.1,
height: h * 0.55,
background: pupilBg,
borderRadius: "50%",
boxShadow: "0 0 6px rgba(0,0,0,0.9)",
animation: "pupilDilate 7s ease-in-out infinite",
}}
/>
{/* Highlight */}
<div
className="absolute"
style={{
top: "18%", left: "22%",
width: h * 0.12, height: h * 0.08,
background: isLight ? "rgba(255,255,255,0.7)" : "rgba(200,255,220,0.4)",
borderRadius: "50%",
transform: "rotate(-20deg)",
filter: "blur(1px)",
}}
/>
</div>
{/* Eyelid top */}
<div
className="absolute top-0 left-0 right-0"
style={{
height: "30%",
background: `linear-gradient(to bottom, ${eyelidBg}, transparent)`,
borderRadius: "50% 50% 0 0 / 80% 80% 0 0",
zIndex: 2,
}}
/>
{/* Eyelid bottom */}
<div
className="absolute bottom-0 left-0 right-0"
style={{
height: "22%",
background: `linear-gradient(to top, ${eyelidBg}, transparent)`,
borderRadius: "0 0 50% 50% / 0 0 80% 80%",
zIndex: 2,
}}
/>
</div>
<style>{`
@keyframes blink {
0%, 88%, 100% { transform: scaleY(1); }
93% { transform: scaleY(0.06); }
}
@keyframes pupilDilate {
0%, 100% { width: ${h * 0.1}px; height: ${h * 0.55}px; }
50% { width: ${h * 0.07}px; height: ${h * 0.62}px; }
}
`}</style>
</div>
);
}