import React from "react"; import { ChevronLeft } from "#/assets/chevron-left"; import { ChevronRight } from "#/assets/chevron-right"; import { ImagePreview } from "./image-preview"; import { cn } from "#/utils/utils"; interface ImageCarouselProps { size: "small" | "large"; images: string[]; onRemove?: (index: number) => void; } export function ImageCarousel({ size = "small", images, onRemove, }: ImageCarouselProps) { const scrollContainerRef = React.useRef(null); const [isScrollable, setIsScrollable] = React.useState(false); const [isAtStart, setIsAtStart] = React.useState(true); const [isAtEnd, setIsAtEnd] = React.useState(false); React.useEffect(() => { const scrollContainer = scrollContainerRef.current; if (scrollContainer) { const hasScroll = scrollContainer.scrollWidth > scrollContainer.clientWidth; setIsScrollable(hasScroll); } }, [images]); const handleScroll = (event: React.UIEvent) => { const scrollContainer = event.currentTarget; setIsAtStart(scrollContainer.scrollLeft === 0); setIsAtEnd( scrollContainer.scrollLeft + scrollContainer.clientWidth === scrollContainer.scrollWidth, ); }; return (
{isScrollable && (
)}
{images.map((src, index) => ( onRemove(index))} /> ))}
{isScrollable && (
)}
); }