102 lines
2.5 KiB
JavaScript
102 lines
2.5 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { apiFetch, select } from '@wordpress/data-controls';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { ACTION_TYPES as types } from './action-types';
|
|
import { STORE_KEY as SCHEMA_STORE_KEY } from '../schema/constants';
|
|
|
|
let Headers = window.Headers || null;
|
|
Headers = Headers
|
|
? new Headers()
|
|
: { get: () => undefined, has: () => undefined };
|
|
|
|
/**
|
|
* Returns an action object used in updating the store with the provided items
|
|
* retrieved from a request using the given querystring.
|
|
*
|
|
* This is a generic response action.
|
|
*
|
|
* @param {string} namespace The namespace for the collection route.
|
|
* @param {string} resourceName The resource name for the collection route.
|
|
* @param {string} [queryString=''] The query string for the collection
|
|
* @param {array} [ids=[]] An array of ids (in correct order) for the
|
|
* model.
|
|
* @param {Object} [response={}] An object containing the response from the
|
|
* collection request.
|
|
* @param {Array<*>} response.items An array of items for the given collection.
|
|
* @param {Headers} response.headers A Headers object from the response
|
|
* @link https://developer.mozilla.org/en-US/docs/Web/API/Headers
|
|
* @param {bool} [replace=false] If true, signals to replace the current
|
|
* items in the state with the provided
|
|
* items.
|
|
* @return {
|
|
* {
|
|
* type: string,
|
|
* namespace: string,
|
|
* resourceName: string,
|
|
* queryString: string,
|
|
* ids: Array<*>,
|
|
* items: Array<*>,
|
|
* }
|
|
* } Object for action.
|
|
*/
|
|
export function receiveCollection(
|
|
namespace,
|
|
resourceName,
|
|
queryString = '',
|
|
ids = [],
|
|
response = { items: [], headers: Headers },
|
|
replace = false
|
|
) {
|
|
return {
|
|
type: replace ? types.RESET_COLLECTION : types.RECEIVE_COLLECTION,
|
|
namespace,
|
|
resourceName,
|
|
queryString,
|
|
ids,
|
|
response,
|
|
};
|
|
}
|
|
|
|
export function* __experimentalPersistItemToCollection(
|
|
namespace,
|
|
resourceName,
|
|
currentCollection,
|
|
data = {}
|
|
) {
|
|
const newCollection = [ ...currentCollection ];
|
|
const route = yield select(
|
|
SCHEMA_STORE_KEY,
|
|
'getRoute',
|
|
namespace,
|
|
resourceName
|
|
);
|
|
if ( ! route ) {
|
|
return;
|
|
}
|
|
const item = yield apiFetch( {
|
|
path: route,
|
|
method: 'POST',
|
|
data,
|
|
cache: 'no-store',
|
|
} );
|
|
if ( item ) {
|
|
newCollection.push( item );
|
|
yield receiveCollection(
|
|
namespace,
|
|
resourceName,
|
|
'',
|
|
[],
|
|
{
|
|
items: newCollection,
|
|
headers: Headers,
|
|
},
|
|
true
|
|
);
|
|
}
|
|
}
|