database.tsx82 lines · main
| 1 | 'use client'; |
| 2 | |
| 3 | import { motion, useAnimation } from 'motion/react'; |
| 4 | import type { HTMLAttributes } from 'react'; |
| 5 | import { forwardRef, useCallback, useImperativeHandle, useRef } from 'react'; |
| 6 | |
| 7 | import { cn } from '@/lib/utils'; |
| 8 | |
| 9 | export interface DatabaseIconHandle { |
| 10 | startAnimation: () => void; |
| 11 | stopAnimation: () => void; |
| 12 | } |
| 13 | |
| 14 | interface DatabaseIconProps extends HTMLAttributes<HTMLDivElement> { |
| 15 | size?: number; |
| 16 | } |
| 17 | |
| 18 | const DatabaseIcon = forwardRef<DatabaseIconHandle, DatabaseIconProps>( |
| 19 | ({ onMouseEnter, onMouseLeave, className, size = 18, ...props }, ref) => { |
| 20 | const controls = useAnimation(); |
| 21 | const isControlledRef = useRef(false); |
| 22 | |
| 23 | useImperativeHandle(ref, () => { |
| 24 | isControlledRef.current = true; |
| 25 | return { |
| 26 | startAnimation: () => controls.start('animate'), |
| 27 | stopAnimation: () => controls.start('normal'), |
| 28 | }; |
| 29 | }); |
| 30 | |
| 31 | const handleMouseEnter = useCallback( |
| 32 | (e: React.MouseEvent<HTMLDivElement>) => { |
| 33 | if (isControlledRef.current) onMouseEnter?.(e); |
| 34 | else controls.start('animate'); |
| 35 | }, |
| 36 | [controls, onMouseEnter], |
| 37 | ); |
| 38 | |
| 39 | const handleMouseLeave = useCallback( |
| 40 | (e: React.MouseEvent<HTMLDivElement>) => { |
| 41 | if (isControlledRef.current) onMouseLeave?.(e); |
| 42 | else controls.start('normal'); |
| 43 | }, |
| 44 | [controls, onMouseLeave], |
| 45 | ); |
| 46 | |
| 47 | return ( |
| 48 | <div |
| 49 | className={cn(className)} |
| 50 | onMouseEnter={handleMouseEnter} |
| 51 | onMouseLeave={handleMouseLeave} |
| 52 | {...props} |
| 53 | > |
| 54 | <motion.svg |
| 55 | animate={controls} |
| 56 | fill="none" |
| 57 | height={size} |
| 58 | stroke="currentColor" |
| 59 | strokeLinecap="round" |
| 60 | strokeLinejoin="round" |
| 61 | strokeWidth="2" |
| 62 | viewBox="0 0 24 24" |
| 63 | width={size} |
| 64 | xmlns="http://www.w3.org/2000/svg" |
| 65 | transition={{ duration: 0.5, ease: 'easeInOut' }} |
| 66 | variants={{ |
| 67 | normal: { scaleY: 1 }, |
| 68 | animate: { scaleY: [1, 0.88, 1] }, |
| 69 | }} |
| 70 | > |
| 71 | <ellipse cx="12" cy="5" rx="9" ry="3" /> |
| 72 | <path d="M3 5V19A9 3 0 0 0 21 19V5" /> |
| 73 | <path d="M3 12A9 3 0 0 0 21 12" /> |
| 74 | </motion.svg> |
| 75 | </div> |
| 76 | ); |
| 77 | }, |
| 78 | ); |
| 79 | |
| 80 | DatabaseIcon.displayName = 'DatabaseIcon'; |
| 81 | |
| 82 | export { DatabaseIcon }; |