UNPKG

@mui/base

Version:

MUI Base is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

91 lines (90 loc) 2.42 kB
'use client'; import * as React from 'react'; import { unstable_useControlled as useControlled, unstable_useForkRef as useForkRef, unstable_isFocusVisible as isFocusVisible } from '@mui/utils'; /** * The basic building block for creating custom switches. * * Demos: * * - [Switch](https://mui.com/base-ui/react-switch/#hook) * * API: * * - [useSwitch API](https://mui.com/base-ui/react-switch/hooks-api/#use-switch) */ export function useSwitch(props) { const { checked: checkedProp, defaultChecked, disabled, onBlur, onChange, onFocus, onFocusVisible, readOnly, required } = props; const [checked, setCheckedState] = useControlled({ controlled: checkedProp, default: Boolean(defaultChecked), name: 'Switch', state: 'checked' }); const createHandleInputChange = otherProps => event => { // Workaround for https://github.com/facebook/react/issues/9023 if (event.nativeEvent.defaultPrevented) { return; } setCheckedState(event.target.checked); onChange?.(event); otherProps.onChange?.(event); }; const [focusVisible, setFocusVisible] = React.useState(false); if (disabled && focusVisible) { setFocusVisible(false); } const inputRef = React.useRef(null); const createHandleFocus = otherProps => event => { // Fix for https://github.com/facebook/react/issues/7769 if (!inputRef.current) { inputRef.current = event.currentTarget; } if (isFocusVisible(event.target)) { setFocusVisible(true); onFocusVisible?.(event); } onFocus?.(event); otherProps.onFocus?.(event); }; const createHandleBlur = otherProps => event => { if (!isFocusVisible(event.target)) { setFocusVisible(false); } onBlur?.(event); otherProps.onBlur?.(event); }; const handleInputRef = useForkRef(inputRef); const getInputProps = (otherProps = {}) => ({ checked: checkedProp, defaultChecked, disabled, readOnly, ref: handleInputRef, required, type: 'checkbox', role: 'switch', 'aria-checked': checkedProp, ...otherProps, onChange: createHandleInputChange(otherProps), onFocus: createHandleFocus(otherProps), onBlur: createHandleBlur(otherProps) }); return { checked, disabled: Boolean(disabled), focusVisible, getInputProps, inputRef: handleInputRef, readOnly: Boolean(readOnly) }; }