2018-09-10 08:57:53 +02:00
|
|
|
import { ModelConstructor, BaseModel } from '../../shared/models/base.model';
|
2018-08-24 13:05:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Registeres the mapping of collection strings <--> actual types. Every Model should register itself here.
|
|
|
|
*/
|
|
|
|
export class CollectionStringModelMapperService {
|
|
|
|
/**
|
|
|
|
* Mapps collection strings to model constructors. Accessed by {@method registerCollectionElement} and
|
|
|
|
* {@method getCollectionStringType}.
|
|
|
|
*/
|
2018-09-10 08:57:53 +02:00
|
|
|
private static collectionStringsTypeMapping: { [collectionString: string]: ModelConstructor<BaseModel> } = {};
|
2018-08-24 13:05:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the type to the collection string
|
|
|
|
* @param collectionString
|
|
|
|
* @param type
|
|
|
|
*/
|
2018-09-07 13:12:59 +02:00
|
|
|
public static registerCollectionElement(collectionString: string, type: ModelConstructor<BaseModel>): void {
|
2018-08-24 13:05:03 +02:00
|
|
|
CollectionStringModelMapperService.collectionStringsTypeMapping[collectionString] = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the constructor of the requested collection or undefined, if it is not registered.
|
|
|
|
* @param collectionString the requested collection
|
|
|
|
*/
|
2018-09-10 08:57:53 +02:00
|
|
|
public static getModelConstructor(collectionString: string): ModelConstructor<BaseModel> {
|
2018-08-24 13:05:03 +02:00
|
|
|
return CollectionStringModelMapperService.collectionStringsTypeMapping[collectionString];
|
|
|
|
}
|
2018-08-29 13:21:25 +02:00
|
|
|
|
2018-08-31 14:50:38 +02:00
|
|
|
/**
|
|
|
|
* Returns the collection string of a given ModelConstructor or undefined, if it is not registered.
|
|
|
|
* @param ctor
|
|
|
|
*/
|
2018-09-10 08:57:53 +02:00
|
|
|
public static getCollectionString(ctor: ModelConstructor<BaseModel>): string {
|
2018-08-31 14:50:38 +02:00
|
|
|
return Object.keys(CollectionStringModelMapperService.collectionStringsTypeMapping).find(
|
|
|
|
(collectionString: string) => {
|
|
|
|
return ctor === CollectionStringModelMapperService.collectionStringsTypeMapping[collectionString];
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-29 13:21:25 +02:00
|
|
|
/**
|
|
|
|
* Constructor to create the NotifyService. Registers itself to the WebsocketService.
|
|
|
|
* @param websocketService
|
|
|
|
*/
|
|
|
|
public constructor() {}
|
2018-08-24 13:05:03 +02:00
|
|
|
}
|