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
82 lines
2.2 KiB
TypeScript
82 lines
2.2 KiB
TypeScript
import { z } from "zod"
|
|
|
|
import { BlocksEnums } from "../../../../types/blocks"
|
|
import { ContentEnum } from "../../../../types/content"
|
|
import {
|
|
linkRefsUnionSchema,
|
|
linkUnionSchema,
|
|
transformPageLink,
|
|
} from "../pageLinks"
|
|
import { sysAssetRefsSchema, sysAssetSchema } from "./sysAsset"
|
|
|
|
export const textColsSchema = z.object({
|
|
typename: z
|
|
.literal(BlocksEnums.block.TextCols)
|
|
.optional()
|
|
.default(BlocksEnums.block.TextCols),
|
|
text_cols: z.object({
|
|
columns: z.array(
|
|
z.object({
|
|
title: z.string().optional().default(""),
|
|
text: z.object({
|
|
json: z.any(), // JSON
|
|
embedded_itemsConnection: z.object({
|
|
edges: z.array(
|
|
z.object({
|
|
node: z
|
|
.discriminatedUnion("__typename", [
|
|
sysAssetSchema,
|
|
...linkUnionSchema.options,
|
|
])
|
|
.transform((data) => {
|
|
const link = transformPageLink(data)
|
|
if (link) {
|
|
return link
|
|
}
|
|
return data
|
|
}),
|
|
})
|
|
),
|
|
}),
|
|
}),
|
|
})
|
|
),
|
|
}),
|
|
})
|
|
|
|
type Refs = {
|
|
node: z.TypeOf<typeof linkUnionSchema>
|
|
}
|
|
|
|
export const textColsRefsSchema = z.object({
|
|
text_cols: z
|
|
.object({
|
|
columns: z.array(
|
|
z.object({
|
|
text: z.object({
|
|
embedded_itemsConnection: z.object({
|
|
edges: z.array(
|
|
z.object({
|
|
node: z.discriminatedUnion("__typename", [
|
|
sysAssetRefsSchema,
|
|
...linkRefsUnionSchema.options,
|
|
]),
|
|
})
|
|
),
|
|
}),
|
|
}),
|
|
})
|
|
),
|
|
})
|
|
.transform((data) => {
|
|
return data.columns
|
|
.map((column) => {
|
|
const filtered = column.text.embedded_itemsConnection.edges.filter(
|
|
(block) => block.node.__typename !== ContentEnum.blocks.SysAsset
|
|
) as unknown as Refs[] // TS issue with filtered out types
|
|
return filtered.map(({ node }) => node.system)
|
|
})
|
|
.flat()
|
|
}),
|
|
})
|