39f266d2de
Adds a repository to remove the logic in the motion domain object The repository will add a new model layer between the components and the domain objects implicitly add a new buttion into the motion detail view
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { Deserializable } from './deserializable.model';
|
|
|
|
/**
|
|
* Abstract base class for a basic implementation of Deserializable.
|
|
* The constructor also gives the possibility to give data that should be serialized.
|
|
*/
|
|
export abstract class Deserializer implements Deserializable {
|
|
/**
|
|
* Basic constructor with the possibility to give data to deserialize.
|
|
* @param input If data is given, {@method deserialize} will be called with that data
|
|
*/
|
|
protected constructor(input?: any) {
|
|
if (input) {
|
|
this.changeNullValuesToUndef(input);
|
|
this.deserialize(input);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* should be used to assign JSON values to the object itself.
|
|
* @param input
|
|
*/
|
|
public deserialize(input: any): void {
|
|
Object.assign(this, input);
|
|
}
|
|
|
|
/**
|
|
* Prevent to send literally "null" if should be send
|
|
* @param input object to deserialize
|
|
*/
|
|
public changeNullValuesToUndef(input: any): void {
|
|
Object.keys(input).forEach(key => {
|
|
if (input[key] === null) {
|
|
input[key] = undefined;
|
|
}
|
|
});
|
|
}
|
|
}
|