mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-29 21:19:25 +02:00
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
import clsx from 'clsx'
|
|
|
|
interface SwitchProps {
|
|
checked: boolean
|
|
onChange: (checked: boolean) => void
|
|
label?: string
|
|
description?: string
|
|
disabled?: boolean
|
|
id?: string
|
|
}
|
|
|
|
export default function Switch({
|
|
checked,
|
|
onChange,
|
|
label,
|
|
description,
|
|
disabled = false,
|
|
id,
|
|
}: SwitchProps) {
|
|
const switchId = id || `switch-${label?.replace(/\s+/g, '-').toLowerCase()}`
|
|
|
|
return (
|
|
<div className="flex items-center justify-between py-2">
|
|
{(label || description) && (
|
|
<div className="flex-1">
|
|
{label && (
|
|
<label
|
|
htmlFor={switchId}
|
|
className="text-base font-medium text-gray-900 cursor-pointer"
|
|
>
|
|
{label}
|
|
</label>
|
|
)}
|
|
{description && <p className="text-sm text-gray-500 mt-1">{description}</p>}
|
|
</div>
|
|
)}
|
|
<div className="flex items-center ml-4">
|
|
<button
|
|
id={switchId}
|
|
type="button"
|
|
role="switch"
|
|
aria-checked={checked}
|
|
disabled={disabled}
|
|
onClick={() => !disabled && onChange(!checked)}
|
|
className={clsx(
|
|
'relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent',
|
|
'transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-desert-green focus:ring-offset-2',
|
|
checked ? 'bg-desert-green' : 'bg-gray-200',
|
|
disabled ? 'opacity-50 cursor-not-allowed' : ''
|
|
)}
|
|
>
|
|
<span
|
|
className={clsx(
|
|
'pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0',
|
|
'transition duration-200 ease-in-out',
|
|
checked ? 'translate-x-5' : 'translate-x-0'
|
|
)}
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|