Remove wc-api customers (https://github.com/woocommerce/woocommerce-admin/pull/1338)
This commit is contained in:
parent
836cccafb8
commit
5dcea1af6f
|
@ -1,11 +0,0 @@
|
|||
/** @format */
|
||||
/**
|
||||
* Internal dependencies
|
||||
*/
|
||||
import operations from './operations';
|
||||
import selectors from './selectors';
|
||||
|
||||
export default {
|
||||
operations,
|
||||
selectors,
|
||||
};
|
|
@ -1,47 +0,0 @@
|
|||
/** @format */
|
||||
/**
|
||||
* External dependencies
|
||||
*/
|
||||
import apiFetch from '@wordpress/api-fetch';
|
||||
|
||||
/**
|
||||
* WooCommerce dependencies
|
||||
*/
|
||||
import { stringifyQuery } from '@woocommerce/navigation';
|
||||
|
||||
/**
|
||||
* Internal dependencies
|
||||
*/
|
||||
import { isResourcePrefix, getResourceIdentifier, getResourceName } from '../utils';
|
||||
import { NAMESPACE } from '../constants';
|
||||
|
||||
function read( resourceNames, fetch = apiFetch ) {
|
||||
const filteredNames = resourceNames.filter( name => isResourcePrefix( name, 'customers-query' ) );
|
||||
|
||||
return filteredNames.map( async resourceName => {
|
||||
const query = getResourceIdentifier( resourceName );
|
||||
const url = `${ NAMESPACE }/customers${ stringifyQuery( query ) }`;
|
||||
|
||||
try {
|
||||
const customers = await fetch( { path: url } );
|
||||
const ids = customers.map( customer => customer.id );
|
||||
const customerResources = customers.reduce( ( resources, customer ) => {
|
||||
resources[ getResourceName( 'customer', customer.id ) ] = { data: customer };
|
||||
return resources;
|
||||
}, {} );
|
||||
|
||||
return {
|
||||
[ resourceName ]: {
|
||||
data: ids,
|
||||
},
|
||||
...customerResources,
|
||||
};
|
||||
} catch ( error ) {
|
||||
return { [ resourceName ]: { error } };
|
||||
}
|
||||
} );
|
||||
}
|
||||
|
||||
export default {
|
||||
read,
|
||||
};
|
|
@ -1,43 +0,0 @@
|
|||
/** @format */
|
||||
|
||||
/**
|
||||
* External dependencies
|
||||
*/
|
||||
import { isNil } from 'lodash';
|
||||
|
||||
/**
|
||||
* Internal dependencies
|
||||
*/
|
||||
import { getResourceName } from '../utils';
|
||||
import { DEFAULT_REQUIREMENT } from '../constants';
|
||||
|
||||
const getCustomers = ( getResource, requireResource ) => (
|
||||
query = {},
|
||||
requirement = DEFAULT_REQUIREMENT
|
||||
) => {
|
||||
const resourceName = getResourceName( 'customers-query', query );
|
||||
const ids = requireResource( requirement, resourceName ).data || [];
|
||||
return ids.map( id => getResource( getResourceName( 'customer', id ) ).data || {} );
|
||||
};
|
||||
|
||||
const getCustomersError = getResource => ( query = {} ) => {
|
||||
const resourceName = getResourceName( 'customers-query', query );
|
||||
return getResource( resourceName ).error;
|
||||
};
|
||||
|
||||
const isGetCustomersRequesting = getResource => ( query = {} ) => {
|
||||
const resourceName = getResourceName( 'customers-query', query );
|
||||
const { lastRequested, lastReceived } = getResource( resourceName );
|
||||
|
||||
if ( isNil( lastRequested ) || isNil( lastReceived ) ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return lastRequested > lastReceived;
|
||||
};
|
||||
|
||||
export default {
|
||||
getCustomers,
|
||||
getCustomersError,
|
||||
isGetCustomersRequesting,
|
||||
};
|
|
@ -4,7 +4,6 @@
|
|||
* Internal dependencies
|
||||
*/
|
||||
import categories from './categories';
|
||||
import customers from './customers';
|
||||
import notes from './notes';
|
||||
import orders from './orders';
|
||||
import reportItems from './reports/items';
|
||||
|
@ -19,7 +18,6 @@ function createWcApiSpec() {
|
|||
},
|
||||
selectors: {
|
||||
...categories.selectors,
|
||||
...customers.selectors,
|
||||
...notes.selectors,
|
||||
...orders.selectors,
|
||||
...reportItems.selectors,
|
||||
|
@ -31,7 +29,6 @@ function createWcApiSpec() {
|
|||
read( resourceNames ) {
|
||||
return [
|
||||
...categories.operations.read( resourceNames ),
|
||||
...customers.operations.read( resourceNames ),
|
||||
...notes.operations.read( resourceNames ),
|
||||
...orders.operations.read( resourceNames ),
|
||||
...reportItems.operations.read( resourceNames ),
|
||||
|
|
Loading…
Reference in New Issue