woocommerce/plugins/woocommerce-blocks/assets/js/components/product-attribute-control/index.js

148 lines
3.6 KiB
JavaScript
Raw Normal View History

/**
* External dependencies
*/
import { __, _n, sprintf } from '@wordpress/i18n';
import { addQueryArgs } from '@wordpress/url';
import apiFetch from '@wordpress/api-fetch';
import { Component } from '@wordpress/element';
import { find } from 'lodash';
import PropTypes from 'prop-types';
/**
* Internal dependencies
*/
import './style.scss';
import SearchListControl from '../search-list-control';
import SearchListItem from '../search-list-control/item';
class ProductAttributeControl extends Component {
constructor() {
super( ...arguments );
this.state = {
list: [],
loading: true,
};
}
componentDidMount() {
const getTermsInAttribute = ( { id } ) => {
return apiFetch( {
path: addQueryArgs( `/wc-pb/v3/products/attributes/${ id }/terms`, {
per_page: -1,
} ),
} ).then( ( terms ) => terms.map( ( t ) => ( { ...t, parent: id } ) ) );
};
apiFetch( {
path: addQueryArgs( '/wc-pb/v3/products/attributes', { per_page: -1 } ),
} )
.then( ( attributes ) => {
// Fetch the terms list for each attribute group, then flatten them into one list.
Promise.all( attributes.map( getTermsInAttribute ) ).then( ( results ) => {
const list = attributes.map( ( a ) => ( { ...a, parent: 0 } ) );
results.forEach( ( terms ) => {
list.push( ...terms );
} );
this.setState( { list, loading: false } );
} );
} )
.catch( () => {
this.setState( { list: [], loading: false } );
} );
}
renderItem( args ) {
const { item, search, depth = 0 } = args;
const classes = [
'woocommerce-product-attributes__item',
'woocommerce-search-list__item',
];
if ( search.length ) {
classes.push( 'is-searching' );
}
if ( depth === 0 && item.parent !== 0 ) {
classes.push( 'is-skip-level' );
}
if ( ! item.breadcrumbs.length ) {
classes.push( 'is-not-active' );
return (
<div className={ classes.join( ' ' ) }>
<span className="woocommerce-search-list__item-label">
<span className="woocommerce-search-list__item-name">
{ item.name }
</span>
</span>
</div>
);
}
return (
<SearchListItem
className={ classes.join( ' ' ) }
{ ...args }
showCount
aria-label={ `${ item.breadcrumbs[ 0 ] }: ${ item.name }` }
/>
);
}
render() {
const { list, loading } = this.state;
const { selected, onChange } = this.props;
const messages = {
clear: __( 'Clear all product attributes', 'woo-gutenberg-products-block' ),
list: __( 'Product Attributes', 'woo-gutenberg-products-block' ),
noItems: __(
"Your store doesn't have any product attributes.",
'woo-gutenberg-products-block'
),
search: __(
'Search for product attributes',
'woo-gutenberg-products-block'
),
selected: ( n ) =>
sprintf(
_n(
'%d attribute selected',
'%d attributes selected',
n,
'woo-gutenberg-products-block'
),
n
),
updated: __(
'Product attribute search results updated.',
'woo-gutenberg-products-block'
),
};
return (
<SearchListControl
className="woocommerce-product-attributes"
list={ list }
isLoading={ loading }
selected={ selected.map( ( { id } ) => find( list, { id } ) ).filter( Boolean ) }
onChange={ onChange }
renderItem={ this.renderItem }
messages={ messages }
isHierarchical
/>
);
}
}
ProductAttributeControl.propTypes = {
/**
* Callback to update the selected product attributes.
*/
onChange: PropTypes.func.isRequired,
/**
* The list of currently selected attribute slug/ID pairs.
*/
selected: PropTypes.array.isRequired,
};
export default ProductAttributeControl;