fix: break out content type uid fetch to utils function

This commit is contained in:
Christel Westerberg
2024-04-29 10:49:19 +02:00
parent af96964fb2
commit 9f0b044daa
5 changed files with 68 additions and 64 deletions

View File

@@ -1,40 +1,13 @@
import { DocumentNode } from "graphql"
import { NextResponse } from "next/server"
import { findLang } from "@/constants/languages"
import { env } from "@/env/server"
import GetContentTypeUid from "@/lib/graphql/Query/ContentTypeUid.graphql"
import { getContentTypeByPathName, PageTypeEnum } from "@/utils/contentType"
import type { NextMiddleware } from "next/server"
import { MiddlewareMatcher } from "@/types/middleware"
enum PageTypeEnum {
CurrentBlocksPage = "CurrentBlocksPage",
LoyaltyPage = "LoyaltyPage",
ContentPage = "contentPage",
}
type GetContentTypeUidType = {
all_content_page: {
items: {
__typename: PageTypeEnum.ContentPage
}[]
}
all_loyalty_page: {
items: {
__typename: PageTypeEnum.LoyaltyPage
}[]
}
all_current_blocks_page: {
items: {
__typename?: PageTypeEnum.CurrentBlocksPage
}[]
}
}
type PageType = keyof typeof PageTypeEnum
export const middleware: NextMiddleware = async (request) => {
const { nextUrl } = request
const lang = findLang(nextUrl.pathname)
@@ -42,28 +15,7 @@ export const middleware: NextMiddleware = async (request) => {
const pathNameWithoutLang = nextUrl.pathname.replace(`/${lang}`, "")
const searchParams = new URLSearchParams(request.nextUrl.searchParams)
const print = (await import("graphql/language/printer")).print
const result = await fetch(env.CMS_URL, {
method: "POST",
headers: {
access_token: env.CMS_ACCESS_TOKEN,
"Content-Type": "application/json",
},
body: JSON.stringify({
query: print(GetContentTypeUid as DocumentNode),
variables: {
locale: lang,
url: pathNameWithoutLang,
},
}),
})
const pageTypeData = await result.json()
const pageType = pageTypeData.data as GetContentTypeUidType
const contentType = Object.values(pageType)
.map((val) => val.items[0])
.find((item) => item?.__typename)?.__typename
const contentType = await getContentTypeByPathName(pathNameWithoutLang, lang)
if (request.nextUrl.pathname.includes("preview")) {
searchParams.set("uri", pathNameWithoutLang.replace("/preview", ""))
@@ -85,6 +37,10 @@ export const middleware: NextMiddleware = async (request) => {
return NextResponse.rewrite(
new URL(`/${lang}/loyalty-page?${searchParams.toString()}`, nextUrl)
)
// case PageTypeEnum.ContentPage:
// return NextResponse.rewrite(
// new URL(`/${lang}/content-page?${searchParams.toString()}`, nextUrl)
// )
default:
return NextResponse.next()
}