@wordpress/core-data
Version:
Access to and manipulation of core WordPress entities.
64 lines (61 loc) • 1.91 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.receiveItems = receiveItems;
exports.receiveQueriedItems = receiveQueriedItems;
exports.removeItems = removeItems;
/**
* Returns an action object used in signalling that items have been received.
*
* @param {Array} items Items received.
* @param {?Object} edits Optional edits to reset.
* @param {?Object} meta Meta information about pagination.
*
* @return {Object} Action object.
*/
function receiveItems(items, edits, meta) {
return {
type: 'RECEIVE_ITEMS',
items: Array.isArray(items) ? items : [items],
persistedEdits: edits,
meta
};
}
/**
* Returns an action object used in signalling that entity records have been
* deleted and they need to be removed from entities state.
*
* @param {string} kind Kind of the removed entities.
* @param {string} name Name of the removed entities.
* @param {Array|number|string} records Record IDs of the removed entities.
* @param {boolean} invalidateCache Controls whether we want to invalidate the cache.
* @return {Object} Action object.
*/
function removeItems(kind, name, records, invalidateCache = false) {
return {
type: 'REMOVE_ITEMS',
itemIds: Array.isArray(records) ? records : [records],
kind,
name,
invalidateCache
};
}
/**
* Returns an action object used in signalling that queried data has been
* received.
*
* @param {Array} items Queried items received.
* @param {?Object} query Optional query object.
* @param {?Object} edits Optional edits to reset.
* @param {?Object} meta Meta information about pagination.
*
* @return {Object} Action object.
*/
function receiveQueriedItems(items, query = {}, edits, meta) {
return {
...receiveItems(items, edits, meta),
query
};
}
//# sourceMappingURL=actions.js.map
;