58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { __, sprintf } from '@wordpress/i18n';
|
||
|
import { useEffect, useRef } from '@wordpress/element';
|
||
|
import { Icon, noAlt } from '@woocommerce/icons';
|
||
|
|
||
|
const DropdownSelectorSelectedValue = ( { onClick, onRemoveItem, option } ) => {
|
||
|
const labelRef = useRef( null );
|
||
|
|
||
|
useEffect( () => {
|
||
|
labelRef.current.focus();
|
||
|
}, [ labelRef ] );
|
||
|
|
||
|
return (
|
||
|
<div className="wc-block-dropdown-selector__selected-value wc-block-components-dropdown-selector__selected-value">
|
||
|
<button
|
||
|
ref={ labelRef }
|
||
|
className="wc-block-dropdown-selector__selected-value__label wc-block-components-dropdown-selector__selected-value__label"
|
||
|
onClick={ ( e ) => {
|
||
|
e.stopPropagation();
|
||
|
onClick( option.value );
|
||
|
} }
|
||
|
aria-label={ sprintf(
|
||
|
/* translators: %s attribute value used in the filter. For example: yellow, green, small, large. */
|
||
|
__(
|
||
|
'Replace current %s filter',
|
||
|
'woocommerce'
|
||
|
),
|
||
|
option.name
|
||
|
) }
|
||
|
>
|
||
|
{ option.label }
|
||
|
</button>
|
||
|
<button
|
||
|
className="wc-block-dropdown-selector__selected-value__remove wc-block-components-dropdown-selector__selected-value__remove"
|
||
|
onClick={ () => {
|
||
|
onRemoveItem( option.value );
|
||
|
} }
|
||
|
onKeyDown={ ( e ) => {
|
||
|
if ( e.key === 'Backspace' || e.key === 'Delete' ) {
|
||
|
onRemoveItem( option.value );
|
||
|
}
|
||
|
} }
|
||
|
aria-label={ sprintf(
|
||
|
/* translators: %s attribute value used in the filter. For example: yellow, green, small, large. */
|
||
|
__( 'Remove %s filter', 'woocommerce' ),
|
||
|
option.name
|
||
|
) }
|
||
|
>
|
||
|
<Icon srcElement={ noAlt } size={ 16 } />
|
||
|
</button>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default DropdownSelectorSelectedValue;
|