contentful-management
Version:
Client for Contentful's Content Management API
31 lines (30 loc) • 939 B
JavaScript
import copy from 'fast-copy';
import { freezeSys, toPlainObject } from 'contentful-sdk-core';
import enhanceWithMethods from '../enhance-with-methods';
import { wrapCollection } from '../common-utils';
/**
* @private
*/
function createSnapshotApi() {
return {
/* In case the snapshot object evolve later */
};
}
/**
* @private
* @param makeRequest - function to make requests via an adapter
* @param data - Raw snapshot data
* @return Wrapped snapshot data
*/
export function wrapSnapshot(_makeRequest, data) {
const snapshot = toPlainObject(copy(data));
const snapshotWithMethods = enhanceWithMethods(snapshot, createSnapshotApi());
return freezeSys(snapshotWithMethods);
}
/**
* @private
* @param makeRequest - function to make requests via an adapter
* @param data - Raw snapshot collection data
* @return Wrapped snapshot collection data
*/
export const wrapSnapshotCollection = wrapCollection(wrapSnapshot);