/** * External dependencies */ import { useMemo } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; import { decodeEntities } from '@wordpress/html-entities'; import classnames from 'classnames'; /** * Internal dependencies */ import Combobox from '../combobox'; import './style.scss'; import type { CountryInputWithCountriesProps } from './CountryInputProps'; export const CountryInput = ( { className, countries, id, label, onChange, value = '', autoComplete = 'off', required = false, errorId, errorMessage = __( 'Please select a country.', 'woo-gutenberg-products-block' ), }: CountryInputWithCountriesProps ): JSX.Element => { const options = useMemo( () => Object.entries( countries ).map( ( [ countryCode, countryName ] ) => ( { value: countryCode, label: decodeEntities( countryName ), } ) ), [ countries ] ); return (
{ autoComplete !== 'off' && ( { const textValue = event.target.value.toLocaleUpperCase(); const foundOption = options.find( ( option ) => ( textValue.length !== 2 && option.label.toLocaleUpperCase() === textValue ) || ( textValue.length === 2 && option.value.toLocaleUpperCase() === textValue ) ); onChange( foundOption ? foundOption.value : '' ); } } style={ { minHeight: '0', height: '0', border: '0', padding: '0', position: 'absolute', } } tabIndex={ -1 } /> ) }
); }; export default CountryInput;