StephDietz 5516124f89 rebase
2023-07-11 15:43:13 -05:00

93 lines
3.1 KiB
TypeScript

'use client';
import { ArrowLeftIcon, ArrowRightIcon } from '@heroicons/react/24/outline';
import { GridTileImage } from 'components/grid/tile';
import Image from 'next/image';
import { useState } from 'react';
export function Gallery({ images }: { images: { src: string; altText: string }[] }) {
const [currentImage, setCurrentImage] = useState(0);
function handleNavigate(direction: 'next' | 'previous') {
if (direction === 'next') {
setCurrentImage(currentImage + 1 < images.length ? currentImage + 1 : 0);
} else {
setCurrentImage(currentImage === 0 ? images.length - 1 : currentImage - 1);
}
}
const buttonClassName =
'px-9 cursor-pointer ease-in-and-out duration-200 transition-bg bg-[#7928ca] hover:bg-violetDark';
return (
<div className="h-full">
<div className="relative h-full max-h-[600px] overflow-hidden">
{images[currentImage] && (
<Image
className="relative object-contain w-full h-full"
height={600}
width={600}
alt={images[currentImage]?.altText as string}
src={images[currentImage]?.src as string}
/>
)}
{images.length > 1 ? (
<div className="absolute bottom-[15%] flex w-full justify-center">
<div className="flex items-center px-6 mx-auto text-gray-500 border border-white rounded-full h-11 bg-light/80 backdrop-blur">
<button
aria-label="Previous product image"
onClick={() => handleNavigate('previous')}
>
<ArrowLeftIcon className="h-5" />
</button>
<div className="w-px h-6 mx-6 bg-gray-400"></div>
<button aria-label="Next product image" onClick={() => handleNavigate('next')}>
<ArrowRightIcon className="h-5" />
</button>
{/* <button
aria-label="Previous product image"
className={clsx(buttonClassName, 'border-r border-white dark:border-black')}
onClick={() => handleNavigate('previous')}
>
<ArrowLeftIcon className="h-6" />
</button>
<button
aria-label="Next product image"
className={clsx(buttonClassName)}
onClick={() => handleNavigate('next')}
>
<ArrowRightIcon className="h-6" />
</button> */}
</div>
</div>
) : null}
</div>
{images.length > 1 ? (
<div className="flex">
{images.map((image, index) => {
const isActive = index === currentImage;
return (
<button
aria-label="Enlarge product image"
key={image.src}
className="w-1/4 h-full"
onClick={() => setCurrentImage(index)}
>
<GridTileImage
alt={image?.altText}
src={image.src}
width={600}
height={600}
active={isActive}
/>
</button>
);
})}
</div>
) : null}
</div>
);
}