/** ******************************************************************************************************************* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed 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 CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. * ******************************************************************************************************************** */ import React from 'react'; import FormField from '@cloudscape-design/components/form-field'; import useFieldApi, { UseFieldApiConfig, UseFieldApiProps } from '@data-driven-forms/react-form-renderer/use-field-api'; import getErrorText from '../../utils/getErrorText'; import useUniqueId from '../../../../hooks/useUniqueId'; export interface DataDrivenFormFieldProps extends UseFieldApiProps { isRequired: boolean; errorText: string | undefined; controlId: string; onFocus: () => void; onBlur: () => void; } type ExcludedFieldPropKey = | 'controlId' | 'label' | 'description' | 'errorText' | 'constraintText' | 'info' | 'i18nStrings' | 'stretch' | 'secondaryControl'; function getProps(formFieldProps: UseFieldApiConfig, excludeComponentProp = false) { let { component, ...props } = formFieldProps; return excludeComponentProp ? props : formFieldProps; } function withDataDrivenFormField( FieldComponent: React.FunctionComponent, excludeComponentProp = false, excludedFieldPropKeys: ExcludedFieldPropKey[] = [] ) { return (formFieldProps: UseFieldApiConfig) => { const props = getProps(formFieldProps, excludeComponentProp); const useFieldApiProps = useFieldApi(props); const { label, description, helperText, info, i18nStrings, stretch, secondaryControl, isDisabled, isReadOnly, isRequired, input, validateOnMount, meta: { error, submitFailed }, showError, } = useFieldApiProps; const controlId = useUniqueId(input.name); const errorText = getErrorText(validateOnMount, submitFailed, showError, error); const onFocus = input.onFocus; const onBlur = input.onBlur; const cloudscapeComponentProps = { disabled: isDisabled, readOnly: isReadOnly, ariaRequired: isRequired, invalid: !!errorText, controlId, }; const fieldProps = Object.entries({ controlId, label, description, errorText, constraintText: helperText, info, i18nStrings, stretch, secondaryControl, }).reduce((props, [key, value]) => { if (!excludedFieldPropKeys.includes(key as ExcludedFieldPropKey)) { props[key] = value; } return props; }, {}); return ( ); }; } export default withDataDrivenFormField;