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
123 lines
3.2 KiB
TypeScript
123 lines
3.2 KiB
TypeScript
import { getValueFromContactConfig } from "../../../utils/contactConfig"
|
|
|
|
import type { Edges } from "../../../types/edges"
|
|
import type { FooterRefDataRaw } from "../../../types/footer"
|
|
import type { HeaderRefs } from "../../../types/header"
|
|
import type { NodeRefs } from "../../../types/refs"
|
|
import type {
|
|
AlertOutput,
|
|
GetSiteConfigRefData,
|
|
} from "../../../types/siteConfig"
|
|
import type { System } from "../schemas/system"
|
|
import type { ContactConfig } from "./output"
|
|
|
|
export function getConnections({ header }: HeaderRefs) {
|
|
const connections: System["system"][] = [header.system]
|
|
|
|
if (header.top_link) {
|
|
if (header.top_link.logged_in?.link) {
|
|
connections.push(header.top_link.logged_in.link)
|
|
}
|
|
if (header.top_link.logged_out?.link) {
|
|
connections.push(header.top_link.logged_out.link)
|
|
}
|
|
}
|
|
|
|
if (header.menu_items.length) {
|
|
header.menu_items.forEach((menuItem) => {
|
|
if (menuItem.card) {
|
|
connections.push(...menuItem.card)
|
|
}
|
|
if (menuItem.link) {
|
|
connections.push(menuItem.link)
|
|
}
|
|
if (menuItem.see_all_link?.link) {
|
|
connections.push(menuItem.see_all_link.link)
|
|
}
|
|
if (menuItem.submenu.length) {
|
|
menuItem.submenu.forEach((subMenuItem) => {
|
|
if (subMenuItem.links.length) {
|
|
subMenuItem.links.forEach((link) => {
|
|
if (link?.link) {
|
|
connections.push(link.link)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
return connections
|
|
}
|
|
|
|
export function getFooterConnections(refs: FooterRefDataRaw) {
|
|
const connections: Edges<NodeRefs>[] = []
|
|
const footerData = refs.all_footer.items[0]
|
|
const mainLinks = footerData.main_links
|
|
const secondaryLinks = footerData.secondary_links
|
|
const tertiaryLinks = footerData.tertiary_links
|
|
if (mainLinks) {
|
|
mainLinks.forEach(({ pageConnection }) => {
|
|
connections.push(pageConnection)
|
|
})
|
|
}
|
|
secondaryLinks?.forEach(({ links }) => {
|
|
if (links) {
|
|
links.forEach(({ pageConnection }) => {
|
|
connections.push(pageConnection)
|
|
})
|
|
}
|
|
})
|
|
if (tertiaryLinks) {
|
|
tertiaryLinks.forEach(({ pageConnection }) => {
|
|
connections.push(pageConnection)
|
|
})
|
|
}
|
|
|
|
return connections
|
|
}
|
|
|
|
export function getSiteConfigConnections(refs: GetSiteConfigRefData) {
|
|
const siteConfigData = refs.all_site_config.items[0]
|
|
const connections: System["system"][] = []
|
|
|
|
if (!siteConfigData) return connections
|
|
|
|
const alertConnection = siteConfigData.sitewide_alert.alertConnection
|
|
|
|
alertConnection.edges.forEach(({ node }) => {
|
|
connections.push(node.system)
|
|
|
|
const link = node.link.link
|
|
if (link) {
|
|
connections.push(link)
|
|
}
|
|
node.sidepeek_content.content.embedded_itemsConnection.edges.forEach(
|
|
({ node }) => {
|
|
connections.push(node.system)
|
|
}
|
|
)
|
|
})
|
|
|
|
return connections
|
|
}
|
|
|
|
export function getAlertPhoneContactData(
|
|
alert: AlertOutput,
|
|
contactConfig: ContactConfig
|
|
) {
|
|
if (alert.phoneContact) {
|
|
const { displayText, phoneNumber, footnote } = alert.phoneContact
|
|
|
|
return {
|
|
displayText,
|
|
phoneNumber: getValueFromContactConfig(phoneNumber, contactConfig),
|
|
footnote: footnote
|
|
? getValueFromContactConfig(footnote, contactConfig)
|
|
: null,
|
|
}
|
|
}
|
|
return null
|
|
}
|