import * as React from 'react';
import * as SliderPrimitive from '@radix-ui/react-slider';
import { cn } from '~/utils';

type SliderProps = React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> & {
  className?: string;
  onDoubleClick?: () => void;
  'aria-describedby'?: string;
} & (
    | { 'aria-label': string; 'aria-labelledby'?: never }
    | { 'aria-labelledby': string; 'aria-label'?: never }
    | { 'aria-label': string; 'aria-labelledby': string }
  );

const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLSpanElement>> =
  React.forwardRef<React.ElementRef<typeof SliderPrimitive.Root>, SliderProps>(
    (
      {
        className,
        onDoubleClick,
        'aria-labelledby': ariaLabelledBy,
        'aria-label': ariaLabel,
        'aria-describedby': ariaDescribedBy,
        ...props
      },
      ref,
    ) => (
      <SliderPrimitive.Root
        ref={ref}
        {...props}
        {...{
          className: cn(
            'relative flex w-full cursor-pointer touch-none select-none items-center',
            className,
          ),
          onDoubleClick,
        }}
      >
        <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>
        <SliderPrimitive.Thumb
          {...{
            className:
              'block h-5 w-5 rounded-full border-2 border-primary bg-background ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50',
            'aria-labelledby': ariaLabelledBy,
            'aria-label': ariaLabel,
            'aria-describedby': ariaDescribedBy,
          }}
        />
      </SliderPrimitive.Root>
    ),
  );
Slider.displayName = SliderPrimitive.Root.displayName;

export { Slider };
