Spaces:
Running
Running
File size: 6,036 Bytes
21a686e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
"use client";
import Image from "next/image";
import React, { useEffect, useRef, useState } from "react";
import { motion, AnimatePresence } from "motion/react";
export function ExpandableCardOnClick() {
const items = [
{
title: "Classic look",
description: "The best in class design.",
src: "https://assets.aceternity.com/pro/car-1.jpg",
content: (
<div>
<p>Classic design with timeless appeal</p>
<p>Elegant and sophisticated exterior</p>
<p>Attention to detail in every aspect</p>
</div>
),
},
{
title: "Offroading",
description: "Comes with a 4x4 offroading system.",
src: "https://assets.aceternity.com/pro/car-2.jpg",
content: (
<div>
<p>High ground clearance</p>
<p>Durable all-terrain tires</p>
<p>Advanced suspension system</p>
</div>
),
},
{
title: "7 Seater",
description: "Enough space for your family.",
src: "https://assets.aceternity.com/pro/car-3.jpg",
content: (
<div>
<p>7-seater interior with ample space</p>
<p>Comfortable seating for your family</p>
<p>Elegant and modern interior</p>
</div>
),
},
{
title: "Low maintenence",
description: "No maintenence is required, ever.",
src: "https://assets.aceternity.com/pro/car-4.jpg",
content: (
<div>
<p>Once a year service</p>
<p>No maintenance cost.</p>
<p>Optional pictures clicked with manager.</p>
</div>
),
},
];
const [active, setActive] = useState<null | (typeof items)[number]>(null);
const ref = useRef<HTMLDivElement>(null);
useOutsideClick(ref, () => {
setActive(null);
});
useEffect(() => {
const handleEscape = (event: KeyboardEvent) => {
if (event.key === "Escape") {
setActive(null);
}
};
document.addEventListener("keydown", handleEscape);
return () => document.removeEventListener("keydown", handleEscape);
}, []);
return (
<div className="relative h-full w-full">
<div className="mx-auto grid max-w-4xl grid-cols-1 gap-10 px-4 py-10 md:grid-cols-2 md:px-8 md:py-20">
<AnimatePresence>
{active && (
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="absolute left-0 top-0 z-10 h-full w-full bg-black/50"
></motion.div>
)}
</AnimatePresence>
{active && (
<div className="fixed inset-0 z-[100] grid place-items-center">
<motion.div
layoutId={`card-${active.title}`}
ref={ref}
key={active.title}
className="max-w-sm rounded-2xl bg-white shadow-md dark:bg-neutral-900"
>
<motion.div layoutId={`image-${active.title}`}>
<Image
src={active.src}
alt={active.title}
width={500}
height={500}
className="h-60 rounded-2xl object-cover"
/>
</motion.div>
<div className="flex flex-col items-start p-6">
<motion.p
layoutId={`title-${active.title}`}
className="text-lg font-bold text-neutral-800 dark:text-neutral-100"
>
{active.title}
</motion.p>
<motion.p
layoutId={`description-${active.title}`}
className="text-sm text-neutral-500 dark:text-neutral-300"
>
{active.description}
</motion.p>
<motion.div
layout
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="mt-4 text-neutral-600 dark:text-neutral-400"
>
{active.content}
</motion.div>
</div>
</motion.div>
</div>
)}
{items.map((item) => (
<motion.div
layoutId={`card-${item.title}`}
onClick={() => setActive(item)}
key={item.title}
className="cursor-pointer rounded-2xl bg-white shadow-md dark:bg-neutral-900"
>
<motion.div layoutId={`image-${item.title}`}>
<Image
src={item.src}
alt={item.title}
width={500}
height={500}
className="h-60 rounded-2xl object-cover"
/>
</motion.div>
<div className="flex flex-col items-start p-6">
<motion.p
layoutId={`title-${item.title}`}
className="text-lg font-bold text-neutral-800 dark:text-neutral-100"
>
{item.title}
</motion.p>
<motion.p
layoutId={`description-${item.title}`}
className="text-sm text-neutral-500 dark:text-neutral-300"
>
{item.description}
</motion.p>
</div>
</motion.div>
))}
</div>
</div>
);
}
export const useOutsideClick = (
ref: React.RefObject<HTMLDivElement>,
callback: Function
) => {
useEffect(() => {
const listener = (event: any) => {
// DO NOTHING if the element being clicked is the target element or their children
if (!ref.current || ref.current.contains(event.target)) {
return;
}
callback(event);
};
document.addEventListener("mousedown", listener);
document.addEventListener("touchstart", listener);
return () => {
document.removeEventListener("mousedown", listener);
document.removeEventListener("touchstart", listener);
};
}, [ref, callback]);
};
|