import { useCallback, useEffect, useRef } from 'react' import { useHotkeys } from 'react-hotkeys-hook' import { X } from 'lucide-react' import { usePhotoStore } from '../../store/photoStore' import { usePhotosQuery } from '../../hooks/usePhotosQuery' import type { Photo } from '../../types/photo' import { PreviewImage } from './PreviewImage' import { PreviewFilmstrip } from './PreviewFilmstrip' import { getPreviewImageSrc, isVideo } from './previewSrc' export function PreviewView() { const activePhotoId = usePhotoStore((s) => s.activePhotoId) const setActivePhoto = usePhotoStore((s) => s.setActivePhoto) const closePreview = usePhotoStore((s) => s.closePreview) const containerRef = useRef(null) const previouslyFocusedRef = useRef(null) // Same hook Timeline uses, so we share one cache entry rather than looking // it up by key (which broke when the key gained the filter params). const { data: photos = [] } = usePhotosQuery() const currentIndex = activePhotoId ? photos.findIndex((p) => p.id === activePhotoId) : 0 const safeIndex = currentIndex < 0 ? 0 : currentIndex const currentPhoto: Photo | undefined = photos[safeIndex] const goPrev = useCallback(() => { if (photos.length === 0) return const next = Math.max(0, safeIndex - 1) setActivePhoto(photos[next].id) }, [photos, safeIndex, setActivePhoto]) const goNext = useCallback(() => { if (photos.length === 0) return const next = Math.min(photos.length - 1, safeIndex + 1) setActivePhoto(photos[next].id) }, [photos, safeIndex, setActivePhoto]) // Preview-scoped hotkeys: only mounted while PreviewView is rendered. useHotkeys('escape', closePreview, { preventDefault: true }) useHotkeys('left', goPrev, { preventDefault: true }, [goPrev]) useHotkeys('right', goNext, { preventDefault: true }, [goNext]) // Preload the immediate neighbors so arrow nav feels instant. Skip videos // (browsers can't preload them via Image()) and skip when at the edges. useEffect(() => { const neighbors: Photo[] = [] if (safeIndex > 0) neighbors.push(photos[safeIndex - 1]) if (safeIndex < photos.length - 1) neighbors.push(photos[safeIndex + 1]) for (const p of neighbors) { if (isVideo(p)) continue const img = new Image() img.src = getPreviewImageSrc(p) } }, [safeIndex, photos]) // Focus trap: focus the preview container on mount, restore focus on // unmount. The container is keyboard-focusable (tabIndex=-1) so screen // readers and tab navigation stay scoped here. useEffect(() => { previouslyFocusedRef.current = document.activeElement as HTMLElement | null containerRef.current?.focus() return () => { previouslyFocusedRef.current?.focus?.() } }, []) // Trap Tab inside the dialog so users can't accidentally tab into the // hidden grid behind. Simple cycle implementation. const handleKeyDown = (e: React.KeyboardEvent) => { if (e.key !== 'Tab') return const root = containerRef.current if (!root) return const focusable = root.querySelectorAll( 'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])' ) if (focusable.length === 0) { e.preventDefault() root.focus() return } const first = focusable[0] const last = focusable[focusable.length - 1] const active = document.activeElement as HTMLElement | null if (e.shiftKey && active === first) { e.preventDefault() last.focus() } else if (!e.shiftKey && active === last) { e.preventDefault() first.focus() } } if (!currentPhoto) { return (
No photo to display
) } return (
{/* Close button */} {/* Filename + counter */}
{currentPhoto.filename}
{safeIndex + 1} / {photos.length}
) }