PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
woocommerce
/
packages
/
woocommerce-blocks
/
assets
/
js
/
hocs
/** * External dependencies */ import { Component } from '@wordpress/element'; import { createHigherOrderComponent } from '@wordpress/compose'; import { getCategories } from '@woocommerce/block-components/utils'; /** * Internal dependencies */ import { formatError } from '../base/utils/errors.js'; const withCategories = createHigherOrderComponent( ( OriginalComponent ) => { return class WrappedComponent extends Component { constructor() { super( ...arguments ); this.state = { error: null, loading: false, categories: null, }; this.loadCategories = this.loadCategories.bind( this ); } componentDidMount() { this.loadCategories(); } loadCategories() { this.setState( { loading: true } ); getCategories( { show_review_count: this.props.showReviewCount || false, } ) .then( ( categories ) => { this.setState( { categories, loading: false, error: null, } ); } ) .catch( async ( e ) => { const error = await formatError( e ); this.setState( { categories: null, loading: false, error, } ); } ); } render() { const { error, loading, categories } = this.state; return ( <OriginalComponent { ...this.props } error={ error } isLoading={ loading } categories={ categories } /> ); } }; }, 'withCategories' ); export default withCategories;
[+]
..
[-] with-categories.js
[edit]
[-] with-transform-single-select-to-multiple-select.js
[edit]
[+]
test
[-] with-searched-products.js
[edit]
[-] index.js
[edit]
[-] with-rest-api-hydration.js
[edit]
[-] with-product.js
[edit]
[-] with-attributes.js
[edit]
[-] with-product-variations.js
[edit]
[-] with-category.js
[edit]