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
87 lines
2.2 KiB
TypeScript
87 lines
2.2 KiB
TypeScript
import { z } from "zod"
|
|
|
|
import { ContentEnum } from "../../../../types/content"
|
|
import { SidebarEnums } from "../../../../types/sidebar"
|
|
import {
|
|
imageContainerRefsSchema,
|
|
imageContainerSchema,
|
|
} from "../blocks/imageContainer"
|
|
import { sysAssetRefsSchema, sysAssetSchema } from "../blocks/sysAsset"
|
|
import {
|
|
linkRefsUnionSchema,
|
|
linkUnionSchema,
|
|
transformPageLink,
|
|
} from "../pageLinks"
|
|
|
|
export const contentSchema = z.object({
|
|
typename: z
|
|
.literal(SidebarEnums.blocks.Content)
|
|
.optional()
|
|
.default(SidebarEnums.blocks.Content),
|
|
content: z
|
|
.object({
|
|
content: z.object({
|
|
json: z.any(), // JSON
|
|
embedded_itemsConnection: z.object({
|
|
edges: z.array(
|
|
z.object({
|
|
node: z
|
|
.discriminatedUnion("__typename", [
|
|
imageContainerSchema,
|
|
sysAssetSchema,
|
|
...linkUnionSchema.options,
|
|
])
|
|
.transform((data) => {
|
|
const link = transformPageLink(data)
|
|
if (link) {
|
|
return link
|
|
}
|
|
return data
|
|
}),
|
|
})
|
|
),
|
|
}),
|
|
}),
|
|
})
|
|
.transform((data) => {
|
|
return {
|
|
embedded_itemsConnection: data.content.embedded_itemsConnection,
|
|
json: data.content.json,
|
|
}
|
|
}),
|
|
})
|
|
|
|
const actualRefs = z.discriminatedUnion("__typename", [
|
|
imageContainerRefsSchema,
|
|
...linkRefsUnionSchema.options,
|
|
])
|
|
|
|
type Ref = typeof actualRefs._type
|
|
type Refs = {
|
|
node: Ref
|
|
}
|
|
|
|
export const contentRefsSchema = z.object({
|
|
content: z
|
|
.object({
|
|
content: z.object({
|
|
embedded_itemsConnection: z.object({
|
|
edges: z.array(
|
|
z.object({
|
|
node: z.discriminatedUnion("__typename", [
|
|
sysAssetRefsSchema,
|
|
...actualRefs.options,
|
|
]),
|
|
})
|
|
),
|
|
}),
|
|
}),
|
|
})
|
|
.transform((data) => {
|
|
const filtered = data.content.embedded_itemsConnection.edges.filter(
|
|
(block) => block.node.__typename !== ContentEnum.blocks.SysAsset
|
|
) as unknown as Refs[] // TS issues with filtered arrays
|
|
return filtered.map((block) => block.node.system)
|
|
}),
|
|
})
|