UNPKG

@golemio/parkings

Version:
42 lines 2.35 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); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.IptOictOpeningHoursTransformation = void 0; const AbstractTransformation_1 = require("@golemio/core/dist/helpers/transformation/AbstractTransformation"); const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe"); let IptOictOpeningHoursTransformation = exports.IptOictOpeningHoursTransformation = class IptOictOpeningHoursTransformation extends AbstractTransformation_1.AbstractTransformation { constructor(source) { super(); this.source = source; this.name = "IsphkOpeningHoursTransformation"; this.transformInternal = (element) => { const result = []; if (element.properties.opening_hours) { for (const openingHour of element.properties.opening_hours) { const transformed = { parking_id: `${this.source}-${element.properties.source_id}`, source: this.source, valid_from: openingHour.valid_from, valid_to: openingHour.valid_to, periods_of_time: openingHour.periods_of_time, }; result.push(transformed); } } return result; }; } }; exports.IptOictOpeningHoursTransformation = IptOictOpeningHoursTransformation = __decorate([ (0, tsyringe_1.injectable)(), __metadata("design:paramtypes", [String]) ], IptOictOpeningHoursTransformation); //# sourceMappingURL=IptOictOpeningHoursTransformation.js.map