feat(SW-2863): Move contentstack router to trpc package * Add exports to packages and lint rule to prevent relative imports * Add env to trpc package * Add eslint to trpc package * Apply lint rules * Use direct imports from trpc package * Add lint-staged config to trpc * Move lang enum to common * Restructure trpc package folder structure * WIP first step * update internal imports in trpc * Fix most errors in scandic-web Just 100 left... * Move Props type out of trpc * Fix CategorizedFilters types * Move more schemas in hotel router * Fix deps * fix getNonContentstackUrls * Fix import error * Fix entry error handling * Fix generateMetadata metrics * Fix alertType enum * Fix duplicated types * lint:fix * Merge branch 'master' into feat/sw-2863-move-contentstack-router-to-trpc-package * Fix broken imports * Merge branch 'master' into feat/sw-2863-move-contentstack-router-to-trpc-package Approved-by: Linus Flood
90 lines
2.8 KiB
TypeScript
90 lines
2.8 KiB
TypeScript
import { differenceInCalendarDays, format, isWeekend } from "date-fns"
|
|
|
|
import { ChildBedMapEnum } from "@scandic-hotels/trpc/enums/childBedMapEnum"
|
|
import { RoomPackageCodeEnum } from "@scandic-hotels/trpc/enums/roomFilter"
|
|
|
|
import type { Lang } from "@scandic-hotels/common/constants/language"
|
|
|
|
import type { Room } from "@/types/components/hotelReservation/selectRate/selectRate"
|
|
import {
|
|
TrackingChannelEnum,
|
|
type TrackingSDKHotelInfo,
|
|
type TrackingSDKPageData,
|
|
} from "@/types/components/tracking"
|
|
import type { ChildrenInRoom } from "@/utils/hotelSearchDetails"
|
|
|
|
export function getTracking(
|
|
lang: Lang,
|
|
arrivalDate: Date,
|
|
departureDate: Date,
|
|
adultsInRoom: number[],
|
|
childrenInRoom: ChildrenInRoom,
|
|
hotelId: string,
|
|
hotelName: string,
|
|
noOfRooms: number,
|
|
country: string | undefined,
|
|
hotelCity: string | undefined,
|
|
paramCity: string | undefined,
|
|
bookingCode?: string,
|
|
isRedemption?: boolean,
|
|
rooms?: Room[]
|
|
) {
|
|
const pageTrackingData: TrackingSDKPageData = {
|
|
channel: TrackingChannelEnum.hotelreservation,
|
|
domainLanguage: lang,
|
|
pageId: "select-rate",
|
|
pageName: "hotelreservation|select-rate",
|
|
pageType: "bookingroomsandratespage",
|
|
siteSections: "hotelreservation|select-rate",
|
|
siteVersion: "new-web",
|
|
}
|
|
|
|
const hotelsTrackingData: TrackingSDKHotelInfo = {
|
|
ageOfChildren: childrenInRoom
|
|
?.map((c) => c?.map((k) => k.age).join(",") ?? "")
|
|
.join("|"),
|
|
arrivalDate: format(arrivalDate, "yyyy-MM-dd"),
|
|
bookingTypeofDay: isWeekend(arrivalDate) ? "weekend" : "weekday",
|
|
childBedPreference: childrenInRoom
|
|
?.map((c) => c?.map((k) => ChildBedMapEnum[k.bed]).join(",") ?? "")
|
|
.join("|"),
|
|
country,
|
|
departureDate: format(departureDate, "yyyy-MM-dd"),
|
|
duration: differenceInCalendarDays(departureDate, arrivalDate),
|
|
hotelID: hotelId,
|
|
leadTime: differenceInCalendarDays(arrivalDate, new Date()),
|
|
noOfAdults: adultsInRoom.join(","),
|
|
noOfChildren: childrenInRoom?.map((kids) => kids?.length ?? 0).join(","),
|
|
noOfRooms,
|
|
region: hotelCity,
|
|
searchTerm: paramCity ?? hotelName,
|
|
searchType: "hotel",
|
|
bookingCode: bookingCode ?? "n/a",
|
|
rewardNight: isRedemption ? "yes" : "no",
|
|
specialRoomType: rooms
|
|
?.map((room) => {
|
|
const packages = room.packages
|
|
?.map((pkg) => {
|
|
if (pkg === RoomPackageCodeEnum.ACCESSIBILITY_ROOM) {
|
|
return "accessibility"
|
|
} else if (pkg === RoomPackageCodeEnum.ALLERGY_ROOM) {
|
|
return "allergy friendly"
|
|
} else if (pkg === RoomPackageCodeEnum.PET_ROOM) {
|
|
return "pet room"
|
|
} else {
|
|
return ""
|
|
}
|
|
})
|
|
.join(",")
|
|
|
|
return packages ?? ""
|
|
})
|
|
.join("|"),
|
|
}
|
|
|
|
return {
|
|
hotelsTrackingData,
|
|
pageTrackingData,
|
|
}
|
|
}
|