{ "version": 3, "sources": ["../javascripts/selectors/item.ts"], "sourcesContent": ["import { createSelector } from '@reduxjs/toolkit';\n\nimport type Item from '../@types/item';\nimport type {\n Commerce,\n ExpectedDelivery,\n InventoryStatusString,\n OdometerReading,\n} from '../@types/item';\nimport type { RootState } from '../reducers';\nimport addCustomProperties from '../utils/vehicle-properties/custom-property-adder';\nimport adjustProperties from '../utils/vehicle-properties/property-adjust';\nimport enrichWithHint from '../utils/vehicle-properties/property-hint-enricher';\nimport removeProperties from '../utils/vehicle-properties/property-remover';\nimport PropertyTreeCreator from '../utils/vehicle-properties/property-tree-creator';\nimport sortTree from '../utils/vehicle-properties/property-tree-sorter';\n\nexport const getItem = createSelector(\n (state: RootState) => state.item.current,\n (documentList): Item | null =>\n !!documentList && !!documentList.documents && documentList.documents.length === 1\n ? documentList.documents[0]\n : null,\n);\n\nexport const getItemCommerce = createSelector([getItem], (item): Commerce | null =>\n item ? item.commerce : null,\n);\n\ninterface GetItemInformation {\n title: string;\n shortDescription?: string | null;\n description: string;\n fuelTypes: string;\n gearboxType: string;\n mileage: number;\n modelYear: number;\n isDemoVersion: boolean;\n odometerReading: OdometerReading;\n registrationNumber: string;\n inventoryStatusString?: InventoryStatusString;\n availableFrom?: string;\n expectedDelivery?: ExpectedDelivery;\n}\n\nexport const getItemInformation = createSelector([getItem], (item): GetItemInformation | null => {\n if (!item) return null;\n\n return {\n title: item.title,\n shortDescription: item.shortDescription,\n description: item.description,\n fuelTypes: item.fuelTypes,\n gearboxType: item.gearboxType,\n mileage: item.mileage,\n modelYear: item.modelYear,\n isDemoVersion: item.isDemoVersion,\n odometerReading: item.odometerReading,\n registrationNumber: item.registrationNumber,\n inventoryStatusString: item.inventoryStatusString,\n availableFrom: item.availableFrom,\n expectedDelivery: item.expectedDelivery,\n };\n});\n\ninterface GetItemContact {\n price: number;\n}\n\nexport const getItemContact = createSelector([getItem], (item): GetItemContact | null => {\n if (!item) return null;\n return {\n price: item.price,\n };\n});\n\ninterface GetItemPrice {\n price: number;\n oldPrice: number;\n leasingPrice: number;\n deductibleVat: boolean;\n businessLeasingPrice: number;\n leasingDeposit?: number;\n}\n\nexport const getItemPrice = createSelector([getItem], (item): GetItemPrice | null => {\n if (!item) return null;\n\n return {\n price: item.price,\n oldPrice: item.oldPrice,\n leasingPrice: item.leasingPrice,\n deductibleVat: item.deductibleVat,\n businessLeasingPrice: item.businessLeasingPrice,\n leasingDeposit: item.leasing?.deposit,\n };\n});\n\nexport const getPrivateLeasingPromo = createSelector([getItem], (item) =>\n item?.leasingPromos?.find((x) => !x.isBusinessLeasing),\n);\n\nexport const getBusinessLeasingPromo = createSelector([getItem], (item) =>\n item?.leasingPromos?.find((x) => x.isBusinessLeasing),\n);\n\nexport const getItemOptions = createSelector([getItem], (item) => {\n if (!item) return null;\n\n return item.options || [];\n});\n\nexport const getItemId = createSelector([getItem], (item) => (item ? item.id : null));\n\nexport const getItemBranch = createSelector([getItem], (item) =>\n item && item.branches && item.branches.length > 0 ? item.branches[0] : null,\n);\n\nexport const getItemCentralStorageBranches = createSelector([getItem], (item) =>\n item &&\n item.branches &&\n item.branches.length &&\n item.branches[0].connectedBranches &&\n item.branches[0].connectedBranches.length\n ? item.branches[0].connectedBranches\n : null,\n);\n\nexport const itemIsCentralStorage = createSelector([getItemCentralStorageBranches], (s) => !!s);\n\nexport const itemIsAuctionItem = createSelector([getItem], (item) => item && item.isAuctionItem);\n\nexport const getItemAuctionUrl = createSelector([getItem], (item) =>\n item ? item.externalUrl : null,\n);\n\nconst MOLLER_BIL_BRANCHES = [\n 'a274a702-0875-42e6-9c6e-95fac29b1342',\n '3cbf82c4-fffe-42cb-9bf3-3f6a407a2fa4',\n '42b01b73-096d-429e-b116-334801c7d58c',\n 'c8c512f4-ec03-4279-a060-ea2e9e81b2be',\n '78ba8a45-536b-49eb-851f-73f80cc7e14c',\n '966c9b5c-9c81-48f5-98a4-cd5fe4f3330e',\n '4e5e0e8d-05f6-4df9-884d-3418c3711887',\n '42a3078b-9edd-437b-b939-d6a664de0b8e',\n 'a2b303e4-29a2-44ba-8453-4aa611fec545',\n '0c439b93-1976-4529-86dc-ecb99df44782',\n '115d537d-6f8b-4309-9d6c-fb21fe9b1200',\n '190c5a2c-53b9-4038-9f65-965d976442cb',\n '9da4761c-8eb5-41c1-8651-39a704382ab0',\n '41fd21dc-98ff-41c7-ada7-19144be442b2',\n 'b515b2c2-6908-42b0-a4d5-a2ced631d48f',\n 'be60e74d-71a2-4dc9-ab2e-5da1e363753b',\n 'dd297c0d-2b53-43df-a647-5743a8650f2b',\n '12c27759-ae28-4cb0-bbbe-b54a6a9e83f9',\n '82922cfa-3480-4989-8f87-30404fa3259e',\n '839ebd2a-a374-40ec-be14-e3f92defa65b',\n '7cc0dcd0-9f53-4694-808a-3e1652d28023',\n 'ed10a26e-f933-4422-bb46-ac3e55ef55a5',\n 'c28700b4-3712-49d1-90f7-d8b080b63a1d',\n 'ab44f1f3-e762-40e3-b155-5b3f0299933e',\n '830442ad-33ef-413f-85aa-e31a34db1b34',\n '0ed59cc1-6f74-4a93-a9a0-da0880c03613',\n '3d27f368-ff2a-442c-b7da-8e9921945953',\n '5a96cc00-a5b2-47cd-aafa-dae9278aad21',\n '7a1556ca-8d99-483f-9975-2efbbbdc27a3',\n '7c170011-1a87-4166-bde4-889ad7613462',\n '8a4d9cfd-480d-43ab-86a9-732e31643cb5',\n '8a5b3167-448d-4b30-bcac-c423b4bbb392',\n '8ecdbc31-26e0-4a0d-a6f7-fd5a28d9e3d2',\n '8fbb2e93-5ea9-4628-9c16-d22465eb5925',\n '9aefabde-3013-441a-bed3-68d34e156eff',\n '9c215bf9-43a8-4989-ae62-ae931e019178',\n 'a51eee72-725d-416a-9a75-e3bc5b4c0229',\n 'adfed7a5-8206-4221-a11f-82a7eede872c',\n 'e3b4b2f6-c761-4bab-bebc-7c43ed0616bc',\n 'f46eb5fa-da36-4be2-8439-6790b5786a35',\n 'fc3739ad-e5c5-47fb-bf40-cb1678794b28',\n];\n\nexport const getPropertyTree = createSelector(getItem, (item) => {\n const properties = item?.enhancedProperties || {};\n const branchIds = item?.branches?.map((x) => x.id);\n const isMollerBil = !!branchIds?.some((x) => MOLLER_BIL_BRANCHES.includes(x));\n\n let newProperties = removeProperties(properties, isMollerBil);\n newProperties = addCustomProperties(item, newProperties);\n const adjustedProperties = adjustProperties(newProperties);\n const enrichedProperties = enrichWithHint(adjustedProperties);\n const tree = new PropertyTreeCreator(enrichedProperties).create();\n\n sortTree(tree);\n return tree;\n});\n"], "mappings": "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", "names": ["getItem", "createSelector", "state", "documentList", "getItemCommerce", "item", "getItemInformation", "getItemContact", "getItemPrice", "getPrivateLeasingPromo", "x", "getBusinessLeasingPromo", "getItemOptions", "getItemId", "getItemBranch", "getItemCentralStorageBranches", "itemIsCentralStorage", "s", "itemIsAuctionItem", "getItemAuctionUrl", "MOLLER_BIL_BRANCHES", "getPropertyTree", "properties", "isMollerBil", "newProperties", "property_remover_default", "custom_property_adder_default", "adjustedProperties", "property_adjust_default", "enrichedProperties", "property_hint_enricher_default", "tree", "property_tree_creator_default", "property_tree_sorter_default"] }