/** * External dependencies */ import PropTypes from 'prop-types'; import { decodeEntities } from '@wordpress/html-entities'; /** * Internal dependencies */ import Select from '../select'; const CountryInput = ( { className, countries, label, onChange, value = '', autoComplete = 'off', } ) => { const options = Object.keys( countries ).map( ( key ) => ( { key, name: decodeEntities( countries[ key ] ), } ) ); return ( <> { const textValue = event.target.value; const foundOption = options.find( ( option ) => option.key === textValue ); onChange( foundOption ? foundOption.key : '' ); } } style={ { height: '0', border: '0', padding: '0', position: 'absolute', } } /> ) } ); }; CountryInput.propTypes = { countries: PropTypes.objectOf( PropTypes.string ).isRequired, onChange: PropTypes.func.isRequired, className: PropTypes.string, label: PropTypes.string, value: PropTypes.string, autoComplete: PropTypes.string, }; export default CountryInput;