UNPKG

@gluestack-ui/utils

Version:

Utility functions and hooks for gluestack-ui

43 lines 2.4 kB
/* * Copyright 2020 Adobe. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { filterDOMProps, mergeProps } from '@react-aria/utils'; import { useFocusable } from '@react-aria/focus'; import { usePress } from '../interactions'; /** * Handles interactions for toggle elements, e.g. Checkboxes and Switches. */ export function useToggle(props, state, ref) { let { isDisabled = false, isRequired, isReadOnly, value, name, children, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, validationState = 'valid', } = props; let onChange = (e) => { // since we spread props on label, onChange will end up there as well as in here. // so we have to stop propagation at the lowest level that we care about e.stopPropagation(); state.setSelected(e.target.checked); }; let hasChildren = children != null; let hasAriaLabel = ariaLabel != null || ariaLabelledby != null; if (!hasChildren && !hasAriaLabel) { console.warn('If you do not provide children, you must specify an aria-label for accessibility'); } // This handles focusing the input on pointer down, which Safari does not do by default. let { pressProps } = usePress({ isDisabled, }); let { focusableProps } = useFocusable(props, ref); let interactions = mergeProps(pressProps, focusableProps); let domProps = filterDOMProps(props, { labelable: true }); return { inputProps: mergeProps(domProps, Object.assign({ 'aria-invalid': validationState === 'invalid' || undefined, 'aria-errormessage': props['aria-errormessage'], 'aria-controls': props['aria-controls'], 'aria-readonly': isReadOnly || undefined, onChange, 'disabled': isDisabled, 'required': isRequired, value, name, 'type': 'checkbox' }, interactions)), }; } //# sourceMappingURL=useToggle.web.js.map