UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

111 lines (110 loc) 4.51 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = useSwitch; var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var React = _interopRequireWildcard(require("react")); var _utils = require("@mui/utils"); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } /** * The basic building block for creating custom switches. * * Demos: * * - [Switch](https://mui.com/base/react-switch/#hook) * * API: * * - [useSwitch API](https://mui.com/base/react-switch/hooks-api/#use-switch) */ function useSwitch(props) { const { checked: checkedProp, defaultChecked, disabled, onBlur, onChange, onFocus, onFocusVisible, readOnly, required } = props; const [checked, setCheckedState] = (0, _utils.unstable_useControlled)({ controlled: checkedProp, default: Boolean(defaultChecked), name: 'Switch', state: 'checked' }); const createHandleInputChange = otherProps => event => { var _otherProps$onChange; // Workaround for https://github.com/facebook/react/issues/9023 if (event.nativeEvent.defaultPrevented) { return; } setCheckedState(event.target.checked); onChange == null ? void 0 : onChange(event); (_otherProps$onChange = otherProps.onChange) == null ? void 0 : _otherProps$onChange.call(otherProps, event); }; const { isFocusVisibleRef, onBlur: handleBlurVisible, onFocus: handleFocusVisible, ref: focusVisibleRef } = (0, _utils.unstable_useIsFocusVisible)(); const [focusVisible, setFocusVisible] = React.useState(false); if (disabled && focusVisible) { setFocusVisible(false); } React.useEffect(() => { isFocusVisibleRef.current = focusVisible; }, [focusVisible, isFocusVisibleRef]); const inputRef = React.useRef(null); const createHandleFocus = otherProps => event => { var _otherProps$onFocus; // Fix for https://github.com/facebook/react/issues/7769 if (!inputRef.current) { inputRef.current = event.currentTarget; } handleFocusVisible(event); if (isFocusVisibleRef.current === true) { setFocusVisible(true); onFocusVisible == null ? void 0 : onFocusVisible(event); } onFocus == null ? void 0 : onFocus(event); (_otherProps$onFocus = otherProps.onFocus) == null ? void 0 : _otherProps$onFocus.call(otherProps, event); }; const createHandleBlur = otherProps => event => { var _otherProps$onBlur; handleBlurVisible(event); if (isFocusVisibleRef.current === false) { setFocusVisible(false); } onBlur == null ? void 0 : onBlur(event); (_otherProps$onBlur = otherProps.onBlur) == null ? void 0 : _otherProps$onBlur.call(otherProps, event); }; const handleInputRef = (0, _utils.unstable_useForkRef)(focusVisibleRef, inputRef); const getInputProps = (otherProps = {}) => (0, _extends2.default)({ checked: checkedProp, defaultChecked, disabled, readOnly, ref: handleInputRef, required, type: 'checkbox' }, otherProps, { onChange: createHandleInputChange(otherProps), onFocus: createHandleFocus(otherProps), onBlur: createHandleBlur(otherProps) }); return { checked, disabled: Boolean(disabled), focusVisible, getInputProps, inputRef: handleInputRef, readOnly: Boolean(readOnly) }; }