92 lines
1.9 KiB
TypeScript
92 lines
1.9 KiB
TypeScript
/**
|
|
* 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';
|
|
|
|
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.keys( countries ).map( ( key ) => ( {
|
|
value: key,
|
|
label: decodeEntities( countries[ key ] ),
|
|
} ) ),
|
|
[ countries ]
|
|
);
|
|
|
|
return (
|
|
<div
|
|
className={ classnames(
|
|
className,
|
|
'wc-block-components-country-input'
|
|
) }
|
|
>
|
|
<Combobox
|
|
id={ id }
|
|
label={ label }
|
|
onChange={ onChange }
|
|
options={ options }
|
|
value={ value }
|
|
errorId={ errorId }
|
|
errorMessage={ errorMessage }
|
|
required={ required }
|
|
autoComplete={ autoComplete }
|
|
/>
|
|
{ autoComplete !== 'off' && (
|
|
<input
|
|
type="text"
|
|
aria-hidden={ true }
|
|
autoComplete={ autoComplete }
|
|
value={ value }
|
|
onChange={ ( event ) => {
|
|
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 }
|
|
/>
|
|
) }
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CountryInput;
|