@golemio/pid
Version:
Golemio PID Module
47 lines • 3.29 kB
JavaScript
;
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 __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TripScopeHandlerFactory = void 0;
const OgModuleToken_1 = require("../../../ioc/OgModuleToken");
const DetailedTripScopeEnum_1 = require("../../../routers/v2/helpers/DetailedTripScopeEnum");
const golemio_errors_1 = require("@golemio/core/dist/shared/golemio-errors");
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
const AbstractDetailedTripScopeHandler_1 = require("./strategy/AbstractDetailedTripScopeHandler");
let TripScopeHandlerFactory = exports.TripScopeHandlerFactory = class TripScopeHandlerFactory {
constructor(infoTripScopeHandler, stopTimesTripScopeHandler, shapeTripScopeHandler, vehicleDescriptorTripScopeHandler) {
this.dictionary = new Map();
this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.Info, infoTripScopeHandler);
this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.StopTimes, stopTimesTripScopeHandler);
this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.Shapes, shapeTripScopeHandler);
this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.VehicleDescriptor, vehicleDescriptorTripScopeHandler);
}
getStrategy(scope) {
if (this.dictionary.has(scope)) {
return this.dictionary.get(scope);
}
throw new golemio_errors_1.GeneralError("Unknown detailed trip scope strategy", this.constructor.name, undefined, 500);
}
};
exports.TripScopeHandlerFactory = TripScopeHandlerFactory = __decorate([
(0, tsyringe_1.injectable)(),
__param(0, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.InfoTripScopeHandler)),
__param(1, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.StopTimesTripScopeHandler)),
__param(2, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.ShapesTripScopeHandler)),
__param(3, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.VehicleDescriptorTripScopeHandler)),
__metadata("design:paramtypes", [AbstractDetailedTripScopeHandler_1.AbstractDetailedTripScopeHandler,
AbstractDetailedTripScopeHandler_1.AbstractDetailedTripScopeHandler,
AbstractDetailedTripScopeHandler_1.AbstractDetailedTripScopeHandler,
AbstractDetailedTripScopeHandler_1.AbstractDetailedTripScopeHandler])
], TripScopeHandlerFactory);
//# sourceMappingURL=TripScopeHandlerFactory.js.map