Handle NULL values of models properties (= in ModelType).

This commit is contained in:
Madeorsk 2022-08-04 01:10:31 +02:00
parent a8de881cd5
commit f7a200ecc7
1 changed files with 6 additions and 6 deletions

View File

@ -20,28 +20,28 @@ export class ModelType<M extends Model> extends Type<any, M>
super(); super();
} }
serialize(value: M): any serialize(value: M|null): any
{ {
// Serializing the given model. // Serializing the given model.
return value.serialize(); return value ? value.serialize() : null;
} }
deserialize(value: any): M deserialize(value: any): M|null
{ {
// Deserializing the given object in the new model. // Deserializing the given object in the new model.
return (new this.modelConstructor()).deserialize(value); return value ? (new this.modelConstructor()).deserialize(value) : null;
} }
serializeDiff(value: M): any serializeDiff(value: M): any
{ {
// Serializing the given model. // Serializing the given model.
return value.serializeDiff(); return value ? value.serializeDiff() : null;
} }
resetDiff(value: M): void resetDiff(value: M): void
{ {
// Reset diff of the given model. // Reset diff of the given model.
value.resetDiff(); value?.resetDiff();
} }
} }