rsnext/packages/next/shared/lib/router/utils/parse-next-url.ts

55 lines
1.5 KiB
TypeScript
Raw Normal View History

import { getCookieParser } from '../../../../server/api-utils'
import { getLocaleMetadata } from '../../i18n/get-locale-metadata'
import { parseUrl } from './parse-url'
import type { NextConfig, DomainLocale } from '../../../../server/config-shared'
import type { ParsedUrl } from './parse-url'
import type { PathLocale } from '../../i18n/normalize-locale-path'
import { hasBasePath, replaceBasePath } from '../../../../server/router-utils'
interface Params {
headers?: { [key: string]: string | string[] | undefined }
nextConfig: NextConfig
url?: string
}
export function parseNextUrl({ headers, nextConfig, url = '/' }: Params) {
const urlParsed: ParsedNextUrl = parseUrl(url)
const { basePath } = nextConfig
if (basePath && hasBasePath(urlParsed.pathname, basePath)) {
urlParsed.pathname = replaceBasePath(urlParsed.pathname, basePath)
urlParsed.basePath = basePath
}
if (nextConfig.i18n) {
urlParsed.locale = getLocaleMetadata({
cookies: getCookieParser(headers || {}),
headers: headers,
nextConfig: {
basePath: nextConfig.basePath,
i18n: nextConfig.i18n,
trailingSlash: nextConfig.trailingSlash,
},
url: urlParsed,
})
if (urlParsed.locale?.path.detectedLocale) {
urlParsed.pathname = urlParsed.locale.path.pathname
}
}
return urlParsed
}
export interface ParsedNextUrl extends ParsedUrl {
basePath?: string
locale?: {
defaultLocale: string
domain?: DomainLocale
locale: string
path: PathLocale
redirect?: string
trailingSlash?: boolean
}
}