/** @format */ /** * External dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { Component } from '@wordpress/element'; import { findIndex, noop } from 'lodash'; import Gridicon from 'gridicons'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import Autocomplete from './autocomplete'; import { product, productCategory, coupons } from './autocompleters'; import Tag from 'components/tag'; import './style.scss'; /** * A search box which autocompletes results while typing, allowing for the user to select an existing object * (product, order, customer, etc). Currently only products are supported. */ class Search extends Component { constructor( props ) { super( props ); this.state = { value: '', }; this.selectResult = this.selectResult.bind( this ); this.removeResult = this.removeResult.bind( this ); this.updateSearch = this.updateSearch.bind( this ); } selectResult( value ) { const { selected, onChange } = this.props; // Check if this is already selected const isSelected = findIndex( selected, { id: value.id } ); if ( -1 === isSelected ) { this.setState( { value: '' } ); onChange( [ ...selected, value ] ); } } removeResult( id ) { return () => { const { selected, onChange } = this.props; const i = findIndex( selected, { id } ); onChange( [ ...selected.slice( 0, i ), ...selected.slice( i + 1 ) ] ); }; } updateSearch( onChange ) { return event => { const value = event.target.value || ''; this.setState( { value } ); onChange( event ); }; } getAutocompleter() { switch ( this.props.type ) { case 'products': return product; case 'product_cats': return productCategory; case 'coupons': return coupons; default: return {}; } } render() { const autocompleter = this.getAutocompleter(); const { placeholder, selected } = this.props; const { value = '' } = this.state; const aria = { 'aria-labelledby': this.props[ 'aria-labelledby' ], 'aria-label': this.props[ 'aria-label' ], }; return (