UNPKG

@sotatech/nest-taskflow

Version:

A task flow management library for NestJS with Redis Pub/Sub integration.

54 lines 2.53 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; var StrategyRegistry_1; Object.defineProperty(exports, "__esModule", { value: true }); exports.StrategyRegistry = void 0; const common_1 = require("@nestjs/common"); const core_1 = require("@nestjs/core"); let StrategyRegistry = StrategyRegistry_1 = class StrategyRegistry { constructor(moduleRef) { this.moduleRef = moduleRef; this.strategies = new Map(); } static registerStatic(method, strategyClass) { if (this.strategies.has(method)) { throw new Error(`Strategy for method "${method}" is already registered.`); } this.strategies.set(method, strategyClass); } get(method) { if (!this.strategies.has(method)) { const strategyClass = StrategyRegistry_1.strategies.get(method); if (!strategyClass) { throw new Error(`No strategy registered for method: "${method}".`); } const instance = this.moduleRef.get(strategyClass, { strict: false }); this.strategies.set(method, instance); } return this.strategies.get(method); } getAll() { StrategyRegistry_1.strategies.forEach((strategyClass, method) => { if (!this.strategies.has(method)) { const instance = this.moduleRef.get(strategyClass, { strict: false }); this.strategies.set(method, instance); } }); return this.strategies; } }; exports.StrategyRegistry = StrategyRegistry; StrategyRegistry.strategies = new Map(); exports.StrategyRegistry = StrategyRegistry = StrategyRegistry_1 = __decorate([ (0, common_1.Injectable)(), __metadata("design:paramtypes", [core_1.ModuleRef]) ], StrategyRegistry); //# sourceMappingURL=strategy.registry.js.map