Files
Matilda Landström 0e30a2d218 Merged in feat/LOY-361-add-promo-campaign-page-type (pull request #2826)
Feat/LOY-361 add promo campaign page type

* feat(LOY-361): add Pomo Campaign page type

* chore(SW-361): remove campaign page flag

* fix(LOY-361): cleanup

* fix(LOY-361): add promo code


Approved-by: Erik Tiekstra
Approved-by: Chuma Mcphoy (We Ahead)
2025-09-19 07:20:17 +00:00

93 lines
3.1 KiB
TypeScript

import * as Sentry from "@sentry/nextjs"
import { router } from "../../.."
import { PageContentTypeEnum } from "../../../enums/contentType"
import {
GetAccountPageSettings,
GetCampaignOverviewPageSettings,
GetCampaignPageSettings,
GetCollectionPageSettings,
GetContentPageSettings,
GetCurrentBlocksPageSettings,
GetDestinationCityPageSettings,
GetDestinationCountryPageSettings,
GetDestinationOverviewPageSettings,
GetHotelPageSettings,
GetLoyaltyPageSettings,
GetPromoCampaignPageSettings,
GetStartPageSettings,
} from "../../../graphql/Query/PageSettings.graphql"
import { request } from "../../../graphql/request"
import { contentstackBaseProcedure } from "../../../procedures"
import { langInput } from "../../../utils"
import { generateTag } from "../../../utils/generateTag"
import {
DEFAULT_GET_PAGE_SETTINGS,
type GetPageSettingsSchema,
getPageSettingsSchema,
} from "./output"
import { affix } from "./utils"
export const pageSettingsQueryRouter = router({
get: contentstackBaseProcedure
.input(langInput)
.query(async ({ input, ctx }): Promise<GetPageSettingsSchema> => {
const { contentType, uid } = ctx
const lang = input.lang ?? ctx.lang
// This condition is to handle 404 page case and booking flow
if (!contentType || !uid) {
return DEFAULT_GET_PAGE_SETTINGS
}
const getPageSettingsQuery =
graphqlQueriesForContentType[contentType as PageContentTypeEnum]
if (!getPageSettingsQuery) {
Sentry.captureMessage(
`GetPageSettings: No proper Content type defined for '${contentType}'`
)
return DEFAULT_GET_PAGE_SETTINGS
}
const response = await request<GetPageSettingsSchema>(
getPageSettingsQuery,
{
uid: uid,
locale: lang,
},
{
key: generateTag(lang, uid, affix),
ttl: "max",
}
)
try {
const result = getPageSettingsSchema.parse(response.data)
return result
} catch (error) {
Sentry.captureException(error, { extra: { uid, contentType } })
return DEFAULT_GET_PAGE_SETTINGS
}
}),
})
const graphqlQueriesForContentType: Record<PageContentTypeEnum, any> = {
[PageContentTypeEnum.accountPage]: GetAccountPageSettings,
[PageContentTypeEnum.campaignOverviewPage]: GetCampaignOverviewPageSettings,
[PageContentTypeEnum.campaignPage]: GetCampaignPageSettings,
[PageContentTypeEnum.collectionPage]: GetCollectionPageSettings,
[PageContentTypeEnum.contentPage]: GetContentPageSettings,
[PageContentTypeEnum.currentBlocksPage]: GetCurrentBlocksPageSettings,
[PageContentTypeEnum.destinationCityPage]: GetDestinationCityPageSettings,
[PageContentTypeEnum.destinationCountryPage]:
GetDestinationCountryPageSettings,
[PageContentTypeEnum.destinationOverviewPage]:
GetDestinationOverviewPageSettings,
[PageContentTypeEnum.hotelPage]: GetHotelPageSettings,
[PageContentTypeEnum.loyaltyPage]: GetLoyaltyPageSettings,
[PageContentTypeEnum.startPage]: GetStartPageSettings,
[PageContentTypeEnum.promoCampaignPage]: GetPromoCampaignPageSettings,
}