UNPKG

react-aria

Version:
118 lines (102 loc) 5.56 kB
var $b97366b6eabbb2cc$exports = require("../utils/filterDOMProps.cjs"); var $da02ee888921bc9e$exports = require("../utils/shadowdom/DOMFunctions.cjs"); var $89b39774f3b79dbb$exports = require("../utils/mergeProps.cjs"); var $e3486d9c44549186$exports = require("../label/useField.cjs"); var $cfe896014413cb8c$exports = require("../interactions/useFocusable.cjs"); var $bbab3903416f8d01$exports = require("../utils/useFormReset.cjs"); var $2dfbb9cb434f8768$exports = require("../form/useFormValidation.cjs"); var $cRvH4$react = require("react"); var $cRvH4$reactstatelyuseControlledState = require("react-stately/useControlledState"); var $cRvH4$reactstatelyprivateformuseFormValidationState = require("react-stately/private/form/useFormValidationState"); function $parcel$interopDefault(a) { return a && a.__esModule ? a.default : a; } function $parcel$export(e, n, v, s) { Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true}); } $parcel$export(module.exports, "useTextField", function () { return $262100337fa41653$export$712718f7aec83d5; }); /* * 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 $262100337fa41653$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, $cRvH4$reactstatelyuseControlledState.useControlledState)(props.value, props.defaultValue || '', props.onChange); let { focusableProps: focusableProps } = (0, $cfe896014413cb8c$exports.useFocusable)(props, ref); let validationState = (0, $cRvH4$reactstatelyprivateformuseFormValidationState.useFormValidationState)({ ...props, value: value }); let { isInvalid: isInvalid, validationErrors: validationErrors, validationDetails: validationDetails } = validationState.displayValidation; let { labelProps: labelProps, fieldProps: fieldProps, descriptionProps: descriptionProps, errorMessageProps: errorMessageProps } = (0, $e3486d9c44549186$exports.useField)({ ...props, isInvalid: isInvalid, errorMessage: props.errorMessage || validationErrors }); let domProps = (0, $b97366b6eabbb2cc$exports.filterDOMProps)(props, { labelable: true }); const inputOnlyProps = { type: type, pattern: props.pattern }; let [initialValue] = (0, $cRvH4$react.useState)(value); (0, $bbab3903416f8d01$exports.useFormReset)(ref, props.defaultValue ?? initialValue, setValue); (0, $2dfbb9cb434f8768$exports.useFormValidation)(props, validationState, ref); return { labelProps: labelProps, inputProps: (0, $89b39774f3b79dbb$exports.mergeProps)(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, $da02ee888921bc9e$exports.getEventTarget)(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, ($parcel$interopDefault($cRvH4$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 }; } //# sourceMappingURL=useTextField.cjs.map