mediahub-fe/components/ui/carousel.tsx

186 lines
5.7 KiB
TypeScript
Raw Normal View History

"use client";
2024-11-26 03:09:48 +00:00
import * as React from "react";
2025-02-20 09:31:43 +00:00
import useEmblaCarousel, { type UseEmblaCarouselType } from "embla-carousel-react";
import { ArrowLeft, ArrowRight } from "lucide-react";
2024-11-26 03:09:48 +00:00
import { cn } from "@/lib/utils";
import { Button } from "@/components/ui/button";
2024-11-26 03:09:48 +00:00
type CarouselApi = UseEmblaCarouselType[1];
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
type CarouselOptions = UseCarouselParameters[0];
type CarouselPlugin = UseCarouselParameters[1];
2024-11-26 03:09:48 +00:00
type CarouselProps = {
opts?: CarouselOptions;
plugins?: CarouselPlugin;
orientation?: "horizontal" | "vertical";
setApi?: (api: CarouselApi) => void;
};
2024-11-26 03:09:48 +00:00
type CarouselContextProps = {
carouselRef: ReturnType<typeof useEmblaCarousel>[0];
api: ReturnType<typeof useEmblaCarousel>[1];
scrollPrev: () => void;
scrollNext: () => void;
canScrollPrev: boolean;
canScrollNext: boolean;
} & CarouselProps;
2024-11-26 03:09:48 +00:00
const CarouselContext = React.createContext<CarouselContextProps | null>(null);
2024-11-26 03:09:48 +00:00
function useCarousel() {
const context = React.useContext(CarouselContext);
2024-11-26 03:09:48 +00:00
if (!context) {
throw new Error("useCarousel must be used within a <Carousel />");
2024-11-26 03:09:48 +00:00
}
return context;
2024-11-26 03:09:48 +00:00
}
2025-02-20 09:31:43 +00:00
const Carousel = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement> & CarouselProps>(({ orientation = "horizontal", opts, setApi, plugins, className, children, ...props }, ref) => {
const [carouselRef, api] = useEmblaCarousel(
2024-11-26 03:09:48 +00:00
{
2025-02-20 09:31:43 +00:00
...opts,
axis: orientation === "horizontal" ? "x" : "y",
2024-11-26 03:09:48 +00:00
},
2025-02-20 09:31:43 +00:00
plugins
);
const [canScrollPrev, setCanScrollPrev] = React.useState(false);
const [canScrollNext, setCanScrollNext] = React.useState(false);
const onSelect = React.useCallback((api: CarouselApi) => {
if (!api) {
return;
}
setCanScrollPrev(api.canScrollPrev());
setCanScrollNext(api.canScrollNext());
}, []);
const scrollPrev = React.useCallback(() => {
api?.scrollPrev();
}, [api]);
const scrollNext = React.useCallback(() => {
api?.scrollNext();
}, [api]);
const handleKeyDown = React.useCallback(
(event: React.KeyboardEvent<HTMLDivElement>) => {
if (event.key === "ArrowLeft") {
event.preventDefault();
scrollPrev();
} else if (event.key === "ArrowRight") {
event.preventDefault();
scrollNext();
2024-11-26 03:09:48 +00:00
}
2025-02-20 09:31:43 +00:00
},
[scrollPrev, scrollNext]
);
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
React.useEffect(() => {
if (!api || !setApi) {
return;
}
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
setApi(api);
}, [api, setApi]);
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
React.useEffect(() => {
if (!api) {
return;
}
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
onSelect(api);
api.on("reInit", onSelect);
api.on("select", onSelect);
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
return () => {
api?.off("select", onSelect);
};
}, [api, onSelect]);
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
return (
<CarouselContext.Provider
value={{
carouselRef,
api: api,
opts,
orientation: orientation || (opts?.axis === "y" ? "vertical" : "horizontal"),
scrollPrev,
scrollNext,
canScrollPrev,
canScrollNext,
}}
>
<div ref={ref} onKeyDownCapture={handleKeyDown} className={cn("relative", className)} role="region" aria-roledescription="carousel" {...props}>
{children}
</div>
</CarouselContext.Provider>
);
});
Carousel.displayName = "Carousel";
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
const CarouselContent = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(({ className, ...props }, ref) => {
const { carouselRef, orientation } = useCarousel();
2024-11-26 03:09:48 +00:00
return (
<div ref={carouselRef} className="overflow-hidden">
2025-02-20 09:31:43 +00:00
<div ref={ref} className={cn("flex", orientation === "horizontal" ? "-ml-4" : "-mt-4 flex-col", className)} {...props} />
2024-11-26 03:09:48 +00:00
</div>
);
});
CarouselContent.displayName = "CarouselContent";
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
const CarouselItem = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(({ className, ...props }, ref) => {
const { orientation } = useCarousel();
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
return <div ref={ref} role="group" aria-roledescription="slide" className={cn("min-w-0 shrink-0 grow-0 basis-full", orientation === "horizontal" ? "pl-4" : "pt-4", className)} {...props} />;
});
CarouselItem.displayName = "CarouselItem";
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
const CarouselPrevious = React.forwardRef<HTMLButtonElement, React.ComponentProps<typeof Button>>(({ className, variant = "outline", size = "icon", ...props }, ref) => {
const { orientation, scrollPrev, canScrollPrev } = useCarousel();
2024-11-26 03:09:48 +00:00
return (
<Button
ref={ref}
variant={variant}
size={size}
2025-02-20 09:31:43 +00:00
className={cn("absolute h-6 w-6 rounded-full text-white bg-black -ml-6", orientation === "horizontal" ? "-left-0 top-1/2 -translate-y-1/2" : "-top-0 left-1/2 -translate-x-1/2 rotate-90", className)}
2024-11-26 03:09:48 +00:00
disabled={!canScrollPrev}
onClick={scrollPrev}
{...props}
>
2024-12-11 15:08:03 +00:00
<ArrowLeft className="h-4 w-4 text-white bg-black" />
2024-11-26 03:09:48 +00:00
<span className="sr-only">Previous slide</span>
</Button>
);
});
CarouselPrevious.displayName = "CarouselPrevious";
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
const CarouselNext = React.forwardRef<HTMLButtonElement, React.ComponentProps<typeof Button>>(({ className, variant = "outline", size = "icon", ...props }, ref) => {
const { orientation, scrollNext, canScrollNext } = useCarousel();
2024-11-26 03:09:48 +00:00
return (
<Button
ref={ref}
variant={variant}
size={size}
2025-02-20 09:31:43 +00:00
className={cn("absolute h-6 w-6 rounded-full bg-black text-white -mr-6", orientation === "horizontal" ? "-right-0 top-1/2 -translate-y-1/2" : "-bottom-0 left-1/2 -translate-x-1/2 rotate-90", className)}
2024-11-26 03:09:48 +00:00
disabled={!canScrollNext}
onClick={scrollNext}
{...props}
>
2024-12-11 15:08:03 +00:00
<ArrowRight className="h-4 w-4 bg-black text-white" />
2024-11-26 03:09:48 +00:00
<span className="sr-only">Next slide</span>
</Button>
);
});
CarouselNext.displayName = "CarouselNext";
2024-11-26 03:09:48 +00:00
2025-02-20 09:31:43 +00:00
export { type CarouselApi, Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext };