Overview
- Getting Started
- Loading States
- Forms
- Feature Flags
- Portal
- Show
- For
- Text
- Toggle
- Local Storage
Actions
- Button
- Icon Button
Communication
- Admonition
- Accordion
- Avatar
- Notifications
- Progress Indicators
- Tag
- Tooltip
Containment
- Confirm Modal
- Prompt Modal
- CTA Modal
- Modaldeprecated
- Dialog
- Table
Navigation
- Menu
- Tabs
Selection
- Drag & Drop
- Checkbox
- Date Picker
- Radio
- Rating
- Select
- Combobox
- Switch
Inputs
- Field
- Input
- Textarea
- Labeldeprecated
- Fieldset
- Field Messagedeprecated
- File Uploader
Hooks & Helpers
- split-props
- trap-focusdeprecated
- use-root-colors
- use-theme
- use-theme-context
- use-toggledeprecated
useToggle
Manage the Toggle state with less code.
useToggle
The useToggle
hook allows you to manage the Toggle state with less code.
Usage
1import { Field, Toggle, useToggle } from '@cerberus/react'2
3function SomeForm() {4 const { checked, handleChange } = useToggle({ checked: 'default' })5 return (6 <Field>7 <Toggle8 checked={checked === 'default'}9 id="default"10 onChange={handleChange}11 value="default"12 />13 </Field>14 )15}
API
interface UseToggleOptions { checked?: string onChange?: (e: ChangeEvent<HTMLInputElement>) => void}interface ToggleHookReturn { checked: string handleChange: (e: ChangeEvent<HTMLInputElement>) => void}
define function useToggle(options?: UseToggleOptions): ToggleHookReturn
Arguments
The useToggle
hook accepts the following optional arguments:
Name | Default | Description |
---|---|---|
checked | The initial checked state of the toggle. | |
onChange | The custom handler the hook will call for the onChange event. |
Return
The useToggle
hook returns a memoized object with the same properties as the options object passed in.
On this page