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
79 lines
2.3 KiB
TypeScript
79 lines
2.3 KiB
TypeScript
import { createCounter } from "@scandic-hotels/common/telemetry"
|
|
import { contentstackExtendedProcedureUID } from "@scandic-hotels/trpc/procedures"
|
|
|
|
import { router } from "../../.."
|
|
import { GetCollectionPage } from "../../../graphql/Query/CollectionPage/CollectionPage.graphql"
|
|
import { request } from "../../../graphql/request"
|
|
import { collectionPageSchema } from "./output"
|
|
import {
|
|
fetchCollectionPageRefs,
|
|
generatePageTags,
|
|
validateCollectionPageRefs,
|
|
} from "./utils"
|
|
|
|
import type { GetCollectionPageSchema } from "../../../types/collectionPage"
|
|
import type { TrackingPageData } from "../../types"
|
|
|
|
export const collectionPageQueryRouter = router({
|
|
get: contentstackExtendedProcedureUID.query(async ({ ctx }) => {
|
|
const { lang, uid } = ctx
|
|
|
|
const collectionPageRefsData = await fetchCollectionPageRefs(lang, uid)
|
|
|
|
const collectionPageRefs = validateCollectionPageRefs(
|
|
collectionPageRefsData,
|
|
lang,
|
|
uid
|
|
)
|
|
if (!collectionPageRefs) {
|
|
return null
|
|
}
|
|
const tags = generatePageTags(collectionPageRefs, lang)
|
|
|
|
const getCollectionPageCounter = createCounter(
|
|
"trpc.contentstack",
|
|
"collectionPage.get"
|
|
)
|
|
const metricsGetCollectionPage = getCollectionPageCounter.init({
|
|
lang,
|
|
uid,
|
|
})
|
|
|
|
metricsGetCollectionPage.start()
|
|
|
|
const response = await request<GetCollectionPageSchema>(
|
|
GetCollectionPage,
|
|
{ locale: lang, uid },
|
|
{
|
|
key: tags,
|
|
ttl: "max",
|
|
}
|
|
)
|
|
|
|
const collectionPage = collectionPageSchema.safeParse(response.data)
|
|
if (!collectionPage.success) {
|
|
metricsGetCollectionPage.validationError(collectionPage.error)
|
|
return null
|
|
}
|
|
|
|
metricsGetCollectionPage.success()
|
|
|
|
const tracking: TrackingPageData = {
|
|
pageId: collectionPage.data.collection_page.system.uid,
|
|
domainLanguage: lang,
|
|
publishDate: collectionPage.data.collection_page.system.updated_at,
|
|
createDate: collectionPage.data.collection_page.system.created_at,
|
|
channel: "collection-page",
|
|
pageType: "collectionpage",
|
|
pageName: collectionPage.data.trackingProps.url,
|
|
siteSections: collectionPage.data.trackingProps.url,
|
|
siteVersion: "new-web",
|
|
}
|
|
|
|
return {
|
|
collectionPage: collectionPage.data.collection_page,
|
|
tracking,
|
|
}
|
|
}),
|
|
})
|