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
57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
import { z } from "zod"
|
|
|
|
import { scriptedCardThemeEnum } from "../../../../enums/scriptedCard"
|
|
import { SidebarEnums } from "../../../../types/sidebar"
|
|
import {
|
|
cardBlockRefsSchema,
|
|
cardBlockSchema,
|
|
transformCardBlock,
|
|
transformCardBlockRefs,
|
|
} from "../blocks/cardsGrid"
|
|
|
|
export const scriptedCardsSchema = z.object({
|
|
typename: z
|
|
.literal(SidebarEnums.blocks.ScriptedCard)
|
|
.optional()
|
|
.default(SidebarEnums.blocks.ScriptedCard),
|
|
scripted_card: z
|
|
.object({
|
|
theme: z.nativeEnum(scriptedCardThemeEnum).nullable(),
|
|
scripted_cardConnection: z.object({
|
|
edges: z.array(
|
|
z.object({
|
|
node: cardBlockSchema,
|
|
})
|
|
),
|
|
}),
|
|
})
|
|
.transform((data) => {
|
|
return {
|
|
theme: data.theme,
|
|
...transformCardBlock(data.scripted_cardConnection.edges[0].node),
|
|
}
|
|
}),
|
|
})
|
|
|
|
export const scriptedCardRefschema = z.object({
|
|
scripted_card: z
|
|
.object({
|
|
scripted_cardConnection: z.object({
|
|
edges: z.array(
|
|
z.object({
|
|
node: cardBlockRefsSchema,
|
|
})
|
|
),
|
|
}),
|
|
})
|
|
.transform((data) => {
|
|
let card = null
|
|
if (data.scripted_cardConnection.edges.length) {
|
|
card = transformCardBlockRefs(
|
|
data.scripted_cardConnection.edges[0].node
|
|
)
|
|
}
|
|
return card
|
|
}),
|
|
})
|