@tree-house/serializer
Version:
Json de/serialization made for consistency
53 lines (52 loc) • 2.2 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Serializer = void 0;
const lodash_1 = require("lodash");
const errors = __importStar(require("./errors"));
const data_construction_util_1 = require("./utils/data-construction.util");
const meta_construction_util_1 = require("./utils/meta-construction.util");
const defaultConfig = {
attributes: [],
};
class Serializer {
constructor(resource, config, options = {}) {
if (!resource || (0, lodash_1.isNil)(resource)) {
throw new errors.UndefinedResourceError();
}
this.resource = resource;
this.options = options;
this.config = { ...defaultConfig, ...config };
}
async serialize(data, dataSetConfig = {}) {
const resource = this.options.skip ? 'unchanged' : this.resource;
const serializedData = this.options.skip ? data : await (0, data_construction_util_1.constructData)(data, this.config, this.options);
return {
meta: (0, meta_construction_util_1.constructMeta)(data, resource, dataSetConfig),
data: serializedData,
};
}
}
exports.Serializer = Serializer;