rsnext/examples/with-cloudinary/components/Carousel.tsx
Hassan El Mghari 57dc7207e6
Add with-cloudinary example (#43250)
Added an image gallery example using Next.js and Cloudinary.

Edit: This is now ready to ship!

Co-authored-by: Balázs Orbán <18369201+balazsorban44@users.noreply.github.com>
Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
2022-12-02 04:05:34 +00:00

54 lines
1.3 KiB
TypeScript

import Image from 'next/image'
import { useRouter } from 'next/router'
import useKeypress from 'react-use-keypress'
import type { ImageProps } from '../utils/types'
import { useLastViewedPhoto } from '../utils/useLastViewedPhoto'
import SharedModal from './SharedModal'
export default function Carousel({
index,
currentPhoto,
}: {
index: number
currentPhoto: ImageProps
}) {
const router = useRouter()
const [, setLastViewedPhoto] = useLastViewedPhoto()
function closeModal() {
setLastViewedPhoto(currentPhoto.id)
router.push('/', undefined, { shallow: true })
}
function changePhotoId(newVal: number) {
return newVal
}
useKeypress('Escape', () => {
closeModal()
})
return (
<div className="fixed inset-0 flex items-center justify-center">
<button
className="absolute inset-0 z-30 cursor-default bg-black backdrop-blur-2xl"
onClick={closeModal}
>
<Image
src={currentPhoto.blurDataUrl}
className="pointer-events-none h-full w-full"
alt="blurred background"
fill
priority={true}
/>
</button>
<SharedModal
index={index}
changePhotoId={changePhotoId}
currentPhoto={currentPhoto}
closeModal={closeModal}
navigation={false}
/>
</div>
)
}