Typescript object mapper with first class typing support.
npm install ts-obj-mapper
or
yarn add ts-obj-mapper
To define the rules for mapping one object to another, we have a structure called Mapping.
The mapping is the definition of what actions and values should be assigned to the output object. We can see its schema here:
interface MappingValue<T extends object, O extends object> {
/**
* Fallback value. If the src path is invalid and no transform function is passed,
* the return value will be the default
*/
defaultValue: unknown;
/**
* Object path from the source object to be accessed
*/
srcPath?: Paths<T, MAX_OBJECT_DEPTH>;
/**
* Object path to be saved in the destiny object
*/
dstPath: Paths<O, MAX_OBJECT_DEPTH>;
/**
* Optional function to transform one or multiple values from source object
* to the destiny object
* @param getter Curried function to access safely any value from the source object
*/
transform?(getter: Getter<T, any>): any;
And an example of usage:
interface Input1 {
prop1: number;
prop2: number;
prop3: string;
}
interface Output1 {
prop10: number;
prop20: number;
prop30: string;
}
const mapping: Mapping<Input1, Output1> = [
{
srcPath: "prop1",
dstPath: "prop10",
defaultValue: "test",
},
{
srcPath: "prop2",
dstPath: "prop20",
defaultValue: "test2",
},
{
dstPath: "prop30",
defaultValue: "test3",
transform(getter) {
return getter('prop1', 'string') + "AppendTest";
},
},
];
For the transform function, the first argument will be a getter function that allows the retrieval of any value inside the input object, given the path of the key to be accessed.
It's possible to add types to the origin object and to the value accessed:
{
dstPath: "prop30",
defaultValue: "test3",
transform(getter: Getter<Input1, string>) {
return getter('prop1', 'string') + "AppendTest";
}
}
Once you have defined the Mapping rules, you can call the mapper function to execute the transformation
// Output will be typed as Output1
// Explicit typing
const output = mapper<Input1, Output1>(input, mapping);
// Implicit typing (works exactly the same)
const output = mapper(input, mapping);
Generated using TypeDoc