See usage and specs on github: https://github.com/NeverHappened/from-json
Before usage you must import 'reflect-metadata' package into your project. It's global, so you can add it in a separate script. For example, in polyfills.ts for Angular 2+.
import 'reflect-metadata';
Also you need to set "emitDecoratorMetadata": true
in your tsconfig.json to autodiscover feature and array detection to work
You can actually look at the specs to see the working examples (src/specs/*)
- Annotate your class propertis that you want to convert with @Property annotations
convertable-class.ts
import { Property } from '@nhpd/from-json';
class ConvertableClass {
@Property()
public convertableProperty: string;
}
- Than use the fromJson method to intantiate your class automatically
test.ts
import { fromJson, typeInfo } from '@nhpd/from-json';
import { ConvertableClass } from './convertable-class';
const raw = { convertableProperty: 'Test' };
const convertedClass = fromJson<ConvertableClass>(typeInfo(ConvertableClass), raw); // instance of ConvertableClass
console.log(convertedClass.convertableProperty === 'Test'); // true
convertable-class.ts
import { Property } from '@nhpd/from-json';
class DifferentClass {
@Property()
public prop: string;
}
class ConvertableClass {
@Property({ autodiscover: true })
public convertableProperty: DifferentClass;
}
Just specify
@Property()
convertable-class.ts
import { Property } from '@nhpd/from-json';
class DifferentClass {
@Property({})
public prop: string;
}
class ConvertableClass {
@Property({ autodiscover: true })
public convertableProperty: DifferentClass[];
}
They present a problem, cause we cannot infer the types of generic classes in annotations.
The workaround for that is to pass around additional (recursive) type info to fromJson method:
convertable-class.ts
import { Property } from '@nhpd/from-json';
class ConcretePropertyClass {
@Property()
public prop: string;
}
class GenericClass<T> {
@Property({ generic: true })
public convertableProperty: T;
}
test.ts
const raw = { convertableProperty: { prop: 'Test' } };
const info = typeInfo(GenericClass, { convertableProperty: typeInfo(ConcretePropertyClass) });
const converted = fromJson<GenericClass<ConcretePropertyClass>>(raw, info);
console.log(converted.convertableProperty.prop) === 'Test'; // true
class SimpleClass {
@Property({ createFunction: (isoString) => new Date(isoString) })
public convertableProperty: Date;
}
- You cannot use autodiscover if you have an array, because we cannot infer the generic constructor from the Array class. Use customClass.
- You should use autodiscover to automatically convert classes with @Property inside
- If you don't want to convert into the class (It's simple numbers/strings/interface), just don't use anything at all
- We don't need a customClass if using
{ generic: true }
, because it'll be taken from theTypeInfo
passed infromJson
function
Install dependencies
yarn
Run tests
yarn test
Increase version in package.json
Compile typescript
yarn run compile
Publish to npm
npm publish
Run tests
npm run test