@golemio/pid
Version:
Golemio PID Module
41 lines • 2.56 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;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.JISInfotextOverviewTransformation = void 0;
const shared_1 = require("../../../shared");
const AbstractTransformation_1 = require("@golemio/core/dist/helpers/transformation/AbstractTransformation");
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
const DisplayTypeMapper_1 = require("../helpers/DisplayTypeMapper");
const PriorityMapper_1 = require("../helpers/PriorityMapper");
let JISInfotextOverviewTransformation = exports.JISInfotextOverviewTransformation = class JISInfotextOverviewTransformation extends AbstractTransformation_1.AbstractTransformation {
constructor() {
super(...arguments);
this.name = "JISInfotextOverviewTransformation";
this.transformInternal = (inputDto) => {
const stops = inputDto.stops ?? [];
return {
priority: PriorityMapper_1.PriorityMapper.mapInputToOutputPriority(inputDto.severity_level),
display_type: DisplayTypeMapper_1.DisplayTypeMapper.mapInputToOutputDisplayType(inputDto.display_type),
text: inputDto.description_text.cs,
text_en: inputDto.description_text.en ?? null,
related_stops: stops.map((stop) => ({
id: stop.stop_id,
name: stop.stop_name,
platform_code: stop.platform_code ?? null,
})),
valid_from: shared_1.RopidRouterUtils.formatTimestamp(inputDto.active_period_start) ?? inputDto.active_period_start.toISOString(),
valid_to: shared_1.RopidRouterUtils.formatTimestamp(inputDto.active_period_end),
id: inputDto.id,
};
};
}
};
exports.JISInfotextOverviewTransformation = JISInfotextOverviewTransformation = __decorate([
(0, tsyringe_1.injectable)()
], JISInfotextOverviewTransformation);
//# sourceMappingURL=JISInfotextOverviewTransformation.js.map