Migrate to a monorepo setup - step 1 * Move web to subfolder /apps/scandic-web * Yarn + transitive deps - Move to yarn - design-system package removed for now since yarn doesn't support the parameter for token (ie project currently broken) - Add missing transitive dependencies as Yarn otherwise prevents these imports - VS Code doesn't pick up TS path aliases unless you open /apps/scandic-web instead of root (will be fixed with monorepo) * Pin framer-motion to temporarily fix typing issue https://github.com/adobe/react-spectrum/issues/7494 * Pin zod to avoid typ error There seems to have been a breaking change in the types returned by zod where error is now returned as undefined instead of missing in the type. We should just handle this but to avoid merge conflicts just pin the dependency for now. * Pin react-intl version Pin version of react-intl to avoid tiny type issue where formatMessage does not accept a generic any more. This will be fixed in a future commit, but to avoid merge conflicts just pin for now. * Pin typescript version Temporarily pin version as newer versions as stricter and results in a type error. Will be fixed in future commit after merge. * Setup workspaces * Add design-system as a monorepo package * Remove unused env var DESIGN_SYSTEM_ACCESS_TOKEN * Fix husky for monorepo setup * Update netlify.toml * Add lint script to root package.json * Add stub readme * Fix react-intl formatMessage types * Test netlify.toml in root * Remove root toml * Update netlify.toml publish path * Remove package-lock.json * Update build for branch/preview builds Approved-by: Linus Flood
291 lines
8.2 KiB
TypeScript
291 lines
8.2 KiB
TypeScript
import { env } from "@/env/server"
|
|
import {
|
|
GetDestinationOverviewPage,
|
|
GetDestinationOverviewPageRefs,
|
|
} from "@/lib/graphql/Query/DestinationOverviewPage/DestinationOverviewPage.graphql"
|
|
import { request } from "@/lib/graphql/request"
|
|
import { notFound } from "@/server/errors/trpc"
|
|
import {
|
|
contentstackExtendedProcedureUID,
|
|
router,
|
|
serviceProcedure,
|
|
} from "@/server/trpc"
|
|
import { toApiLang } from "@/server/utils"
|
|
|
|
import { generateTag } from "@/utils/generateTag"
|
|
|
|
import {
|
|
getCitiesByCountry,
|
|
getCountries,
|
|
getHotelIdsByCityId,
|
|
} from "../../hotels/utils"
|
|
import { getCityPageUrls } from "../destinationCityPage/utils"
|
|
import { getCountryPageUrls } from "../destinationCountryPage/utils"
|
|
import {
|
|
destinationOverviewPageRefsSchema,
|
|
destinationOverviewPageSchema,
|
|
} from "./output"
|
|
import {
|
|
getDestinationOverviewPageCounter,
|
|
getDestinationOverviewPageFailCounter,
|
|
getDestinationOverviewPageRefsCounter,
|
|
getDestinationOverviewPageRefsFailCounter,
|
|
getDestinationOverviewPageRefsSuccessCounter,
|
|
getDestinationOverviewPageSuccessCounter,
|
|
} from "./telemetry"
|
|
|
|
import type { DestinationsData } from "@/types/components/destinationOverviewPage/destinationsList/destinationsData"
|
|
import {
|
|
TrackingChannelEnum,
|
|
type TrackingSDKPageData,
|
|
} from "@/types/components/tracking"
|
|
import type { RequestOptionsWithOutBody } from "@/types/fetch"
|
|
import type {
|
|
GetDestinationOverviewPageData,
|
|
GetDestinationOverviewPageRefsSchema,
|
|
} from "@/types/trpc/routers/contentstack/destinationOverviewPage"
|
|
|
|
export const destinationOverviewPageQueryRouter = router({
|
|
get: contentstackExtendedProcedureUID.query(async ({ ctx }) => {
|
|
const { lang, uid } = ctx
|
|
|
|
getDestinationOverviewPageRefsCounter.add(1, { lang, uid: `${uid}` })
|
|
console.info(
|
|
"contentstack.destinationOverviewPage.refs start",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
})
|
|
)
|
|
const refsResponse = await request<GetDestinationOverviewPageRefsSchema>(
|
|
GetDestinationOverviewPageRefs,
|
|
{
|
|
locale: lang,
|
|
uid,
|
|
},
|
|
{
|
|
cache: "force-cache",
|
|
next: {
|
|
tags: [generateTag(lang, uid)],
|
|
},
|
|
}
|
|
)
|
|
if (!refsResponse.data) {
|
|
const notFoundError = notFound(refsResponse)
|
|
getDestinationOverviewPageRefsFailCounter.add(1, {
|
|
lang,
|
|
uid,
|
|
error_type: "not_found",
|
|
error: JSON.stringify({ code: notFoundError.code }),
|
|
})
|
|
console.error(
|
|
"contentstack.destinationOverviewPage.refs not found error",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
error: { code: notFoundError.code },
|
|
})
|
|
)
|
|
throw notFoundError
|
|
}
|
|
|
|
const validatedRefsData = destinationOverviewPageRefsSchema.safeParse(
|
|
refsResponse.data
|
|
)
|
|
|
|
if (!validatedRefsData.success) {
|
|
getDestinationOverviewPageRefsFailCounter.add(1, {
|
|
lang,
|
|
uid,
|
|
error_type: "validation_error",
|
|
error: JSON.stringify(validatedRefsData.error),
|
|
})
|
|
console.error(
|
|
"contentstack.destinationOverviewPage.refs validation error",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
error: validatedRefsData.error,
|
|
})
|
|
)
|
|
return null
|
|
}
|
|
|
|
getDestinationOverviewPageRefsSuccessCounter.add(1, { lang, uid: `${uid}` })
|
|
console.info(
|
|
"contentstack.destinationOverviewPage.refs success",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
})
|
|
)
|
|
|
|
getDestinationOverviewPageCounter.add(1, { lang, uid: `${uid}` })
|
|
console.info(
|
|
"contentstack.destinationOverviewPage start",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
})
|
|
)
|
|
const response = await request<GetDestinationOverviewPageData>(
|
|
GetDestinationOverviewPage,
|
|
{
|
|
locale: lang,
|
|
uid,
|
|
},
|
|
{
|
|
cache: "force-cache",
|
|
next: {
|
|
tags: [generateTag(lang, uid)],
|
|
},
|
|
}
|
|
)
|
|
if (!response.data) {
|
|
const notFoundError = notFound(response)
|
|
getDestinationOverviewPageFailCounter.add(1, {
|
|
lang,
|
|
uid: `${uid}`,
|
|
error_type: "not_found",
|
|
error: JSON.stringify({ code: notFoundError.code }),
|
|
})
|
|
console.error(
|
|
"contentstack.destinationOverviewPage not found error",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
error: { code: notFoundError.code },
|
|
})
|
|
)
|
|
throw notFoundError
|
|
}
|
|
|
|
const destinationOverviewPage = destinationOverviewPageSchema.safeParse(
|
|
response.data
|
|
)
|
|
|
|
if (!destinationOverviewPage.success) {
|
|
getDestinationOverviewPageFailCounter.add(1, {
|
|
lang,
|
|
uid: `${uid}`,
|
|
error_type: "validation_error",
|
|
error: JSON.stringify(destinationOverviewPage.error),
|
|
})
|
|
console.error(
|
|
"contentstack.destinationOverviewPage validation error",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
error: destinationOverviewPage.error,
|
|
})
|
|
)
|
|
return null
|
|
}
|
|
|
|
getDestinationOverviewPageSuccessCounter.add(1, { lang, uid: `${uid}` })
|
|
console.info(
|
|
"contentstack.destinationOverviewPage success",
|
|
JSON.stringify({
|
|
query: { lang, uid },
|
|
})
|
|
)
|
|
|
|
const system = destinationOverviewPage.data.destination_overview_page.system
|
|
const tracking: TrackingSDKPageData = {
|
|
pageId: system.uid,
|
|
domainLanguage: lang,
|
|
publishDate: system.updated_at,
|
|
createDate: system.created_at,
|
|
channel: TrackingChannelEnum["destination-overview-page"],
|
|
pageType: "staticcontentpage",
|
|
pageName: destinationOverviewPage.data.trackingProps.url,
|
|
siteSections: destinationOverviewPage.data.trackingProps.url,
|
|
siteVersion: "new-web",
|
|
}
|
|
|
|
return {
|
|
destinationOverviewPage:
|
|
destinationOverviewPage.data.destination_overview_page,
|
|
tracking,
|
|
}
|
|
}),
|
|
destinations: router({
|
|
get: serviceProcedure.query(async function ({ ctx }) {
|
|
const apiLang = toApiLang(ctx.lang)
|
|
const params = new URLSearchParams({
|
|
language: apiLang,
|
|
})
|
|
|
|
const options: RequestOptionsWithOutBody = {
|
|
// needs to clear default option as only
|
|
// cache or next.revalidate is permitted
|
|
cache: undefined,
|
|
headers: {
|
|
Authorization: `Bearer ${ctx.serviceToken}`,
|
|
},
|
|
next: {
|
|
revalidate: env.CACHE_TIME_HOTELS,
|
|
},
|
|
}
|
|
const countries = await getCountries(options, params, ctx.lang)
|
|
const countryPages = await getCountryPageUrls(ctx.lang)
|
|
|
|
if (!countries) {
|
|
return null
|
|
}
|
|
|
|
const countryNames = countries.data.map((country) => country.name)
|
|
|
|
const citiesByCountry = await getCitiesByCountry(
|
|
countryNames,
|
|
options,
|
|
params,
|
|
ctx.lang,
|
|
true
|
|
)
|
|
|
|
const cityPages = await getCityPageUrls(ctx.lang)
|
|
|
|
const destinations: DestinationsData = await Promise.all(
|
|
Object.entries(citiesByCountry).map(async ([country, cities]) => {
|
|
const citiesWithHotelCount = await Promise.all(
|
|
cities.map(async (city) => {
|
|
const hotelIdsParams = new URLSearchParams({
|
|
language: apiLang,
|
|
city: city.id,
|
|
})
|
|
|
|
const hotels = await getHotelIdsByCityId(
|
|
city.id,
|
|
options,
|
|
hotelIdsParams
|
|
)
|
|
|
|
const cityPage = cityPages.find(
|
|
(cityPage) => cityPage.city === city.cityIdentifier
|
|
)
|
|
|
|
return {
|
|
id: city.id,
|
|
name: city.name,
|
|
hotelIds: hotels,
|
|
hotelCount: hotels?.length ?? 0,
|
|
url: cityPage?.url,
|
|
}
|
|
})
|
|
)
|
|
|
|
const countryPage = countryPages.find(
|
|
(countryPage) => countryPage.country === country
|
|
)
|
|
|
|
return {
|
|
country,
|
|
countryUrl: countryPage?.url,
|
|
numberOfHotels: citiesWithHotelCount.reduce(
|
|
(acc, city) => acc + city.hotelCount,
|
|
0
|
|
),
|
|
cities: citiesWithHotelCount,
|
|
}
|
|
})
|
|
)
|
|
|
|
return destinations.sort((a, b) => a.country.localeCompare(b.country))
|
|
}),
|
|
}),
|
|
})
|