52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import { cn } from '@/lib/utils/cn';
|
||
|
|
|
||
|
|
export interface SelectOption {
|
||
|
|
value: string;
|
||
|
|
label: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface SelectProps extends Omit<React.SelectHTMLAttributes<HTMLSelectElement>, 'onChange'> {
|
||
|
|
options: SelectOption[];
|
||
|
|
onValueChange?: (value: string) => void;
|
||
|
|
label?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const Select = React.forwardRef<HTMLSelectElement, SelectProps>(
|
||
|
|
({ className, options, onValueChange, label, value, ...props }, ref) => {
|
||
|
|
const handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {
|
||
|
|
onValueChange?.(e.target.value);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="space-y-2">
|
||
|
|
{label && <label className="text-sm font-medium text-foreground">{label}</label>}
|
||
|
|
<select
|
||
|
|
value={value}
|
||
|
|
onChange={handleChange}
|
||
|
|
className={cn(
|
||
|
|
'flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm',
|
||
|
|
'ring-offset-background focus-visible:outline-none focus-visible:ring-2',
|
||
|
|
'focus-visible:ring-ring focus-visible:ring-offset-2',
|
||
|
|
'disabled:cursor-not-allowed disabled:opacity-50',
|
||
|
|
'cursor-pointer',
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
ref={ref}
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
{options.map((option) => (
|
||
|
|
<option key={option.value} value={option.value}>
|
||
|
|
{option.label}
|
||
|
|
</option>
|
||
|
|
))}
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
Select.displayName = 'Select';
|
||
|
|
|
||
|
|
export { Select };
|