Component
Switch Group
Group of related independent on/off settings in a fieldset/legend with a shared value array.
- Component
- React
- TSX
- Tailwind CSS
- MIT
Preview
Live component
9:41 100%
devsnips.dev/library/react/components/switches/switch-group/ fluid · no fixed width 100%
Install
Add to your project
npx devsnips add React/Components/Switches/switch-group React/Components/Switches/switch-group import type { ChangeEvent, ReactNode } from "react";
import { useId, useState } from "react";
function cx(...parts: Array<string | false | null | undefined>): string {
return parts.filter(Boolean).join(" ");
}
export interface SwitchGroupOption {
value: string;
label: ReactNode;
disabled?: boolean;
description?: ReactNode;
}
export interface SwitchGroupProps {
legend: ReactNode;
options: SwitchGroupOption[];
value?: string[];
defaultValue?: string[];
onChange?: (value: string[], event: ChangeEvent<HTMLInputElement>) => void;
disabled?: boolean;
required?: boolean;
invalid?: boolean;
error?: string;
helperText?: ReactNode;
name?: string;
id?: string;
orientation?: "vertical" | "horizontal";
className?: string;
}
/**
* A group of related, independent on/off settings inside a
* `<fieldset>`/`<legend>`. Maintains a value array of the options that are
* on — each switch stays independently controllable (this is NOT a radio
* group). Controlled (`value`/`onChange`) and uncontrolled (`defaultValue`)
* modes are both supported. Built on native `<input type="checkbox"
* role="switch">` elements sharing a `name`.
*/
export function SwitchGroup({
legend,
options,
value,
defaultValue = [],
onChange,
disabled,
required,
invalid,
error,
helperText,
name,
id,
orientation = "vertical",
className,
}: SwitchGroupProps) {
const generatedId = useId();
const groupId = id ?? `switch-group-${generatedId}`;
const messageId = `${groupId}-msg`;
const isControlled = value !== undefined;
const [internal, setInternal] = useState<string[]>(defaultValue);
const selected = isControlled ? value : internal;
function handleChange(option: SwitchGroupOption, event: ChangeEvent<HTMLInputElement>) {
const next = event.target.checked
? [...selected, option.value]
: selected.filter((v) => v !== option.value);
if (!isControlled) setInternal(next);
onChange?.(next, event);
}
const describedby = error || helperText ? messageId : undefined;
return (
<fieldset
id={groupId}
className={cx("min-w-0 border-0 p-0", className)}
aria-invalid={invalid || error ? true : undefined}
aria-describedby={describedby}
>
<legend className="mb-2 block text-[13px] font-medium leading-5 text-[var(--ds-color-foreground)]">
{legend}
{required ? (
<span aria-hidden="true" className="ml-0.5 text-[var(--ds-color-destructive)]">*</span>
) : null}
</legend>
<div className={cx("flex gap-2", orientation === "vertical" ? "flex-col" : "flex-wrap")}>
{options.map((option) => {
const isOn = selected.includes(option.value);
const optionDisabled = option.disabled || disabled;
return (
<label
key={option.value}
htmlFor={`${groupId}-${option.value}`}
className={cx(
"inline-flex items-start gap-2.5 text-sm leading-5 text-[var(--ds-color-foreground)]",
optionDisabled ? "cursor-not-allowed" : "cursor-pointer",
orientation === "horizontal" ? "mr-2" : "",
)}
>
<span className={cx("relative mt-[3px] inline-flex h-[14px] w-[24px] shrink-0 items-center", optionDisabled && "opacity-50")}>
<input
id={`${groupId}-${option.value}`}
type="checkbox"
role="switch"
aria-checked={isOn}
name={name}
value={option.value}
checked={isOn}
disabled={optionDisabled}
required={required}
aria-invalid={invalid || error ? true : undefined}
aria-describedby={option.description ? `${groupId}-${option.value}-desc` : undefined}
className={cx(
"absolute inset-0 h-full w-full cursor-pointer appearance-none rounded-full border transition-colors duration-150 ease-out hover:border-[var(--ds-color-border-strong)] focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[var(--ds-color-focus-ring)] disabled:cursor-not-allowed motion-reduce:transition-none",
invalid || error
? (isOn
? "border-[var(--ds-color-destructive)] bg-[var(--ds-color-destructive)]"
: "border-[var(--ds-color-destructive)]")
: isOn
? "border-[var(--ds-color-primary)] bg-[var(--ds-color-primary)]"
: "border-[var(--ds-color-border)] bg-[var(--ds-color-input)]",
)}
onChange={(e) => handleChange(option, e)}
/>
<span
aria-hidden="true"
className={cx(
"pointer-events-none absolute left-[2px] top-[2px] size-[10px] rounded-full transition-[transform,background-color] duration-150 ease-out motion-reduce:transition-none",
isOn ? "translate-x-[10px]" : "translate-x-0",
(invalid || error) && isOn
? "bg-[var(--ds-color-destructive-foreground)]"
: isOn
? "bg-[var(--ds-color-primary-foreground)]"
: "bg-[var(--ds-color-muted-foreground)]",
)}
/>
</span>
<span className="flex flex-col gap-0.5">
<span className="select-none font-medium">{option.label}</span>
{option.description ? (
<span id={`${groupId}-${option.value}-desc`} className="text-xs leading-4 text-[var(--ds-color-muted-foreground)]">
{option.description}
</span>
) : null}
</span>
</label>
);
})}
</div>
{error ? (
<p id={messageId} role="alert" className="mt-2 text-xs leading-4 text-[var(--ds-color-destructive)]">
{error}
</p>
) : helperText ? (
<p id={messageId} className="mt-2 text-xs leading-4 text-[var(--ds-color-muted-foreground)]">
{helperText}
</p>
) : null}
</fieldset>
);
}
export default SwitchGroup; /* DevSnips React — JavaScript parity build.
* Same API, behavior, and classes as code.tsx; TypeScript types removed.
* Regenerated from code.tsx — edit code.tsx and re-run the generator.
*/
import { useId, useState } from "react";
function cx(...parts) {
return parts.filter(Boolean).join(" ");
}
export function SwitchGroup({
legend,
options,
value,
defaultValue = [],
onChange,
disabled,
required,
invalid,
error,
helperText,
name,
id,
orientation = "vertical",
className
}) {
const generatedId = useId();
const groupId = id ?? `switch-group-${generatedId}`;
const messageId = `${groupId}-msg`;
const isControlled = value !== undefined;
const [internal, setInternal] = useState(defaultValue);
const selected = isControlled ? value : internal;
function handleChange(option, event) {
const next = event.target.checked ? [...selected, option.value] : selected.filter((v) => v !== option.value);
if (!isControlled) setInternal(next);
onChange?.(next, event);
}
const describedby = error || helperText ? messageId : undefined;
return <fieldset
id={groupId}
className={cx("min-w-0 border-0 p-0", className)}
aria-invalid={invalid || error ? true : undefined}
aria-describedby={describedby}
>
<legend className="mb-2 block text-[13px] font-medium leading-5 text-[var(--ds-color-foreground)]">
{legend}
{required ? <span aria-hidden="true" className="ml-0.5 text-[var(--ds-color-destructive)]">*</span> : null}
</legend>
<div className={cx("flex gap-2", orientation === "vertical" ? "flex-col" : "flex-wrap")}>
{options.map((option) => {
const isOn = selected.includes(option.value);
const optionDisabled = option.disabled || disabled;
return <label
key={option.value}
htmlFor={`${groupId}-${option.value}`}
className={cx(
"inline-flex items-start gap-2.5 text-sm leading-5 text-[var(--ds-color-foreground)]",
optionDisabled ? "cursor-not-allowed" : "cursor-pointer",
orientation === "horizontal" ? "mr-2" : ""
)}
>
<span className={cx("relative mt-[3px] inline-flex h-[14px] w-[24px] shrink-0 items-center", optionDisabled && "opacity-50")}>
<input
id={`${groupId}-${option.value}`}
type="checkbox"
role="switch"
aria-checked={isOn}
name={name}
value={option.value}
checked={isOn}
disabled={optionDisabled}
required={required}
aria-invalid={invalid || error ? true : undefined}
aria-describedby={option.description ? `${groupId}-${option.value}-desc` : undefined}
className={cx(
"absolute inset-0 h-full w-full cursor-pointer appearance-none rounded-full border transition-colors duration-150 ease-out hover:border-[var(--ds-color-border-strong)] focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[var(--ds-color-focus-ring)] disabled:cursor-not-allowed motion-reduce:transition-none",
invalid || error ? isOn ? "border-[var(--ds-color-destructive)] bg-[var(--ds-color-destructive)]" : "border-[var(--ds-color-destructive)]" : isOn ? "border-[var(--ds-color-primary)] bg-[var(--ds-color-primary)]" : "border-[var(--ds-color-border)] bg-[var(--ds-color-input)]"
)}
onChange={(e) => handleChange(option, e)}
/>
<span
aria-hidden="true"
className={cx(
"pointer-events-none absolute left-[2px] top-[2px] size-[10px] rounded-full transition-[transform,background-color] duration-150 ease-out motion-reduce:transition-none",
isOn ? "translate-x-[10px]" : "translate-x-0",
(invalid || error) && isOn ? "bg-[var(--ds-color-destructive-foreground)]" : isOn ? "bg-[var(--ds-color-primary-foreground)]" : "bg-[var(--ds-color-muted-foreground)]"
)}
/>
</span>
<span className="flex flex-col gap-0.5">
<span className="select-none font-medium">{option.label}</span>
{option.description ? <span id={`${groupId}-${option.value}-desc`} className="text-xs leading-4 text-[var(--ds-color-muted-foreground)]">
{option.description}
</span> : null}
</span>
</label>;
})}
</div>
{error ? <p id={messageId} role="alert" className="mt-2 text-xs leading-4 text-[var(--ds-color-destructive)]">
{error}
</p> : helperText ? <p id={messageId} className="mt-2 text-xs leading-4 text-[var(--ds-color-muted-foreground)]">
{helperText}
</p> : null}
</fieldset>;
}
export default SwitchGroup; # Switch Group
Group of related independent on/off settings in a fieldset/legend with a shared value array.
## Usage
```tsx
<SwitchGroup legend="Notification preferences" options={[{value:"email",label:"Email notifications"},{value:"desktop",label:"Desktop notifications"},{value:"security",label:"Security alerts"}]} defaultValue={["email","security"]} />
```
## JavaScript
A `code.jsx` build is provided for projects that ship plain JSX. It exposes the same API and behavior as `code.tsx` — only the TypeScript types are removed.
```jsx
<SwitchGroup legend="Notification preferences" options={[{value:"email",label:"Email notifications"},{value:"desktop",label:"Desktop notifications"},{value:"security",label:"Security alerts"}]} defaultValue={["email","security"]} />
```
## Props
| Name | Type | Default | Description |
|---|---|---:|---|
| `legend` | `ReactNode` (required) | — | Group label rendered in `<legend>`. |
| `options` | `{value,label,disabled?,description?}[]` (required) | — | Option list. |
| `value` / `defaultValue` | `string[]` | `[]` | Controlled / uncontrolled set of options that are on. |
| `onChange` | `(value[], event) => void` | — | Change callback. |
| `orientation` | `"vertical" \| "horizontal"` | `"vertical"` | Layout. |
| `disabled` / `required` / `invalid` / `error` / `helperText` / `name` / `id` | — | — | Standard field props. |
## States
A group of related, independent on/off settings inside a `<fieldset>`/`<legend>`. Maintains a value array of the options that are on; each switch stays independently controllable (this is not a radio group). Controlled (`value`/`onChange`) and uncontrolled (`defaultValue`) modes are both supported.
## Accessibility
`<fieldset>` + `<legend>` group labeling. Each native `<input type="checkbox" role="switch">` is wrapped in a `<label htmlFor>`; per-option descriptions are linked with `aria-describedby`. `aria-invalid` + `role="alert"` error message. Visible `focus-visible` ring on each control.
## Styling
Built with React, Tailwind CSS, and DevSnips design tokens. The component consumes the `--ds-*` semantic tokens via arbitrary values (for example `bg-[var(--ds-color-primary)]`). Define the tokens once in your theme — no component-specific CSS file is required.
## Design Tokens
See [React/DESIGN_TOKENS.md](../../../DESIGN_TOKENS.md) for the authoritative token specification. This switch uses the semantic color, radius, spacing, and motion tokens.
## Notes
Use this for a set of independent binary settings (Email / Desktop / Security alerts). For an exclusive single choice use a radio group; for one card per setting use `switch-card-group`. 163 lines UTF-8 · LF · Spaces: 2
Continue browsing