Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | 5x 17x 5x 5x 17x 5x | import * as React from "react";
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
import { cn } from "@/lib/utils";
type ScrollAreaProps = React.ComponentPropsWithoutRef<
typeof ScrollAreaPrimitive.Root
> & {
viewportRef?: React.Ref<HTMLDivElement>;
viewportClassName?: string;
viewportTestId?: string;
viewportProps?: React.ComponentPropsWithoutRef<
typeof ScrollAreaPrimitive.Viewport
>;
scrollbarClassName?: string;
thumbClassName?: string;
};
const ScrollArea = React.forwardRef<
React.ElementRef<typeof ScrollAreaPrimitive.Root>,
ScrollAreaProps
>(
(
{
className,
children,
viewportRef,
viewportClassName,
viewportTestId,
viewportProps,
scrollbarClassName,
thumbClassName,
...props
},
ref,
) => (
<ScrollAreaPrimitive.Root
ref={ref}
className={cn("relative overflow-hidden", className)}
{...props}
>
<ScrollAreaPrimitive.Viewport
ref={viewportRef}
data-testid={viewportTestId}
className={cn(
"h-full w-full rounded-[inherit]",
viewportClassName,
viewportProps?.className,
)}
{...viewportProps}
>
{children}
</ScrollAreaPrimitive.Viewport>
<ScrollBar className={scrollbarClassName} thumbClassName={thumbClassName} />
<ScrollAreaPrimitive.Corner />
</ScrollAreaPrimitive.Root>
));
ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
const ScrollBar = React.forwardRef<
React.ElementRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>,
React.ComponentPropsWithoutRef<
typeof ScrollAreaPrimitive.ScrollAreaScrollbar
> & { thumbClassName?: string }
>(({ className, orientation = "vertical", thumbClassName, ...props }, ref) => (
<ScrollAreaPrimitive.ScrollAreaScrollbar
ref={ref}
orientation={orientation}
className={cn(
"flex touch-none select-none transition-colors",
orientation === "vertical" &&
"h-full w-2.5 border-l border-l-transparent p-[1px]",
orientation === "horizontal" &&
"h-2.5 flex-col border-t border-t-transparent p-[1px]",
className,
)}
{...props}
>
<ScrollAreaPrimitive.ScrollAreaThumb
className={cn("relative flex-1 rounded-full bg-border", thumbClassName)}
/>
</ScrollAreaPrimitive.ScrollAreaScrollbar>
));
ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
export { ScrollArea, ScrollBar };
|