2020-07-10 09:09:49 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
|
|
import { Icon, noAlt } from '@woocommerce/icons';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2021-01-19 15:55:44 +00:00
|
|
|
import Chip from './chip.js';
|
2020-07-10 09:09:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Component used to render a "chip" -- an item containing some text with
|
|
|
|
* an X button to remove/dismiss each chip.
|
2020-09-20 23:54:08 +00:00
|
|
|
*
|
|
|
|
* @param {Object} props Incoming props for the component.
|
|
|
|
* @param {string} props.ariaLabel Aria label content.
|
|
|
|
* @param {string} props.className CSS class used.
|
|
|
|
* @param {boolean} props.disabled Whether action is disabled or not.
|
|
|
|
* @param {function():any} props.onRemove Function to call when remove event is fired.
|
|
|
|
* @param {boolean} props.removeOnAnyClick Whether to expand click area for remove event.
|
|
|
|
* @param {string} props.text The text for the chip.
|
|
|
|
* @param {string} props.screenReaderText The screen reader text for the chip.
|
|
|
|
* @param {Object} props.props Rest of props passed into component.
|
2020-07-10 09:09:49 +00:00
|
|
|
*/
|
|
|
|
const RemovableChip = ( {
|
|
|
|
ariaLabel = '',
|
|
|
|
className = '',
|
|
|
|
disabled = false,
|
|
|
|
onRemove = () => void null,
|
|
|
|
removeOnAnyClick = false,
|
|
|
|
text,
|
|
|
|
screenReaderText = '',
|
|
|
|
...props
|
|
|
|
} ) => {
|
|
|
|
const RemoveElement = removeOnAnyClick ? 'span' : 'button';
|
|
|
|
|
|
|
|
if ( ! ariaLabel ) {
|
|
|
|
const ariaLabelText =
|
|
|
|
screenReaderText && typeof screenReaderText === 'string'
|
|
|
|
? screenReaderText
|
|
|
|
: text;
|
|
|
|
ariaLabel =
|
|
|
|
typeof ariaLabelText !== 'string'
|
|
|
|
? /* translators: Remove chip. */
|
|
|
|
__( 'Remove', 'woo-gutenberg-products-block' )
|
|
|
|
: sprintf(
|
|
|
|
/* translators: %s text of the chip to remove. */
|
|
|
|
__( 'Remove "%s"', 'woo-gutenberg-products-block' ),
|
|
|
|
ariaLabelText
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const clickableElementProps = {
|
|
|
|
'aria-label': ariaLabel,
|
|
|
|
disabled,
|
|
|
|
onClick: onRemove,
|
|
|
|
onKeyDown: ( e ) => {
|
|
|
|
if ( e.key === 'Backspace' || e.key === 'Delete' ) {
|
|
|
|
onRemove();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const chipProps = removeOnAnyClick ? clickableElementProps : {};
|
|
|
|
const removeProps = removeOnAnyClick
|
|
|
|
? { 'aria-hidden': true }
|
|
|
|
: clickableElementProps;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Chip
|
|
|
|
{ ...props }
|
|
|
|
{ ...chipProps }
|
|
|
|
className={ classNames( className, 'is-removable' ) }
|
|
|
|
element={ removeOnAnyClick ? 'button' : props.element }
|
|
|
|
screenReaderText={ screenReaderText }
|
|
|
|
text={ text }
|
|
|
|
>
|
|
|
|
<RemoveElement
|
|
|
|
className="wc-block-components-chip__remove"
|
|
|
|
{ ...removeProps }
|
|
|
|
>
|
2020-07-10 18:20:57 +00:00
|
|
|
<Icon
|
|
|
|
className="wc-block-components-chip__remove-icon"
|
|
|
|
srcElement={ noAlt }
|
|
|
|
size={ 16 }
|
|
|
|
/>
|
2020-07-10 09:09:49 +00:00
|
|
|
</RemoveElement>
|
|
|
|
</Chip>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
RemovableChip.propTypes = {
|
|
|
|
text: PropTypes.node.isRequired,
|
|
|
|
ariaLabel: PropTypes.string,
|
|
|
|
className: PropTypes.string,
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
onRemove: PropTypes.func,
|
|
|
|
removeOnAnyClick: PropTypes.bool,
|
|
|
|
screenReaderText: PropTypes.string,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default RemovableChip;
|