Transforms an object from one form into another form much like (the now removed) Hoek.transform, but allows methods as transformation values, which are called during transformation, and passed the original source object.
This allows for more useful transformations as shown in Usage.
- Adds validation as an option
- Defaults
undefined
values
Version 3.0.0 includes some major changes:
- We now require
await transform()
rather thantransform()
- We took
transform
and its associated tests fromhoek
and embedded it in the project, since it has been removed from their latest release. - Requires node 7 or above, For node < 6, use version < 3
Version < 2.1.0 does not use async/await
See Hoek.transform docs (linked above) for basic usage, see below for advanced usage.
Transformation from object to object
const { transform } = require('reorient')
const source = {
firstName: 'Antony',
lastName: 'Jones',
job: {
role: 'Developer'
}
}
const buildFullName = function (data) {
return data.firstName + ' ' + data.lastName
}
const transforms = {
'fullName': buildFullName,
'job.title': 'job.role'
}
const result = await transform(source, transforms)
// results in:
result === {
fullName: 'Antony Jones',
job: {
title: 'Developer'
}
}
Transformation from object to array
const { transform } = require('reorient')
const source = {
firstName: 'Antony',
lastName: 'Jones',
job: {
role: 'Developer'
}
}
const buildFullName = function (data) {
return data.firstName + ' ' + data.lastName
}
// to convert to an array, drop your 'destination' keys,
// and just pass an array of transformations
const transforms = [
buildFullName,
'job.role'
]
const result = await transform(source, transforms)
// results in:
result === [
'Antony Jones',
'Developer'
]
If you leave a mapping directive empty, it will simply map to null. This is probably more useful for arrays where you need a gap in an array, but it works on objects too, i.e. someKey: null
const { transform } = require('reorient')
const source = {
one: 'one',
two: 'not-supplied',
three: 'three'
}
const transforms = [
'one',
null,
'three'
]
const result = await transform(source, transforms)
// results in:
result === [
'one',
null,
'three'
]
reorient takes all the options hoek can take for Hoek.transform, and in addition, has a few extra options:
Trim trims all null, undefined, and void values (excluding false), as well as dropping empty objects.
It will do this for all values including nested values (deep)
const { transform } = require('reorient')
const source = {
firstName: 'Antony',
lastName: null,
job: {
role: undefined
}
}
const transforms = {
'firstName': 'firstName',
'job.role': 'job.role'
}
const result = await transform(source, transforms, { trim: true })
// results in:
result === {
firstName: 'Antony'
}
Defaulting of properties can be done on a per property basis by specifying a configuration object than simply a path.
Defaults cannot be specified when using a function as a transform, you should do the defaulting in your function.
const { transform } = require('reorient')
const source = {
firstName: 'Antony',
contract: {
start: Date.now()
}
}
const defaultEndDate = new Date()
defaultEndDate.setMonth(defaultEndDate.getMonth() + 3)
const transforms = {
'firstName': 'firstName',
'employment.startDate': 'contract.start',
'employment.endDate': { path: 'contract.endDate', default: defaultEndDate }
}
const details = await transform(source, transforms)
// results in:
details === {
firstName: 'Antony',
employment: {
startDate: 'Fri Aug 03 2017 22:23:10 GMT+0100 (BST)',
endDate: 'Sat Nov 03 2017 22:23:23 GMT+0000 (GMT)'
}
}
Properties can be passed a validator function, which is passed the value of the transformation, and the original source object
The validator function must return the field value if the field is valid, or throw an error with a validation message.
The example below uses Joi
const { transform } = require('reorient')
const Joi = require('@hapi/joi')
async function validateNationalInsurance (value, source) {
const schema = Joi.string().pattern(/^[A-Z]{2}[0-9]{6}[A-Z]$/)
return schema.validateAsync(nationalInsurance)
}
const source = {
firstName: 'Antony',
nationalInsurance: 'AA332211B'
}
const transforms = {
'firstName': 'firstName',
'employment.endDate': { path: 'nationalInsurance', validate: validateNationalInsurance }
}
const details = await transform(source, transforms)