Switches out all the old icons to new ones, and moves them to the design system. The new icons are of three different types: Materialise Symbol, Nucleo, and Customized. Also adds further mapping between facilities/amenities and icons. Approved-by: Michael Zetterberg Approved-by: Erik Tiekstra
190 lines
5.8 KiB
TypeScript
190 lines
5.8 KiB
TypeScript
"use client"
|
|
import { AnimatePresence, motion } from "framer-motion"
|
|
import { useState } from "react"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { MaterialIcon } from "@scandic-hotels/design-system/Icons"
|
|
|
|
import Image from "@/components/Image"
|
|
import Button from "@/components/TempDesignSystem/Button"
|
|
import Caption from "@/components/TempDesignSystem/Text/Caption"
|
|
|
|
import styles from "./Lightbox.module.css"
|
|
|
|
import type { GalleryProps } from "@/types/components/lightbox/lightbox"
|
|
|
|
export default function Gallery({
|
|
images,
|
|
onClose,
|
|
onSelectImage,
|
|
onImageClick,
|
|
selectedImage,
|
|
hideLabel,
|
|
}: GalleryProps) {
|
|
const intl = useIntl()
|
|
const [animateLeft, setAnimateLeft] = useState(true)
|
|
const mainImage = selectedImage || images[0]
|
|
const mainImageIndex = images.findIndex((img) => img === mainImage)
|
|
|
|
function getThumbImages() {
|
|
const thumbs = []
|
|
for (let i = 1; i <= Math.min(5, images.length); i++) {
|
|
const index = (mainImageIndex + i) % images.length
|
|
thumbs.push(images[index])
|
|
}
|
|
return thumbs
|
|
}
|
|
|
|
function handleNext() {
|
|
setAnimateLeft(true)
|
|
const nextIndex = (mainImageIndex + 1) % images.length
|
|
onSelectImage(images[nextIndex])
|
|
}
|
|
|
|
function handlePrev() {
|
|
setAnimateLeft(false)
|
|
const prevIndex = (mainImageIndex - 1 + images.length) % images.length
|
|
onSelectImage(images[prevIndex])
|
|
}
|
|
|
|
const variants = {
|
|
initial: (animateLeft: boolean) => ({
|
|
opacity: 0,
|
|
x: animateLeft ? 300 : -300,
|
|
}),
|
|
animate: { opacity: 1, x: 0 },
|
|
exit: (animateLeft: boolean) => ({
|
|
opacity: 0,
|
|
x: animateLeft ? -300 : 300,
|
|
}),
|
|
}
|
|
|
|
return (
|
|
<div className={styles.galleryContainer}>
|
|
<Button
|
|
intent="text"
|
|
size="small"
|
|
className={styles.closeButton}
|
|
onClick={onClose}
|
|
aria-label={intl.formatMessage({ id: "Close" })}
|
|
>
|
|
<MaterialIcon
|
|
icon="chevron_left"
|
|
color="Icon/Intense"
|
|
size={32}
|
|
className={styles.mobileCloseIcon}
|
|
/>
|
|
<MaterialIcon
|
|
icon="close"
|
|
size={32}
|
|
className={styles.desktopCloseIcon}
|
|
/>
|
|
</Button>
|
|
{/* Desktop Gallery */}
|
|
<div className={styles.desktopGallery}>
|
|
<div className={styles.galleryHeader}>
|
|
{mainImage.caption && !hideLabel && (
|
|
<div className={styles.imageCaption}>
|
|
<Caption color="textMediumContrast">{mainImage.caption}</Caption>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className={styles.mainImageWrapper}>
|
|
<AnimatePresence initial={false} custom={animateLeft}>
|
|
<motion.div
|
|
key={mainImage.src}
|
|
className={styles.mainImageContainer}
|
|
custom={animateLeft}
|
|
variants={variants}
|
|
initial="initial"
|
|
animate="animate"
|
|
exit="exit"
|
|
transition={{ duration: 0.3 }}
|
|
>
|
|
<Image
|
|
src={mainImage.src}
|
|
alt={mainImage.alt}
|
|
fill
|
|
sizes="(min-width: 1000px) 1000px, 100vw"
|
|
className={styles.image}
|
|
onClick={onImageClick}
|
|
/>
|
|
</motion.div>
|
|
</AnimatePresence>
|
|
<motion.button
|
|
className={`${styles.navigationButton} ${styles.galleryPrevButton}`}
|
|
onClick={handlePrev}
|
|
>
|
|
<MaterialIcon
|
|
icon="arrow_forward"
|
|
color="Icon/Interactive/Default"
|
|
className={styles.leftTransformIcon}
|
|
/>
|
|
</motion.button>
|
|
<motion.button
|
|
className={`${styles.navigationButton} ${styles.galleryNextButton}`}
|
|
onClick={handleNext}
|
|
>
|
|
<MaterialIcon
|
|
icon="arrow_forward"
|
|
color="Icon/Interactive/Default"
|
|
/>
|
|
</motion.button>
|
|
</div>
|
|
<div className={styles.desktopThumbnailGrid}>
|
|
<AnimatePresence initial={false}>
|
|
{getThumbImages().map((image, index) => (
|
|
<motion.div
|
|
key={image.smallSrc || image.src}
|
|
className={styles.thumbnailContainer}
|
|
onClick={() => onSelectImage(image)}
|
|
initial={{ opacity: 0, x: 50 }}
|
|
animate={{ opacity: 1, x: 0 }}
|
|
exit={{ opacity: 0, x: -50 }}
|
|
transition={{ duration: 0.2, delay: index * 0.05 }}
|
|
>
|
|
<Image
|
|
src={image.smallSrc || image.src}
|
|
alt={image.alt}
|
|
fill
|
|
sizes="200px"
|
|
className={styles.image}
|
|
/>
|
|
</motion.div>
|
|
))}
|
|
</AnimatePresence>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Mobile Gallery */}
|
|
<div className={styles.mobileGallery}>
|
|
<div className={styles.mobileGalleryContent}>
|
|
<div className={styles.thumbnailGrid}>
|
|
{images.map((image, index) => (
|
|
<motion.div
|
|
key={image.smallSrc || image.src}
|
|
className={`${styles.thumbnailContainer} ${index % 3 === 0 ? styles.fullWidthImage : ""}`}
|
|
onClick={() => {
|
|
onSelectImage(image)
|
|
onImageClick()
|
|
}}
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3, delay: index * 0.05 }}
|
|
>
|
|
<Image
|
|
src={image.smallSrc || image.src}
|
|
alt={image.alt}
|
|
fill
|
|
sizes="100vw"
|
|
className={styles.image}
|
|
/>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|