| 12345678910111213141516171819202122232425262728293031 |
- // Props to https://github.com/shadcn-ui/ui/issues/885#issuecomment-2059600641
- // @mildtomato - consider using this as the main Slider component in packages/ui
- import { Slider as SliderPrimitive } from 'radix-ui'
- import { ComponentPropsWithoutRef, ElementRef, forwardRef, Fragment } from 'react'
- import { cn } from 'ui'
- export const Slider = forwardRef<
- ElementRef<typeof SliderPrimitive.Root>,
- ComponentPropsWithoutRef<typeof SliderPrimitive.Root>
- >(({ className, ...props }, ref) => {
- const initialValue = Array.isArray(props.value) ? props.value : [props.min, props.max]
- return (
- <SliderPrimitive.Root
- ref={ref}
- className={cn('relative flex w-full touch-none select-none items-center', className)}
- {...props}
- >
- <SliderPrimitive.Track className="relative h-2 w-full grow overflow-hidden rounded-full bg-secondary">
- <SliderPrimitive.Range className="absolute h-full bg-primary" />
- </SliderPrimitive.Track>
- {initialValue.map((_, index) => (
- <Fragment key={index}>
- <SliderPrimitive.Thumb className="block h-4 w-4 rounded-full border-2 border-primary bg-background ring-offset-background transition-colors focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" />
- </Fragment>
- ))}
- </SliderPrimitive.Root>
- )
- })
- Slider.displayName = SliderPrimitive.Root.displayName
|