65 lines
2.2 KiB
TypeScript
65 lines
2.2 KiB
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import { cn } from '@/lib/utils/cn';
|
||
|
|
|
||
|
|
export interface SliderProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> {
|
||
|
|
min?: number;
|
||
|
|
max?: number;
|
||
|
|
step?: number;
|
||
|
|
value?: number;
|
||
|
|
onValueChange?: (value: number) => void;
|
||
|
|
showValue?: boolean;
|
||
|
|
label?: string;
|
||
|
|
unit?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const Slider = React.forwardRef<HTMLInputElement, SliderProps>(
|
||
|
|
({ className, min = 0, max = 100, step = 1, value = 50, onValueChange, showValue = true, label, unit = '', ...props }, ref) => {
|
||
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||
|
|
const newValue = parseFloat(e.target.value);
|
||
|
|
onValueChange?.(newValue);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="space-y-2">
|
||
|
|
{label && (
|
||
|
|
<div className="flex items-center justify-between">
|
||
|
|
<label className="text-sm font-medium text-foreground">{label}</label>
|
||
|
|
{showValue && (
|
||
|
|
<span className="text-sm text-muted-foreground">
|
||
|
|
{value}{unit}
|
||
|
|
</span>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
<input
|
||
|
|
type="range"
|
||
|
|
min={min}
|
||
|
|
max={max}
|
||
|
|
step={step}
|
||
|
|
value={value}
|
||
|
|
onChange={handleChange}
|
||
|
|
className={cn(
|
||
|
|
'w-full h-2 bg-secondary rounded-lg appearance-none cursor-pointer',
|
||
|
|
'[&::-webkit-slider-thumb]:appearance-none [&::-webkit-slider-thumb]:w-4 [&::-webkit-slider-thumb]:h-4',
|
||
|
|
'[&::-webkit-slider-thumb]:rounded-full [&::-webkit-slider-thumb]:bg-primary',
|
||
|
|
'[&::-webkit-slider-thumb]:cursor-pointer [&::-webkit-slider-thumb]:transition-all',
|
||
|
|
'[&::-webkit-slider-thumb]:hover:scale-110',
|
||
|
|
'[&::-moz-range-thumb]:w-4 [&::-moz-range-thumb]:h-4 [&::-moz-range-thumb]:rounded-full',
|
||
|
|
'[&::-moz-range-thumb]:bg-primary [&::-moz-range-thumb]:border-0',
|
||
|
|
'[&::-moz-range-thumb]:cursor-pointer [&::-moz-range-thumb]:transition-all',
|
||
|
|
'[&::-moz-range-thumb]:hover:scale-110',
|
||
|
|
'disabled:opacity-50 disabled:cursor-not-allowed',
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
ref={ref}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
Slider.displayName = 'Slider';
|
||
|
|
|
||
|
|
export { Slider };
|