{ "version": 3, "sources": ["../javascripts/utils/vehicle-properties/custom-property-adder.ts", "../javascripts/utils/vehicle-properties/property-adjust.ts", "../javascripts/utils/vehicle-properties/property-hint-enricher.ts", "../javascripts/utils/vehicle-properties/property-remover.ts", "../javascripts/utils/vehicle-properties/property-tree-creator.ts", "../javascripts/utils/vehicle-properties/compare-properties.ts", "../javascripts/utils/vehicle-properties/compare-basic-properties.ts", "../javascripts/utils/vehicle-properties/compare-categories.ts", "../javascripts/utils/vehicle-properties/property-tree-sorter.ts"], "sourcesContent": ["import i18next from 'i18next';\nimport cloneDeep from 'lodash.clonedeep';\nimport type { Category, EnhancedProperty } from '../../@types/item';\nimport { numberSeparator } from '../../helpers/formats';\nimport { getMarket } from '../../i18n';\nimport { getConvertedMileageValue } from '../market';\n\nexport const TEXT_TYPE = 'text';\nexport const NUMBER_TYPE = 'number';\nexport const BASIC_CATEGORY = Object.freeze({\n id: 1000,\n name: i18next.t('Basic information', { ns: 'item' }),\n subCategory: null,\n});\nexport const ENGINE_SUBCATEGORY = Object.freeze({\n id: 6,\n name: i18next.t('Engine & Performance', { ns: 'item' }),\n subCategory: {\n id: 54,\n name: i18next.t('Engine', { ns: 'item' }),\n subCategory: null,\n },\n});\n\nclass PropertyBuilder {\n name = '';\n value: any = '';\n type = 'unknown';\n unit: string | null = null;\n hint: string | null = null;\n category: Category | null = null;\n\n withName(name: string) {\n this.name = name;\n return this;\n }\n\n withValue(value: any) {\n this.value = value;\n return this;\n }\n\n withType(type: string) {\n this.type = type;\n return this;\n }\n\n withCategory(category: Category) {\n this.category = category;\n return this;\n }\n\n withUnit(unit: string) {\n this.unit = unit;\n return this;\n }\n\n build(): EnhancedProperty {\n return {\n name: this.name,\n value: this.value,\n type: this.type,\n unit: this.unit,\n hint: this.hint,\n category: this.category,\n };\n }\n}\n\nexport default (item: any, properties: { [key: string]: EnhancedProperty }) => {\n const newProperties = cloneDeep(properties);\n\n if (!!item.manufacturer) {\n newProperties.manufacturer = new PropertyBuilder()\n .withName(i18next.t('manufacturer', { ns: 'glossary' }))\n .withValue(item.manufacturer)\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.modelSeries) {\n newProperties.modelSeries = new PropertyBuilder()\n .withName(i18next.t('model', { ns: 'glossary' }))\n .withValue(item.modelSeries)\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.modelName) {\n newProperties.modelName = new PropertyBuilder()\n .withName(i18next.t('version', { ns: 'glossary' }))\n .withValue(item.modelName)\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.modelYear) {\n newProperties.modelYear = new PropertyBuilder()\n .withName(i18next.t('modelYear', { ns: 'glossary' }))\n .withValue(item.modelYear)\n .withType(NUMBER_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.manufactureYear) {\n newProperties.manufactureYear = new PropertyBuilder()\n .withName(i18next.t('manufactureYear', { ns: 'glossary' }))\n .withValue(item.manufactureYear)\n .withType(NUMBER_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.mileage) {\n const market = getMarket().marketCode;\n const mileageValue = item.odometerReading\n ? item.odometerReading.value\n : getConvertedMileageValue(item.mileage);\n let calculatedMilageValue = mileageValue;\n const milageUnit = item.odometerReading ? item.odometerReading.unit : 'km';\n\n if (market === 'NO' && milageUnit === 'mil') {\n calculatedMilageValue = mileageValue * 10;\n } else if (market === 'SE' && milageUnit === 'km') {\n calculatedMilageValue = mileageValue / 10;\n }\n\n newProperties.mileage = new PropertyBuilder()\n .withName(i18next.t('odometer', { ns: 'glossary' }))\n .withValue(numberSeparator(calculatedMilageValue))\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .withUnit(\n i18next\n .t('mileageUnit', {\n ns: 'glossary',\n count: calculatedMilageValue,\n })\n .toLowerCase(),\n )\n .build();\n }\n\n if (!!item.gearboxType) {\n newProperties.gearboxType = new PropertyBuilder()\n .withName(i18next.t('gearbox', { ns: 'glossary' }))\n .withValue(item.gearboxType)\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.registrationNumber) {\n newProperties.registrationNumber = new PropertyBuilder()\n .withName(i18next.t('registrationNumber', { ns: 'glossary' }))\n .withValue(item.registrationNumber)\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.vinNumber) {\n newProperties.vinNumber = new PropertyBuilder()\n .withName(i18next.t('vin', { ns: 'glossary' }))\n .withValue(item.vinNumber)\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (item.enginePower) {\n newProperties.enginePower = new PropertyBuilder()\n .withName(i18next.t('enginePower', { ns: 'glossary' }))\n .withValue(item.enginePower)\n .withUnit(i18next.t('enginePowerUnit', { ns: 'glossary' }))\n .withType(NUMBER_TYPE)\n .withCategory(ENGINE_SUBCATEGORY)\n .build();\n }\n\n if (item?.properties?.numberOfDoors) {\n newProperties.numberOfDoors = new PropertyBuilder()\n .withName(i18next.t('numberOfDoors', { ns: 'glossary' }))\n .withValue(item.properties.numberOfDoors)\n .withType(NUMBER_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.fuelTypes?.length) {\n newProperties.fuelTypes = new PropertyBuilder()\n .withName(i18next.t('fuelTypes', { ns: 'glossary' }))\n .withValue(\n Array.isArray(item.fuelTypes)\n ? (item?.fuelTypes as { name: string }[])?.map((x) => x.name)?.join(', ')\n : item.fuelTypes,\n )\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n if (!!item.engineBaseType) {\n newProperties.engineBaseType = new PropertyBuilder()\n .withName(i18next.t('engineBaseType', { ns: 'glossary' }))\n .withValue(item.engineBaseType)\n .withType(TEXT_TYPE)\n .withCategory(BASIC_CATEGORY)\n .build();\n }\n\n return newProperties;\n};\n", "import type { EnhancedProperty } from '../../@types/item';\n\nexport default (properties: { [key: string]: EnhancedProperty }) => {\n const adjustedProperties = { ...properties };\n\n if (properties?.drivingWheel) {\n adjustedProperties.drivingWheel = {\n ...properties.drivingWheel,\n category: {\n ...properties.drivingWheel.category,\n id: 1000,\n name: 'Basuppgifter',\n subCategory: null,\n },\n };\n }\n\n return adjustedProperties;\n};\n", "import i18next from 'i18next';\nimport cloneDeep from 'lodash.clonedeep';\nimport type { EnhancedProperty } from '../../@types/item';\n\nexport const HINTS = () =>\n Object.freeze<{ [key: string]: string }>({\n abs: i18next.t('hint.abs', { ns: 'vehicleProperties' }),\n acceleration: i18next.t('hint.acceleration', { ns: 'vehicleProperties' }),\n adultOccupantNCAP: i18next.t('hint.adultOccupantNCAP', { ns: 'vehicleProperties' }),\n aeb: i18next.t('hint.aeb', { ns: 'vehicleProperties' }),\n airbagCutOffSwitch: i18next.t('hint.airbagCutOffSwitch', { ns: 'vehicleProperties' }),\n airbagDriver: i18next.t('hint.airbagDriver', { ns: 'vehicleProperties' }),\n airbagFrontal: '',\n airbagFrontalHead: '',\n airbagKnees: '',\n airbagPassenger: i18next.t('hint.airbagPassenger', { ns: 'vehicleProperties' }),\n airbagSideChest: '',\n airbagSidePelvis: '',\n alcolock: i18next.t('hint.alcolock', { ns: 'vehicleProperties' }),\n androidAuto: i18next.t('hint.androidAuto', { ns: 'vehicleProperties' }),\n annualBonus: i18next.t('hint.annualBonus', { ns: 'vehicleProperties' }),\n annualMalus: i18next.t('hint.annualMalus', { ns: 'vehicleProperties' }),\n annualTax: i18next.t('hint.annualTax', { ns: 'vehicleProperties' }),\n antiTheftAlarm: i18next.t('hint.antiTheftAlarm', { ns: 'vehicleProperties' }),\n appConnect: i18next.t('hint.appConnect', { ns: 'vehicleProperties' }),\n appleCarPlay: i18next.t('hint.appleCarPlay', { ns: 'vehicleProperties' }),\n aux: i18next.t('hint.aux', { ns: 'vehicleProperties' }),\n auxiliaryLamps: '',\n batteryCapacity: i18next.t('hint.batteryCapacity', { ns: 'vehicleProperties' }),\n batteryWarrantyDistance: '',\n batteryWarrantyTime: '',\n blindSpotWarner: i18next.t('hint.blindSpotWarner', { ns: 'vehicleProperties' }),\n bluetooth: i18next.t('hint.bluetooth', { ns: 'vehicleProperties' }),\n bluetoothAudio: i18next.t('hint.bluetoothAudio', { ns: 'vehicleProperties' }),\n bluetoothPhone: i18next.t('hint.bluetoothPhone', { ns: 'vehicleProperties' }),\n brakeAssistance: i18next.t('hint.brakeAssistance', { ns: 'vehicleProperties' }),\n carDamageWarrantyDistance: '',\n carDamageWarrantyTime: '',\n centerDisplay: i18next.t('hint.centerDisplay', { ns: 'vehicleProperties' }),\n centralLocking: i18next.t('hint.centralLocking', { ns: 'vehicleProperties' }),\n chargeTimeNormal: i18next.t('hint.chargeTimeNormal', { ns: 'vehicleProperties' }),\n chargeTimeQuick: i18next.t('hint.chargeTimeQuick', { ns: 'vehicleProperties' }),\n chassis: i18next.t('hint.chassis', { ns: 'vehicleProperties' }),\n childOccupantNCAP: i18next.t('hint.childOccupantNCAP', { ns: 'vehicleProperties' }),\n childSafetyLocks: i18next.t('hint.childSafetyLocks', { ns: 'vehicleProperties' }),\n childSeatBeltPassenger: i18next.t('hint.childSeatBeltPassenger', { ns: 'vehicleProperties' }),\n childSeatBeltRear: i18next.t('hint.childSeatBeltRear', { ns: 'vehicleProperties' }),\n co2: i18next.t('hint.co2', { ns: 'vehicleProperties' }),\n colorName: '',\n combinedEmissionsWLTP: i18next.t('hint.combinedEmissionsWLTP', { ns: 'vehicleProperties' }),\n cruiseControl: i18next.t('hint.cruiseControl', { ns: 'vehicleProperties' }),\n curtainAirbags: '',\n displacementCC: i18next.t('hint.displacementCC', { ns: 'vehicleProperties' }),\n displacementLitres: i18next.t('hint.displacementLitres', { ns: 'vehicleProperties' }),\n driverAlertnessDetection: i18next.t('hint.driverAlertnessDetection', {\n ns: 'vehicleProperties',\n }),\n drivingWheel: i18next.t('hint.drivingWheel', { ns: 'vehicleProperties' }),\n electricalEngine: '',\n electricalRange: i18next.t('hint.electricalRange', { ns: 'vehicleProperties' }),\n electricalRangeEPA: i18next.t('hint.electricalRangeEPA', { ns: 'vehicleProperties' }),\n electricalRangeNEDC: i18next.t('hint.electricalRangeNEDC', { ns: 'vehicleProperties' }),\n electricalRangeWLTP: i18next.t('hint.electricalRangeWLTP', { ns: 'vehicleProperties' }),\n electricalSeatDriver: i18next.t('hint.electricalSeatDriver', { ns: 'vehicleProperties' }),\n electricalSeatPassenger: i18next.t('hint.electricalSeatPassenger', { ns: 'vehicleProperties' }),\n emergencyCalling: i18next.t('hint.emergencyCalling', { ns: 'vehicleProperties' }),\n engineConfiguration: i18next.t('hint.engineConfiguration', { ns: 'vehicleProperties' }),\n engineCylinders: i18next.t('hint.engineCylinders', { ns: 'vehicleProperties' }),\n engineName: '',\n engineVolume: '',\n enrichmentProviderEquipPackages: '',\n enrichmentProviderExteriorPackages: '',\n enrichmentProviderInteriorPackages: '',\n enrichmentProviderTrimPackages: '',\n environmentClass: i18next.t('hint.environmentClass', { ns: 'vehicleProperties' }),\n finish: '',\n fuelConsumptionMixedDrivingNEDC: i18next.t('hint.fuelConsumptionMixedDrivingNEDC', {\n ns: 'vehicleProperties',\n }),\n fuelConsumptionMixedDrivingWLTP: i18next.t('hint.fuelConsumptionMixedDrivingWLTP', {\n ns: 'vehicleProperties',\n }),\n fuelConsumptionCityDriving: i18next.t('hint.fuelConsumptionCityDriving', {\n ns: 'vehicleProperties',\n }),\n fuelConsumptionCountryRoadDriving: i18next.t('hint.fuelConsumptionCountryRoadDriving', {\n ns: 'vehicleProperties',\n }),\n fuelConsumptionMixedDriving: i18next.t('hint.fuelConsumptionMixedDriving', {\n ns: 'vehicleProperties',\n }),\n fuelTypes: i18next.t('hint.fuelType', { ns: 'vehicleProperties' }),\n gearboxName: '',\n gestureControls: i18next.t('hint.gestureControls', { ns: 'vehicleProperties' }),\n gps: i18next.t('hint.gps', { ns: 'vehicleProperties' }),\n grossWeight: i18next.t('hint.grossWeight', { ns: 'vehicleProperties' }),\n groundClearence: i18next.t('hint.groundClearence', { ns: 'vehicleProperties' }),\n hasAutomaticGearbox: '',\n hdmi: i18next.t('hint.hdmi', { ns: 'vehicleProperties' }),\n headRoomFront: i18next.t('hint.headRoomFront', { ns: 'vehicleProperties' }),\n headRoomRear: i18next.t('hint.headRoomRear', { ns: 'vehicleProperties' }),\n headUpDisplay: i18next.t('hint.headUpDisplay', { ns: 'vehicleProperties' }),\n heatedSteeringWheel: '',\n height: i18next.t('hint.height', { ns: 'vehicleProperties' }),\n hybridComponentsWarrantyDistance: '',\n hybridComponentsWarrantyTime: '',\n interiorMaterial: i18next.t('hint.interiorMaterial', { ns: 'vehicleProperties' }),\n isofixRearSeat: i18next.t('hint.isofixRearSeat', { ns: 'vehicleProperties' }),\n keylessEntry: i18next.t('hint.keylessEntry', { ns: 'vehicleProperties' }),\n keylessStart: i18next.t('hint.keylessStart', { ns: 'vehicleProperties' }),\n laneAssistance: i18next.t('hint.laneAssistance', { ns: 'vehicleProperties' }),\n legRoomFront: i18next.t('hint.legRoomFront', { ns: 'vehicleProperties' }),\n legRoomRear: i18next.t('hint.legRoomRear', { ns: 'vehicleProperties' }),\n length: i18next.t('hint.length', { ns: 'vehicleProperties' }),\n lowBeam: '',\n mainBeam: '',\n mainBeamAssistance: i18next.t('hint.mainBeamAssistance', { ns: 'vehicleProperties' }),\n manufactureYear: i18next.t('hint.manufactureYear', { ns: 'vehicleProperties' }),\n massage: i18next.t('hint.massage', { ns: 'vehicleProperties' }),\n maxLoadWeight: '',\n maxRoofWeight: i18next.t('hint.maxRoofWeight', { ns: 'vehicleProperties' }),\n maxSpeed: i18next.t('hint.maxSpeed', { ns: 'vehicleProperties' }),\n maxTrailerLoadBraked8Percent: '',\n maxTrailerLoadUnbraked: i18next.t('hint.maxTrailerLoadUnbraked', { ns: 'vehicleProperties' }),\n mildHybrid: i18next.t('hint.mildHybrid', { ns: 'vehicleProperties' }),\n mileage: i18next.t('hint.mileage', { ns: 'vehicleProperties' }),\n modelName: i18next.t('hint.modelName', { ns: 'vehicleProperties' }),\n modelYear: i18next.t('hint.modelYear', { ns: 'vehicleProperties' }),\n ncapStar: i18next.t('hint.ncapStar', { ns: 'vehicleProperties' }),\n ncapYear: i18next.t('hint.ncapYear', { ns: 'vehicleProperties' }),\n newVehicleWarrantyDistance: '',\n newVehicleWarrantyTime: '',\n noiseReducingWindows: i18next.t('hint.noiseReducingWindows', { ns: 'vehicleProperties' }),\n numberOfGears: i18next.t('hint.numberOfGears', { ns: 'vehicleProperties' }),\n numberOfSpeakers: i18next.t('hint.numberOfSpeakers', { ns: 'vehicleProperties' }),\n numberOfUSBPorts: '',\n otherAirbags: '',\n parkingAssistance: i18next.t('hint.parkingAssistance', { ns: 'vehicleProperties' }),\n parkingSensorsFront: i18next.t('hint.parkingSensorsFront', { ns: 'vehicleProperties' }),\n parkingSensorsRear: i18next.t('hint.parkingSensorsRear', { ns: 'vehicleProperties' }),\n pedestrianNCAP: i18next.t('hint.pedestrianNCAP', { ns: 'vehicleProperties' }),\n preHeater: i18next.t('hint.preHeater', { ns: 'vehicleProperties' }),\n rainSensors: i18next.t('hint.rainSensors', { ns: 'vehicleProperties' }),\n remoteStart: i18next.t('hint.remoteStart', { ns: 'vehicleProperties' }),\n rimSize: i18next.t('hint.rimSize', { ns: 'vehicleProperties' }),\n roofColor: i18next.t('hint.roofColor', { ns: 'vehicleProperties' }),\n roofRailing: i18next.t('hint.roofRailing', { ns: 'vehicleProperties' }),\n safetyAssistNCAP: i18next.t('hint.safetyAssistNCAP', { ns: 'vehicleProperties' }),\n seats: i18next.t('hint.seats', { ns: 'vehicleProperties' }),\n segment: i18next.t('hint.segment', { ns: 'vehicleProperties' }),\n serviceWeight: i18next.t('hint.serviceWeight', { ns: 'vehicleProperties' }),\n shoulderRoomFront: i18next.t('hint.shoulderRoomFront', { ns: 'vehicleProperties' }),\n shoulderRoomRear: i18next.t('hint.shoulderRoomRear', { ns: 'vehicleProperties' }),\n sideMirrorFolding: i18next.t('hint.sideMirrorFolding', { ns: 'vehicleProperties' }),\n speakerBrand: '',\n startAndStop: i18next.t('hint.startAndStop', { ns: 'vehicleProperties' }),\n steeringWheelMaterial: '',\n sunRoof: '',\n tankVolume: i18next.t('hint.tankVolume', { ns: 'vehicleProperties' }),\n timingBeltServiceIntervalDistance: i18next.t('hint.timingBeltServiceIntervalDistance', {\n ns: 'vehicleProperties',\n }),\n timingBeltServiceIntervalTime: i18next.t('hint.timingBeltServiceIntervalTime', {\n ns: 'vehicleProperties',\n }),\n tintedWindows: i18next.t('hint.tintedWindows', { ns: 'vehicleProperties' }),\n tiresFront: i18next.t('hint.tiresFront', { ns: 'vehicleProperties' }),\n tiresRear: i18next.t('hint.tiresRear', { ns: 'vehicleProperties' }),\n torque: i18next.t('hint.torque', { ns: 'vehicleProperties' }),\n touchScreen: i18next.t('hint.touchScreen', { ns: 'vehicleProperties' }),\n towHitch: '',\n towHitchDetachable: '',\n towHitchFoldable: '',\n trafficSignRecognition: i18next.t('hint.trafficSignRecognition', { ns: 'vehicleProperties' }),\n trailerTotalWeight: i18next.t('hint.trailerTotalWeight', { ns: 'vehicleProperties' }),\n transmissionKnobMaterial: '',\n trcSystem: i18next.t('hint.trcSystem', { ns: 'vehicleProperties' }),\n tripComputer: i18next.t('hint.tripComputer', { ns: 'vehicleProperties' }),\n trunkDepth: '',\n trunkHeight: '',\n trunkOutlet: '',\n trunkSpace: i18next.t('hint.trunkSpace', { ns: 'vehicleProperties' }),\n trunkSpaceFront: '',\n trunkWidth: '',\n typeOfElectricCar: i18next.t('hint.typeOfElectricCar', { ns: 'vehicleProperties' }),\n upholstery: '',\n usb: i18next.t('hint.usb', { ns: 'vehicleProperties' }),\n ventilatedSeats: i18next.t('hint.ventilatedSeats', { ns: 'vehicleProperties' }),\n wheelBase: i18next.t('hint.wheelBase', { ns: 'vehicleProperties' }),\n wiFi: i18next.t('hint.wiFi', { ns: 'vehicleProperties' }),\n width: i18next.t('hint.width', { ns: 'vehicleProperties' }),\n windowLifts: '',\n wirelessPhoneCharger: i18next.t('hint.wirelessPhoneCharger', { ns: 'vehicleProperties' }),\n });\n\nconst enrichWithHint = (properties: { [key: string]: EnhancedProperty }) => {\n const clone = cloneDeep(properties);\n\n const hints = HINTS();\n\n const keys = Object.keys(clone);\n keys.forEach((key) => {\n if (hints[key]) {\n clone[key].hint = hints[key];\n }\n });\n\n return clone;\n};\n\nexport default enrichWithHint;\n", "import cloneDeep from 'lodash.clonedeep';\nimport type { EnhancedProperty } from '../../@types/item';\nimport { getMarket } from '../../i18n';\n\nconst PROPERTY_BLACK_LIST = Object.freeze([\n 'towHitchFoldable',\n 'trailerTotalWeightB',\n 'gps',\n 'androidAuto',\n 'appleCarPlay',\n 'tintedWindows',\n 'maxTrailerLoadUnbraked',\n]);\n\nconst isForbiddenProperty = (key: string) => PROPERTY_BLACK_LIST.includes(key);\n\nconst MOLLER_BIL_FORBIDDEN_PROPERTIES = [\n 'maxLoadWeight',\n 'maxRoofWeight',\n 'serviceWeight',\n 'electricalRangeWLTP',\n];\nconst NO_FORBIDDEN_PROPERTIES = ['trailerTotalWeight'];\n\nconst isForbiddenMollerBilProperty = (key: string) => MOLLER_BIL_FORBIDDEN_PROPERTIES.includes(key);\nconst isForbiddenNoProperty = (key: string) => NO_FORBIDDEN_PROPERTIES.includes(key);\n\nconst CATEGORY_WHITE_LIST = Object.freeze([1, 2, 6, 8, 71, 119, 117, 1000]);\n\nconst hasForbiddenCategory = (property: EnhancedProperty) =>\n !property.category ||\n !property.category.id ||\n !CATEGORY_WHITE_LIST.includes(property.category.id);\n\nexport default (properties: { [key: string]: EnhancedProperty }, isMollerBil?: boolean) => {\n const newProperties = cloneDeep(properties);\n const market = getMarket().marketCode;\n\n Object.keys(properties).forEach((key) => {\n const property = properties[key];\n\n if (hasForbiddenCategory(property)) {\n delete newProperties[key];\n } else if (isForbiddenProperty(key)) {\n delete newProperties[key];\n } else if (isMollerBil && isForbiddenMollerBilProperty(key)) {\n delete newProperties[key];\n } else if (market === 'NO' && isForbiddenNoProperty(key)) {\n delete newProperties[key];\n }\n });\n\n return newProperties;\n};\n", "import type { Category, EnhancedProperty } from '../../@types/item';\nimport type { Tree, Category as TreeCategory } from '../../@types/vehicle-properties';\n\nclass PropertyTreeCreator {\n private properties: { [key: string]: EnhancedProperty };\n\n constructor(properties: { [key: string]: EnhancedProperty }) {\n this.properties = properties;\n }\n\n create(): Tree {\n const categories = this.createTreeCategories();\n const rootProperties = this.getRootProperties();\n if (rootProperties.length) {\n categories.push({\n name: PropertyTreeCreator.DEFAULT_CATEGORY_NAME,\n id: PropertyTreeCreator.DEFAULT_CATEGORY_ID,\n subCategories: [],\n properties: rootProperties,\n });\n }\n\n const tree = {\n categories,\n };\n\n return tree;\n }\n\n private getRootProperties() {\n const rootProperties = Object.keys(this.properties)\n .filter(this.propertiesWithoutCategory)\n .map((key) => ({ ...this.properties[key], key }))\n .filter(this.isNonList);\n return rootProperties;\n }\n\n private propertiesWithCategory = (propertyKey: string) =>\n !!this.properties[propertyKey].category?.id;\n\n private propertiesWithoutCategory = (propertyKey: string) =>\n !this.propertiesWithCategory(propertyKey);\n\n private isList = (property: EnhancedProperty) =>\n property.type === PropertyTreeCreator.TEXT_LIST_TYPE;\n\n private isNonList = (property: EnhancedProperty) => !this.isList(property);\n\n private createTreeCategories() {\n const categories = this.getCategories();\n const treeCategories = this.convertToTreeCategories(categories);\n return treeCategories;\n }\n\n private getCategories() {\n const categories = Object.keys(this.properties)\n .filter(this.propertiesWithCategory)\n .map((key) => this.properties[key].category as Category)\n .filter(PropertyTreeCreator.distinctCategories);\n return categories;\n }\n\n private convertToTreeCategories(categories: Category[]) {\n return categories.map((category) => {\n const properties = Object.keys(this.properties)\n .filter((key) => this.hasCategoryWithId(key, category.id))\n .filter(this.propertiesWithoutSubCategory)\n .map((key) => ({ ...this.properties[key], key }))\n .filter(this.isNonList);\n const subCategories = this.createTreeSubCategories(category.id);\n\n return {\n id: category.id,\n name: category.name,\n properties,\n subCategories,\n };\n });\n }\n\n private hasCategoryWithId = (propertyKey: string, categoryId: number) =>\n this.properties[propertyKey].category?.id === categoryId;\n\n private propertiesWithSubCategory = (propertyKey: string) =>\n !!this.properties[propertyKey].category?.subCategory?.id;\n\n private propertiesWithoutSubCategory = (propertyKey: string) =>\n !this.propertiesWithSubCategory(propertyKey);\n\n private createTreeSubCategories(categoryId: number) {\n const subCategories = this.getSubCategoriesOfCategory(categoryId);\n const convertedSubCategories = subCategories\n .map((subCategory) => this.convertSubCategory(subCategory))\n .filter((category) => category.properties.length > 0);\n const createdSubCategories = this.createListSubCategories(categoryId);\n const treeCategories = convertedSubCategories.concat(createdSubCategories);\n\n return treeCategories;\n }\n\n private getSubCategoriesOfCategory(id: number) {\n const categories = Object.keys(this.properties)\n .filter((key) => this.hasCategoryWithId(key, id))\n .filter(this.propertiesWithSubCategory)\n .map((key) => this.properties[key].category?.subCategory as Category)\n .filter(PropertyTreeCreator.distinctCategories);\n\n return categories;\n }\n\n private convertSubCategory(subCategory: Category): TreeCategory {\n const properties = Object.keys(this.properties)\n .filter((key) => this.hasSubCategoryWithId(key, subCategory.id))\n .map((key) => ({ ...this.properties[key], key }))\n .filter(this.isNonList);\n\n return {\n id: subCategory.id,\n name: subCategory.name,\n properties,\n subCategories: [],\n };\n }\n\n private hasSubCategoryWithId = (propertyKey: string, categoryId: number) =>\n this.properties[propertyKey].category?.subCategory?.id === categoryId;\n\n private static distinctCategories = (category: Category, index: number, self: Category[]) => {\n const firstOccuranceOfId = self.find((value) => value.id === category.id);\n return !!firstOccuranceOfId && self.indexOf(firstOccuranceOfId) === index;\n };\n\n private createListSubCategories(categoryId: number): TreeCategory[] {\n const listProperties = Object.keys(this.properties)\n .filter((key) => this.hasCategoryWithId(key, categoryId))\n .map((key) => ({ ...this.properties[key], key }))\n .filter(this.isList)\n .filter((prop) => (prop.value as string[]).length > 0);\n\n const createdSubCategories = listProperties.map((property, index) => ({\n id: PropertyTreeCreator.LIST_CATEGORY_START_ID + index,\n name: property.name,\n properties: this.asBoolProperties(property),\n subCategories: [],\n }));\n\n return createdSubCategories;\n }\n\n private asBoolProperties(listProperty: EnhancedProperty) {\n const values = listProperty.value as string[];\n const boolProperties = values.map((prop) => ({\n name: prop,\n value: true,\n type: 'bool',\n unit: listProperty.unit,\n hint: listProperty.hint,\n key: 'string',\n }));\n return boolProperties;\n }\n\n static DEFAULT_CATEGORY_NAME = 'Okategoriserat';\n static DEFAULT_CATEGORY_ID = 0;\n static TEXT_LIST_TYPE = 'text-list';\n static LIST_CATEGORY_START_ID = 100000;\n}\n\nexport default PropertyTreeCreator;\n", "import type { Property } from '../../@types/vehicle-properties';\n\nexport default (first: Property, second: Property) => {\n return first.name.localeCompare(second.name);\n};\n", "import type { Property } from '../../@types/vehicle-properties';\n\nimport compareProperties from './compare-properties';\n\nconst ORDER = Object.freeze({\n manufacturer: 1,\n modelSeries: 2,\n modelName: 3,\n modelYear: 4,\n manufactureYear: 5,\n mileage: 6,\n gearboxType: 7,\n colorName: 8,\n registrationNumber: 9,\n vinNumber: 10,\n fuelTypes: 11,\n engineBaseType: 12,\n chassis: 13,\n segment: 14,\n annualTax: 15,\n annualMalus: 16,\n annualBonus: 17,\n});\n\nconst compareByPredefinedOrder = (firstId: string, secondId: string) => {\n const firstOrder = ORDER[firstId as keyof typeof ORDER] || Number.MAX_SAFE_INTEGER;\n const secondOrder = ORDER[secondId as keyof typeof ORDER] || Number.MAX_SAFE_INTEGER;\n\n if (firstOrder < secondOrder) {\n return -1;\n } else if (secondOrder < firstOrder) {\n return 1;\n }\n return 0;\n};\n\nexport default (first: Property, second: Property) => {\n const result = compareByPredefinedOrder(`${first.key}`, `${second.key}`);\n\n if (result !== 0) {\n return result;\n }\n\n return compareProperties(first, second);\n};\n", "import type { Category } from '../../@types/vehicle-properties';\n\nconst ID_ORDER = Object.freeze({\n '1000': 1,\n '71': 2,\n '2': 3,\n '1': 4,\n '8': 5,\n '6': 6,\n '119': 7,\n});\n\ntype key = keyof typeof ID_ORDER;\n\nconst compareById = (firstId: string, secondId: string) => {\n const firstOrder = ID_ORDER[firstId as key] || Number.MAX_SAFE_INTEGER;\n const secondOrder = ID_ORDER[secondId as key] || Number.MAX_SAFE_INTEGER;\n\n if (firstOrder < secondOrder) {\n return -1;\n } else if (secondOrder < firstOrder) {\n return 1;\n }\n return 0;\n};\n\nexport default (first: Category, second: Category) => {\n const result = compareById(`${first.id}`, `${second.id}`);\n\n if (result !== 0) {\n return result;\n }\n\n return first.name.localeCompare(second.name);\n};\n", "import type { Tree } from '../../@types/vehicle-properties';\nimport compareBasicProperties from './compare-basic-properties';\nimport compareCategories from './compare-categories';\nimport compareProperties from './compare-properties';\n\nconst sort = (tree: Tree) => {\n tree.categories.sort(compareCategories);\n tree.categories.forEach((category) => {\n if (category.id === 1000) {\n category.properties.sort(compareBasicProperties);\n } else {\n category.properties.sort(compareProperties);\n category.subCategories.forEach((subCategory) => {\n subCategory.properties.sort(compareProperties);\n });\n }\n });\n};\n\nexport default sort;\n"], "mappings": "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", "names": ["import_lodash", "TEXT_TYPE", "NUMBER_TYPE", "BASIC_CATEGORY", "instance", "ENGINE_SUBCATEGORY", "PropertyBuilder", "name", "value", "type", "category", "unit", "custom_property_adder_default", "item", "properties", "newProperties", "cloneDeep", "market", "getMarket", "mileageValue", "getConvertedMileageValue", "calculatedMilageValue", "milageUnit", "numberSeparator", "x", "property_adjust_default", "properties", "adjustedProperties", "import_lodash", "HINTS", "instance", "enrichWithHint", "properties", "clone", "cloneDeep", "hints", "key", "property_hint_enricher_default", "import_lodash", "PROPERTY_BLACK_LIST", "isForbiddenProperty", "key", "MOLLER_BIL_FORBIDDEN_PROPERTIES", "NO_FORBIDDEN_PROPERTIES", "isForbiddenMollerBilProperty", "isForbiddenNoProperty", "CATEGORY_WHITE_LIST", "hasForbiddenCategory", "property", "property_remover_default", "properties", "isMollerBil", "newProperties", "cloneDeep", "market", "getMarket", "PropertyTreeCreator", "_PropertyTreeCreator", "properties", "categories", "rootProperties", "key", "propertyKey", "property", "category", "subCategories", "categoryId", "convertedSubCategories", "subCategory", "createdSubCategories", "id", "index", "self", "firstOccuranceOfId", "value", "prop", "listProperty", "property_tree_creator_default", "compare_properties_default", "first", "second", "ORDER", "compareByPredefinedOrder", "firstId", "secondId", "firstOrder", "secondOrder", "compare_basic_properties_default", "first", "second", "result", "compare_properties_default", "ID_ORDER", "compareById", "firstId", "secondId", "firstOrder", "secondOrder", "compare_categories_default", "first", "second", "result", "sort", "tree", "compare_categories_default", "category", "compare_basic_properties_default", "compare_properties_default", "subCategory", "property_tree_sorter_default"] }