'use client';
import React, { useState } from 'react';
import Image from 'next/image';
import { Bookmark, ShoppingCart } from 'lucide-react';
import { motion } from 'motion/react';
import { CardArr } from '@/components/website/constant';
function Card() {
const [selectedImage, setSelectedImage] = useState(CardArr[1].img);
const [selectedColor, setSelectedColor] = useState(CardArr[1].color);
const handleColorButtonClick = (img: string, color: string) => {
setSelectedImage(img);
setSelectedColor(color);
};
const [isActive, setIsActive] = useState(false);
const handleClick = () => {
setIsActive((prevState) => !prevState);
};
return (
<div
// whileTap={{ scale: 0.9 }}
className="w-[350px] mx-auto relative rounded-md border before:content-[''] before:border before:h-full before:w-full before:absolute before:top-0 before:left-0 before:bg-white before:translate-y-8 before:scale-90 before:rounded-md before:shadow-md after:content-[''] after:h-full after:border after:w-full after:absolute after:top-0 after:left-0 after:bg-white after:shadow-md after:translate-y-4 after:z-2 after:scale-95 after:rounded-md "
>
<div className='dark:bg-white bg-gray-100 rounded-md relative z-4 shadow-lg'>
<div className='w-full h-60 relative'>
<motion.button
className='absolute top-3 right-1 px-4 z-20 text-2xl text-white'
onClick={handleClick}
animate={{ scale: isActive ? 1.2 : 1 }}
transition={{ type: 'spring', stiffness: 1000, damping: 10 }}
>
{isActive ? (
<>
<Bookmark className=' fill-white' />
</>
) : (
<>
<Bookmark />
</>
)}
</motion.button>
{CardArr.map((data, index) => (
<Image
src={data?.img}
alt='shoes'
width={1000}
height={1000}
className={`absolute h-60 w-full rounded-t-md object-cover ${
selectedColor === data.color
? 'z-10 transition-all duration-500'
: 'transition-all delay-500'
}`}
style={{
clipPath:
selectedColor === data.color
? 'polygon(0 0, 100% 0, 100% 100%, 0% 100%) '
: 'polygon(0 100%, 100% 100%, 100% 100%, 0% 100%) ',
}}
/>
))}
</div>
<article className='text-black pt-2 p-4'>
<div className='flex justify-between'>
<h1 className='font-semibold text-xl text-black'>Nike Air Max</h1>
<div className='flex gap-2 items-center'>
{CardArr.map((data, index) => (
<button
key={index}
onClick={() => handleColorButtonClick(data.img, data.color)}
className={` relative w-6 h-6 border rounded-full grid place-content-center transition-all ${
selectedColor === data.color
? ' border-black'
: 'border-gray-200'
}`}
>
<span
className='w-4 h-4 rounded-full inline-block'
style={{
backgroundColor: data.color,
}}
></span>
</button>
))}
</div>
</div>
<div className='flex justify-between py-2 items-center'>
<span className='font-medium text-2xl text-black'>$39</span>
<button className='w-fit px-4 text-white flex justify-center items-center gap-2 bg-linear-to-r dark:from-[#070e41] dark:to-[#263381] from-[#3e5068] to-[#0c1970] py-3 rounded-md'>
<ShoppingCart className='w-5 h-5' />
</button>
</div>
</article>
</div>
</div>
);
}
export default Card;