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
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
import {
|
|
findMyBooking,
|
|
findMyBookingCurrentWebPath,
|
|
} from "@scandic-hotels/common/constants/routes/findMyBooking"
|
|
|
|
import { env } from "@/env/server"
|
|
import { getHeader } from "@/lib/trpc/memoizedRequests"
|
|
|
|
import { IconName } from "@/components/Icons/iconName"
|
|
import LanguageSwitcher from "@/components/LanguageSwitcher"
|
|
import SkeletonShimmer from "@/components/SkeletonShimmer"
|
|
import { getIntl } from "@/i18n"
|
|
import { getLang } from "@/i18n/serverContext"
|
|
import { isLoggedInUser } from "@/utils/isLoggedInUser"
|
|
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 isLoggedIn = await isLoggedInUser()
|
|
|
|
if (!header) {
|
|
return null
|
|
}
|
|
|
|
const lang = await getLang()
|
|
const baseUrl = env.PUBLIC_URL || "https://www.scandichotels.com"
|
|
const findMyBookingUrl = !env.isLangLive(lang)
|
|
? 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" />
|
|
|
|
<HeaderLink href={findMyBookingUrl} iconName={IconName.Search}>
|
|
{intl.formatMessage({
|
|
defaultMessage: "Find booking",
|
|
})}
|
|
</HeaderLink>
|
|
</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>
|
|
)
|
|
}
|