Files
web/apps/scandic-web/components/Header/TopMenu/index.tsx
Chuma Mcphoy (We Ahead) 27aef3982e Merged in fix/LOY-222-find-my-booking-urls-for-prod (pull request #1817)
Fix(LOY-222): Find my booking url handling

* fix(LOY-222): adapt findMyBooking url based on HIDE_FOR_NEXT_RELEASE

* feat(LOY-222): add current web paths for findMyBooking in multiple languages

* refactor(LOY-222): better env and new url constructions

* refactor(LOY-222): decouple env var handling from getCurrentWebUrl

* fix(LOY-222): update findMyBooking URL construction to use baseUrl

* fix(LOY-222): simplify findMyBooking URL handling for new web urls

* fix(LOY-222): Update Finnish path for hotel reservation lookup

* refactor(LOY-222): rename PUBLIC_URL to NEXT_PUBLIC_PUBLIC_URL for consistency


Approved-by: Christian Andolf
Approved-by: Linus Flood
2025-04-22 07:03:23 +00:00

77 lines
2.2 KiB
TypeScript

import {
findMyBooking,
findMyBookingCurrentWebPath,
} from "@/constants/routes/findMyBooking"
import { env } from "@/env/server"
import { getHeader } from "@/lib/trpc/memoizedRequests"
import { auth } from "@/auth"
import { IconName } from "@/components/Icons/iconName"
import LanguageSwitcher from "@/components/LanguageSwitcher"
import SkeletonShimmer from "@/components/SkeletonShimmer"
import Caption from "@/components/TempDesignSystem/Text/Caption"
import { getIntl } from "@/i18n"
import { getLang } from "@/i18n/serverContext"
import { isValidSession } from "@/utils/session"
import { getCurrentWebUrl } from "@/utils/url"
import HeaderLink from "../HeaderLink"
import TopLink from "../TopLink"
import styles from "./topMenu.module.css"
export default async function TopMenu() {
// cached
const intl = await getIntl()
// both preloaded
const header = await getHeader()
const session = await auth()
const isLoggedIn = isValidSession(session)
if (!header) {
return null
}
const lang = getLang()
const baseUrl = env.PUBLIC_URL || "https://www.scandichotels.com"
const findMyBookingUrl = env.HIDE_FOR_NEXT_RELEASE
? getCurrentWebUrl({
path: findMyBookingCurrentWebPath[lang],
lang,
baseUrl,
})
: findMyBooking[lang]
return (
<div className={styles.topMenu}>
<div className={styles.content}>
<TopLink isLoggedIn={isLoggedIn} topLink={header.data.topLink} />
<div className={styles.options}>
<LanguageSwitcher type="desktopHeader" />
<Caption type="regular" color="textMediumContrast" asChild>
<HeaderLink href={findMyBookingUrl} iconName={IconName.Search}>
{intl.formatMessage({
defaultMessage: "Find booking",
})}
</HeaderLink>
</Caption>
</div>
</div>
</div>
)
}
export function TopMenuSkeleton() {
return (
<div className={styles.topMenu}>
<div className={styles.content}>
<SkeletonShimmer width="11ch" height="1.2em" />
<div className={styles.options}>
<SkeletonShimmer width="25ch" height="1.2em" />
</div>
</div>
</div>
)
}