39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import * as SliderPrimitive from "@radix-ui/react-slider"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const Slider = React.forwardRef<
|
|
React.ElementRef<typeof SliderPrimitive.Root>,
|
|
React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>
|
|
>(({ className, ...props }, ref) => {
|
|
const value = props.value || props.defaultValue || [0]
|
|
const thumbCount = Array.isArray(value) ? value.length : 1
|
|
|
|
return (
|
|
<SliderPrimitive.Root
|
|
ref={ref}
|
|
className={cn(
|
|
"relative flex w-full touch-none select-none items-center",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
<SliderPrimitive.Track className="relative h-0.5 w-full grow overflow-hidden rounded-full bg-primary/20">
|
|
<SliderPrimitive.Range className="absolute h-full bg-brand" />
|
|
</SliderPrimitive.Track>
|
|
{Array.from({ length: thumbCount }).map((_, index) => (
|
|
<SliderPrimitive.Thumb
|
|
key={index}
|
|
className="block h-2 w-2 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50"
|
|
/>
|
|
))}
|
|
</SliderPrimitive.Root>
|
|
)
|
|
})
|
|
Slider.displayName = SliderPrimitive.Root.displayName
|
|
|
|
export { Slider }
|