342 lines
7.8 KiB
JavaScript
342 lines
7.8 KiB
JavaScript
const { __ } = wp.i18n;
|
|
const { Toolbar, withAPIData, Dropdown, Dashicon } = wp.components;
|
|
const { TransitionGroup, CSSTransition } = ReactTransitionGroup;
|
|
|
|
/**
|
|
* When the display mode is 'Specific products' search for and add products to the block.
|
|
*
|
|
* @todo Add the functionality and everything.
|
|
*/
|
|
export class ProductsSpecificSelect extends React.Component {
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
constructor( props ) {
|
|
super( props );
|
|
|
|
this.state = {
|
|
selectedProducts: props.selected_display_setting || [],
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add a product to the list of selected products.
|
|
*
|
|
* @param id int Product ID.
|
|
*/
|
|
addProduct( id ) {
|
|
|
|
let selectedProducts = this.state.selectedProducts;
|
|
selectedProducts.push( id );
|
|
|
|
this.setState( {
|
|
selectedProducts: selectedProducts
|
|
} );
|
|
|
|
/**
|
|
* We need to copy the existing data into a new array.
|
|
* We can't just push the new product onto the end of the existing array because Gutenberg seems
|
|
* to do some sort of check by reference to determine whether to *actually* update the attribute
|
|
* and will not update it if we just pass back the same array with an extra element on the end.
|
|
*/
|
|
this.props.update_display_setting_callback( selectedProducts.slice() );
|
|
}
|
|
|
|
/**
|
|
* Remove a product from the list of selected products.
|
|
*
|
|
* @param id int Product ID.
|
|
*/
|
|
removeProduct( id ) {
|
|
let oldProducts = this.state.selectedProducts;
|
|
let newProducts = [];
|
|
|
|
for ( let productId of oldProducts ) {
|
|
if ( productId !== id ) {
|
|
newProducts.push( productId );
|
|
}
|
|
}
|
|
|
|
this.setState( {
|
|
selectedProducts: newProducts
|
|
} );
|
|
|
|
this.props.update_display_setting_callback( newProducts );
|
|
}
|
|
|
|
/**
|
|
* Render the product specific select screen.
|
|
*/
|
|
render() {
|
|
return (
|
|
<div className="wc-products-list-card wc-products-list-card--specific">
|
|
<ProductsSpecificSearchField
|
|
addProductCallback={ this.addProduct.bind( this ) }
|
|
selectedProducts={ this.state.selectedProducts }
|
|
/>
|
|
<ProductSpecificSelectedProducts
|
|
products={ this.state.selectedProducts }
|
|
removeProductCallback={ this.removeProduct.bind( this ) }
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Product search area
|
|
*/
|
|
class ProductsSpecificSearchField extends React.Component {
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
constructor( props ) {
|
|
super( props );
|
|
|
|
this.state = {
|
|
searchText: '',
|
|
}
|
|
|
|
this.updateSearchResults = this.updateSearchResults.bind( this );
|
|
this.setWrapperRef = this.setWrapperRef.bind( this );
|
|
this.handleClickOutside = this.handleClickOutside.bind( this );
|
|
}
|
|
|
|
/**
|
|
* Hook in the listener for closing menu when clicked outside.
|
|
*/
|
|
componentDidMount() {
|
|
document.addEventListener( 'mousedown', this.handleClickOutside );
|
|
}
|
|
|
|
/**
|
|
* Remove the listener for closing menu when clicked outside.
|
|
*/
|
|
componentWillUnmount() {
|
|
document.removeEventListener( 'mousedown', this.handleClickOutside );
|
|
}
|
|
|
|
/**
|
|
* Set the wrapper reference.
|
|
*
|
|
* @param node DOMNode
|
|
*/
|
|
setWrapperRef( node ) {
|
|
this.wrapperRef = node;
|
|
}
|
|
|
|
/**
|
|
* Close the menu when user clicks outside the search area.
|
|
*/
|
|
handleClickOutside( evt ) {
|
|
if ( this.wrapperRef && ! this.wrapperRef.contains( event.target ) ) {
|
|
this.setState( {
|
|
searchText: '',
|
|
} );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Event handler for updating results when text is typed into the input.
|
|
*
|
|
* @param evt Event object.
|
|
*/
|
|
updateSearchResults( evt ) {
|
|
this.setState( {
|
|
searchText: evt.target.value,
|
|
} );
|
|
}
|
|
|
|
/**
|
|
* Render the product search UI.
|
|
*/
|
|
render() {
|
|
return (
|
|
<div className="wc-products-list-card__search-wrapper" ref={ this.setWrapperRef }>
|
|
<input type="search"
|
|
className="wc-products-list-card__search"
|
|
value={ this.state.searchText }
|
|
placeholder={ __( 'Search for products to display' ) }
|
|
onChange={ this.updateSearchResults }
|
|
/>
|
|
<ProductSpecificSearchResults
|
|
searchString={ this.state.searchText }
|
|
addProductCallback={ this.props.addProductCallback }
|
|
selectedProducts={ this.props.selectedProducts }
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Render product search results based on the text entered into the textbox.
|
|
*/
|
|
const ProductSpecificSearchResults = withAPIData( ( props ) => {
|
|
|
|
if ( ! props.searchString.length ) {
|
|
return {
|
|
products: []
|
|
};
|
|
}
|
|
|
|
return {
|
|
products: '/wc/v2/products?per_page=10&search=' + props.searchString,
|
|
};
|
|
} )( ( { products, addProductCallback, selectedProducts } ) => {
|
|
if ( ! products.data ) {
|
|
return null;
|
|
}
|
|
|
|
if ( 0 === products.data.length ) {
|
|
return __( 'No products found' );
|
|
}
|
|
|
|
return <ProductSpecificSearchResultsDropdown
|
|
products={ products.data }
|
|
addProductCallback={ addProductCallback }
|
|
selectedProducts={ selectedProducts }
|
|
/>
|
|
}
|
|
);
|
|
|
|
/**
|
|
* The dropdown of search results.
|
|
*/
|
|
class ProductSpecificSearchResultsDropdown extends React.Component {
|
|
|
|
/**
|
|
* Render dropdown.
|
|
*/
|
|
render() {
|
|
const { products, addProductCallback, selectedProducts } = this.props;
|
|
|
|
let productElements = [];
|
|
|
|
for ( let product of products ) {
|
|
if ( selectedProducts.includes( product.id ) ) {
|
|
continue;
|
|
}
|
|
|
|
productElements.push(
|
|
<CSSTransition
|
|
key={ product.slug }
|
|
classNames="wc-products-list-card__content--transition"
|
|
timeout={ { exit: 700 } }
|
|
>
|
|
<ProductSpecificSearchResultsDropdownElement
|
|
product={product}
|
|
addProductCallback={ addProductCallback }
|
|
/>
|
|
</CSSTransition>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div role="menu" className="wc-products-list-card__search-results" aria-orientation="vertical" aria-label="{ __( 'Products list' ) }">
|
|
<TransitionGroup>
|
|
{ productElements }
|
|
</TransitionGroup>
|
|
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* One search result.
|
|
*/
|
|
class ProductSpecificSearchResultsDropdownElement extends React.Component {
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
constructor( props ) {
|
|
super( props );
|
|
|
|
this.state = {
|
|
clicked: false,
|
|
}
|
|
|
|
this.handleClick = this.handleClick.bind( this );
|
|
}
|
|
|
|
/**
|
|
* Add product to main list and change UI to show it was added.
|
|
*/
|
|
handleClick() {
|
|
this.setState( { clicked: true } );
|
|
this.props.addProductCallback( this.props.product.id );
|
|
}
|
|
|
|
/**
|
|
* Render one result in the search results.
|
|
*/
|
|
render() {
|
|
const product = this.props.product;
|
|
|
|
return (
|
|
<div className="wc-products-list-card__content">
|
|
<img src={ product.images[0].src } />
|
|
<span className="wc-products-list-card__content-item-name">{ this.state.clicked ? __( 'Added' ) : product.name }</span>
|
|
<button type="button"
|
|
className="button-link"
|
|
id={ 'product-' + product.id }
|
|
onClick={ this.handleClick } >
|
|
{ __( 'Add' ) }
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* List preview of selected products.
|
|
*/
|
|
const ProductSpecificSelectedProducts = withAPIData( ( props ) => {
|
|
|
|
if ( ! props.products.length ) {
|
|
return {
|
|
products: []
|
|
};
|
|
}
|
|
|
|
return {
|
|
products: '/wc/v2/products?include=' + props.products.join( ',' )
|
|
};
|
|
} )( ( { products, removeProductCallback } ) => {
|
|
if ( ! products.data ) {
|
|
return null;
|
|
}
|
|
|
|
if ( 0 === products.data.length ) {
|
|
return __( 'No products selected' );
|
|
}
|
|
|
|
return (
|
|
<div className="wc-products-list-card__results-wrapper">
|
|
<div role="menu" className="wc-products-list-card__results" aria-orientation="vertical" aria-label="{ __( 'Products list' ) }">
|
|
<ul>
|
|
{ products.data.map( ( product ) => (
|
|
<li className="wc-products-list-card__item">
|
|
<div className="wc-products-list-card__content">
|
|
<img src={ product.images[0].src } />
|
|
<span className="wc-products-list-card__content-item-name">{ product.name }</span>
|
|
<button
|
|
type="button"
|
|
id={ 'product-' + product.id }
|
|
onClick={ function() { removeProductCallback( product.id ) } } >
|
|
<Dashicon icon={ 'no-alt' } />
|
|
</button>
|
|
</div>
|
|
</li>
|
|
) ) }
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
);
|