fix(SW-3691): Setup one prettier config for whole repo * Setup prettierrc in root and remove other configs Approved-by: Joakim Jäderberg Approved-by: Linus Flood
229 lines
6.7 KiB
TypeScript
229 lines
6.7 KiB
TypeScript
"use client"
|
|
import { AnimatePresence, motion } from "motion/react"
|
|
import { useEffect, useState } from "react"
|
|
import { Button as ButtonRAC } from "react-aria-components"
|
|
import { useIntl } from "react-intl"
|
|
|
|
import { IconButton } from "../../IconButton"
|
|
import { Typography } from "../../Typography"
|
|
|
|
import Image from "../../Image"
|
|
|
|
import { cx } from "class-variance-authority"
|
|
import { useMediaQuery } from "usehooks-ts"
|
|
import { LightboxImage } from ".."
|
|
import styles from "./gallery.module.css"
|
|
|
|
type GalleryProps = {
|
|
images: LightboxImage[]
|
|
onClose: () => void
|
|
onSelectImage: (image: LightboxImage) => void
|
|
onImageClick: () => void
|
|
selectedImage: LightboxImage | null
|
|
hideLabel?: boolean
|
|
}
|
|
|
|
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)
|
|
const isMobile = useMediaQuery("(max-width: 767px)")
|
|
|
|
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 handleKeyDown = (e: KeyboardEvent) => {
|
|
if (e.key === "ArrowLeft") {
|
|
handlePrev()
|
|
} else if (e.key === "ArrowRight") {
|
|
handleNext()
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
window.addEventListener("keydown", handleKeyDown)
|
|
|
|
return () => {
|
|
window.removeEventListener("keydown", handleKeyDown)
|
|
}
|
|
})
|
|
|
|
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,
|
|
}),
|
|
} as const
|
|
|
|
return (
|
|
<div className={styles.gallery}>
|
|
<IconButton
|
|
variant="Muted"
|
|
emphasis
|
|
className={styles.closeButton}
|
|
onPress={onClose}
|
|
aria-label={intl.formatMessage({
|
|
id: "common.close",
|
|
defaultMessage: "Close",
|
|
})}
|
|
iconName={isMobile ? "chevron_left" : "close"}
|
|
/>
|
|
|
|
{/* Desktop Gallery */}
|
|
<div className={styles.desktopGallery}>
|
|
<Typography variant="Body/Supporting text (caption)/smRegular">
|
|
<p className={styles.header}>
|
|
{mainImage.caption && !hideLabel && (
|
|
<span className={styles.caption}>{mainImage.caption}</span>
|
|
)}
|
|
</p>
|
|
</Typography>
|
|
<div className={styles.content}>
|
|
<AnimatePresence initial={false} custom={animateLeft}>
|
|
<motion.div
|
|
key={mainImage.src}
|
|
className={styles.motionContainer}
|
|
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.mainImage}
|
|
onClick={onImageClick}
|
|
tabIndex={0}
|
|
aria-label={intl.formatMessage({
|
|
id: "lightbox.openImage",
|
|
defaultMessage: "Open image",
|
|
})}
|
|
role="button"
|
|
/>
|
|
</motion.div>
|
|
</AnimatePresence>
|
|
<IconButton
|
|
variant="Elevated"
|
|
className={cx(styles.navigationButton, styles.previous)}
|
|
onPress={handlePrev}
|
|
aria-label={intl.formatMessage({
|
|
id: "lightbox.previousImage",
|
|
defaultMessage: "Previous image",
|
|
})}
|
|
iconName="arrow_back"
|
|
/>
|
|
<IconButton
|
|
variant="Elevated"
|
|
className={cx(styles.navigationButton, styles.next)}
|
|
onPress={handleNext}
|
|
aria-label={intl.formatMessage({
|
|
id: "lightbox.nextImage",
|
|
defaultMessage: "Next image",
|
|
})}
|
|
iconName="arrow_forward"
|
|
/>
|
|
</div>
|
|
<div className={styles.desktopThumbnailGrid}>
|
|
<AnimatePresence initial={false}>
|
|
{getThumbImages().map((image, index) => (
|
|
<motion.div
|
|
key={image.src}
|
|
className={styles.thumbnailContainer}
|
|
initial={{ opacity: 0, x: 50 }}
|
|
animate={{ opacity: 1, x: 0 }}
|
|
exit={{ opacity: 0, x: -50 }}
|
|
transition={{ duration: 0.2, delay: index * 0.05 }}
|
|
>
|
|
<ButtonRAC
|
|
className={styles.imageButton}
|
|
onPress={() => onSelectImage(image)}
|
|
aria-label={intl.formatMessage({
|
|
id: "lightbox.openImage",
|
|
defaultMessage: "Open image",
|
|
})}
|
|
>
|
|
<Image
|
|
src={image.src}
|
|
alt={image.alt}
|
|
fill
|
|
sizes="200px"
|
|
className={styles.image}
|
|
/>
|
|
</ButtonRAC>
|
|
</motion.div>
|
|
))}
|
|
</AnimatePresence>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Mobile Gallery */}
|
|
<div className={styles.mobileGallery}>
|
|
{images.map((image, index) => (
|
|
<motion.div
|
|
key={image.src}
|
|
className={`${styles.thumbnailContainer} ${index % 3 === 0 ? styles.fullWidthImage : ""}`}
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3, delay: index * 0.05 }}
|
|
>
|
|
<ButtonRAC
|
|
className={styles.imageButton}
|
|
aria-label={intl.formatMessage({
|
|
id: "lightbox.openImage",
|
|
defaultMessage: "Open image",
|
|
})}
|
|
onPress={() => {
|
|
onSelectImage(image)
|
|
onImageClick()
|
|
}}
|
|
>
|
|
<Image
|
|
src={image.src}
|
|
alt={image.alt}
|
|
fill
|
|
sizes="100vw"
|
|
className={styles.image}
|
|
/>
|
|
</ButtonRAC>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|