import { inject, injectable } from 'inversify'; import { ServiceIdentifiers } from '../../container/ServiceIdentifiers'; import { IIdentifierNamesGenerator } from '../../interfaces/generators/identifier-names-generators/IIdentifierNamesGenerator'; import { IOptions } from '../../interfaces/options/IOptions'; import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator'; @injectable() export abstract class AbstractIdentifierNamesGenerator implements IIdentifierNamesGenerator { /** * @type {IOptions} */ protected readonly options: IOptions; /** * @type {IRandomGenerator} */ protected readonly randomGenerator: IRandomGenerator; /** * @param {IRandomGenerator} randomGenerator * @param {IOptions} options */ constructor ( @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { this.randomGenerator = randomGenerator; this.options = options; } /** * @returns {string} */ public abstract generate (): string; /** * @returns {string} */ public abstract generateWithPrefix (): string; /** * @param {string} name * @returns {boolean} */ public isValidIdentifierName (name: string): boolean { return this.options.reservedNames.length ? !this.options.reservedNames.some((reservedName: string) => new RegExp(reservedName, 'g').exec(name) !== null ) : true; } }