UNPKG

react-aria

Version:
109 lines (96 loc) 5.46 kB
import {filterDOMProps as $8e9d2fae0ecb9001$export$457c3d6518dd4c6f} from "../utils/filterDOMProps.mjs"; import {getEventTarget as $23f2114a1b82827e$export$e58f029f0fbfdb29} from "../utils/shadowdom/DOMFunctions.mjs"; import {mergeProps as $bbaa08b3cd72f041$export$9d1611c77c2fe928} from "../utils/mergeProps.mjs"; import {useField as $191c9b6d48a0a4e2$export$294aa081a6c6f55d} from "../label/useField.mjs"; import {useFocusable as $d1116acdf220c2da$export$4c014de7c8940b4c} from "../interactions/useFocusable.mjs"; import {useFormReset as $3274bf1495747a7b$export$5add1d006293d136} from "../utils/useFormReset.mjs"; import {useFormValidation as $860f7da480e22816$export$b8473d3665f3a75a} from "../form/useFormValidation.mjs"; import $70eGi$react, {useState as $70eGi$useState} from "react"; import {useControlledState as $70eGi$useControlledState} from "react-stately/useControlledState"; import {useFormValidationState as $70eGi$useFormValidationState} from "react-stately/private/form/useFormValidationState"; /* * 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. */ function $054f71d2330da2e3$export$712718f7aec83d5(props, ref) { let { inputElementType: inputElementType = 'input', isDisabled: isDisabled = false, isRequired: isRequired = false, isReadOnly: isReadOnly = false, type: type = 'text', validationBehavior: validationBehavior = 'aria' } = props; let [value, setValue] = (0, $70eGi$useControlledState)(props.value, props.defaultValue || '', props.onChange); let { focusableProps: focusableProps } = (0, $d1116acdf220c2da$export$4c014de7c8940b4c)(props, ref); let validationState = (0, $70eGi$useFormValidationState)({ ...props, value: value }); let { isInvalid: isInvalid, validationErrors: validationErrors, validationDetails: validationDetails } = validationState.displayValidation; let { labelProps: labelProps, fieldProps: fieldProps, descriptionProps: descriptionProps, errorMessageProps: errorMessageProps } = (0, $191c9b6d48a0a4e2$export$294aa081a6c6f55d)({ ...props, isInvalid: isInvalid, errorMessage: props.errorMessage || validationErrors }); let domProps = (0, $8e9d2fae0ecb9001$export$457c3d6518dd4c6f)(props, { labelable: true }); const inputOnlyProps = { type: type, pattern: props.pattern }; let [initialValue] = (0, $70eGi$useState)(value); (0, $3274bf1495747a7b$export$5add1d006293d136)(ref, props.defaultValue ?? initialValue, setValue); (0, $860f7da480e22816$export$b8473d3665f3a75a)(props, validationState, ref); return { labelProps: labelProps, inputProps: (0, $bbaa08b3cd72f041$export$9d1611c77c2fe928)(domProps, inputElementType === 'input' ? inputOnlyProps : undefined, { disabled: isDisabled, readOnly: isReadOnly, required: isRequired && validationBehavior === 'native', 'aria-required': isRequired && validationBehavior === 'aria' || undefined, 'aria-invalid': isInvalid || undefined, 'aria-errormessage': props['aria-errormessage'], 'aria-activedescendant': props['aria-activedescendant'], 'aria-autocomplete': props['aria-autocomplete'], 'aria-haspopup': props['aria-haspopup'], 'aria-controls': props['aria-controls'], value: value, onChange: (e)=>setValue((0, $23f2114a1b82827e$export$e58f029f0fbfdb29)(e).value), autoComplete: props.autoComplete, autoCapitalize: props.autoCapitalize, maxLength: props.maxLength, minLength: props.minLength, name: props.name, form: props.form, placeholder: props.placeholder, inputMode: props.inputMode, autoCorrect: props.autoCorrect, spellCheck: props.spellCheck, [parseInt((0, $70eGi$react).version, 10) >= 17 ? 'enterKeyHint' : 'enterkeyhint']: props.enterKeyHint, // Clipboard events onCopy: props.onCopy, onCut: props.onCut, onPaste: props.onPaste, // Composition events onCompositionEnd: props.onCompositionEnd, onCompositionStart: props.onCompositionStart, onCompositionUpdate: props.onCompositionUpdate, // Selection events onSelect: props.onSelect, // Input events onBeforeInput: props.onBeforeInput, onInput: props.onInput, ...focusableProps, ...fieldProps }), descriptionProps: descriptionProps, errorMessageProps: errorMessageProps, isInvalid: isInvalid, validationErrors: validationErrors, validationDetails: validationDetails }; } export {$054f71d2330da2e3$export$712718f7aec83d5 as useTextField}; //# sourceMappingURL=useTextField.mjs.map