import React from 'react'; import { UseFieldApiConfig } from '@data-driven-forms/react-form-renderer'; import useFieldApi from '@data-driven-forms/react-form-renderer/use-field-api'; import { Input as MagmaInput, InputType, InputProps as MagmaInputProps, } from 'react-magma-dom'; import { v4 as uuidv4 } from 'uuid'; export type InputProps = MagmaInputProps & UseFieldApiConfig; const InputMapping = (props: InputProps) => { const { input, validateOnMount, showError, meta: { error, submitFailed }, input: { type = 'text', ...inputRest }, ...rest } = useFieldApi(props); const id = input.name || uuidv4(); const errorMessage = ((validateOnMount || submitFailed || showError) && error) || ''; return ( ); }; export const Input = React.memo(InputMapping);