Files
OmniRoute/src/shared/components/Toggle.tsx
Diego Rodrigues de Sa e Souza 3c9883bb73 Release v3.8.29 (#4126)
OmniRoute v3.8.29 — 115 commits since v3.8.28. Full CHANGELOG + 41 i18n mirrors. All content quality gates green (build, unit 8/8, vitest 188/188, PR test policy, quality gates extended, docs sync, quality ratchet). Remaining red CI checks are pre-existing release flakes (coverage-shard/integration/node-compat teardown), a new transitive undici advisory in electron devDeps, and a workflow-level CodeQL fail (0 open alerts). VPS-validated by the operator.
2026-06-19 06:49:01 -03:00

103 lines
2.5 KiB
TypeScript

"use client";
import { cn } from "@/shared/utils/cn";
interface ToggleProps {
checked?: boolean;
onChange?: (checked: boolean) => void;
label?: string;
description?: string;
disabled?: boolean;
size?: "xs" | "sm" | "md" | "lg";
className?: string;
title?: string;
ariaLabel?: string;
}
export default function Toggle({
checked = false,
onChange,
label,
description,
disabled = false,
size = "md",
className,
title,
ariaLabel,
}: ToggleProps) {
const sizes = {
xs: {
track: "w-6 h-3",
thumb: "size-[8px]",
translate: "translate-x-3.5",
},
sm: {
track: "w-8 h-4",
thumb: "size-3",
translate: "translate-x-4",
},
md: {
track: "w-11 h-6",
thumb: "size-5",
translate: "translate-x-5",
},
lg: {
track: "w-14 h-7",
thumb: "size-6",
translate: "translate-x-7",
},
};
const handleClick = () => {
if (!disabled && onChange) {
onChange(!checked);
}
};
return (
<div
className={cn(
"flex items-center gap-3",
disabled && "opacity-50 cursor-not-allowed",
className
)}
>
<button
type="button"
role="switch"
aria-checked={checked}
aria-label={ariaLabel || label || description || title || "Toggle"}
title={title}
disabled={disabled}
onClick={handleClick}
className={cn(
"relative inline-flex shrink-0 cursor-pointer rounded-full",
"transition-colors duration-200 ease-in-out",
"border shadow-inner",
"focus:outline-none focus:ring-1 focus:ring-accent/30",
checked ? "border-primary bg-primary" : "border-border bg-surface-2 dark:bg-white/20",
sizes[size].track,
disabled && "cursor-not-allowed"
)}
>
<span
aria-hidden="true"
className={cn(
"pointer-events-none inline-block rounded-full bg-white shadow-sm",
"transform transition duration-200 ease-in-out",
checked ? sizes[size].translate : "translate-x-0.5",
sizes[size].thumb,
"mt-0.5"
)}
/>
</button>
{(label || description) && (
<div className="flex flex-col">
{label && <span className="text-sm font-medium text-text-main">{label}</span>}
{description && <span className="text-xs text-text-muted">{description}</span>}
</div>
)}
</div>
);
}