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 { Radio as MagmaRadio, RadioProps, RadioGroup, RadioGroupProps as MagmaRadioGroupProps, } from 'react-magma-dom'; import { v4 as uuidv4 } from 'uuid'; type RadioGroupProps = MagmaRadioGroupProps & UseFieldApiConfig; const RadioMapping = (props: RadioGroupProps) => { const { input, options, validateOnMount, showError, meta: { error, submitFailed }, ...rest } = useFieldApi({ ...props, type: 'radio' }); const name = input.name || uuidv4(); const errorMessage = ((validateOnMount || submitFailed || showError) && error) || rest.errorMessage; return ( {options.map((option: RadioProps) => { return ; })} ); }; export const Radio = React.memo(RadioMapping);