import { Injectable } from '@angular/core'; import { ModelConstructor, BaseModel } from '../../shared/models/base/base-model'; /** * Registeres the mapping of collection strings <--> actual types. Every Model should register itself here. */ @Injectable({ providedIn: 'root' }) export class CollectionStringModelMapperService { /** * Mapps collection strings to model constructors. Accessed by {@method registerCollectionElement} and * {@method getCollectionStringType}. */ private collectionStringsTypeMapping: { [collectionString: string]: ModelConstructor } = {}; /** * Constructor to create the NotifyService. Registers itself to the WebsocketService. * @param websocketService */ public constructor() {} /** * Registers the type to the collection string * @param collectionString * @param type */ public registerCollectionElement(collectionString: string, type: ModelConstructor): void { this.collectionStringsTypeMapping[collectionString] = type; } /** * Returns the constructor of the requested collection or undefined, if it is not registered. * @param collectionString the requested collection */ public getModelConstructor(collectionString: string): ModelConstructor { return this.collectionStringsTypeMapping[collectionString]; } /** * Returns the collection string of a given ModelConstructor or undefined, if it is not registered. * @param ctor */ public getCollectionString(ctor: ModelConstructor): string { return Object.keys(this.collectionStringsTypeMapping).find((collectionString: string) => { return ctor === this.collectionStringsTypeMapping[collectionString]; }); } }