woocommerce/plugins/woocommerce-admin/client/marketplace/components/search/search.tsx

109 lines
2.6 KiB
TypeScript

/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Icon, search } from '@wordpress/icons';
import { useState } from '@wordpress/element';
/**
* Internal dependencies
*/
import './search.scss';
import { MARKETPLACE_URL } from '../constants';
const searchPlaceholder = __( 'Search extensions and themes', 'woocommerce' );
const marketplaceAPI = MARKETPLACE_URL + '/wp-json/wccom-extensions/1.0/search';
export interface SearchProps {
locale?: string | 'en_US';
country?: string | undefined;
}
/**
* Search component.
*
* @param {SearchProps} props - Search props: locale and country.
* @return {JSX.Element} Search component.
*/
function Search( props: SearchProps ): JSX.Element {
const locale = props.locale ?? 'en_US';
const country = props.country ?? '';
const [ searchTerm, setSearchTerm ] = useState( '' );
const build_parameter_string = (
query_string: string,
query_country: string,
query_locale: string
): string => {
const params = new URLSearchParams();
params.append( 'term', query_string );
params.append( 'country', query_country );
params.append( 'locale', query_locale );
return params.toString();
};
const runSearch = () => {
const query = searchTerm.trim();
if ( ! query ) {
return [];
}
const params = build_parameter_string( query, country, locale );
fetch( marketplaceAPI + '?' + params, {
method: 'GET',
} )
.then( ( response ) => response.json() )
.then( ( response ) => {
return response;
} );
return [];
};
const handleInputChange = (
event: React.ChangeEvent< HTMLInputElement >
) => {
setSearchTerm( event.target.value );
};
const handleKeyUp = ( event: { key: string } ) => {
if ( event.key === 'Enter' ) {
runSearch();
}
if ( event.key === 'Escape' ) {
setSearchTerm( '' );
}
};
return (
<div className="woocommerce-marketplace__search">
<label
className="screen-reader-text"
htmlFor="woocommerce-marketplace-search-query"
>
{ searchPlaceholder }
</label>
<input
id="woocommerce-marketplace-search-query"
value={ searchTerm }
className="woocommerce-marketplace__search-input"
type="search"
name="woocommerce-marketplace-search-query"
placeholder={ searchPlaceholder }
onChange={ handleInputChange }
onKeyUp={ handleKeyUp }
/>
<button
id="woocommerce-marketplace-search-button"
className="woocommerce-marketplace__search-button"
aria-label={ __( 'Search', 'woocommerce' ) }
onClick={ runSearch }
>
<Icon icon={ search } size={ 32 } />
</button>
</div>
);
}
export default Search;