2022-12-17 23:29:16 +00:00
|
|
|
import { pwaInfo } from 'virtual:pwa-info'
|
|
|
|
import type { Link } from '@unhead/schema'
|
2022-12-26 15:12:04 +00:00
|
|
|
import type { Directions } from 'vue-i18n-routing'
|
2022-12-28 03:50:29 +00:00
|
|
|
import { APP_NAME } from '~/constants'
|
2022-12-26 15:12:04 +00:00
|
|
|
import type { LocaleObject } from '#i18n'
|
2022-11-28 09:01:14 +00:00
|
|
|
|
2022-11-30 00:22:35 +00:00
|
|
|
export function setupPageHeader() {
|
2022-12-06 21:09:47 +00:00
|
|
|
const isDev = process.dev
|
|
|
|
const isPreview = useRuntimeConfig().public.env === 'staging'
|
|
|
|
|
2022-11-29 21:13:43 +00:00
|
|
|
const i18n = useI18n()
|
2022-11-30 00:22:35 +00:00
|
|
|
|
2022-12-17 23:29:16 +00:00
|
|
|
const link: Link[] = []
|
|
|
|
|
|
|
|
if (pwaInfo && pwaInfo.webManifest) {
|
|
|
|
const { webManifest } = pwaInfo
|
|
|
|
if (webManifest) {
|
|
|
|
const { href, useCredentials } = webManifest
|
|
|
|
if (useCredentials) {
|
|
|
|
link.push({
|
|
|
|
rel: 'manifest',
|
|
|
|
href,
|
|
|
|
crossorigin: 'use-credentials',
|
|
|
|
})
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
link.push({
|
|
|
|
rel: 'manifest',
|
|
|
|
href,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-26 15:12:04 +00:00
|
|
|
const localeMap = (i18n.locales.value as LocaleObject[]).reduce((acc, l) => {
|
2022-12-27 21:04:52 +00:00
|
|
|
acc[l.code!] = l.dir ?? 'auto'
|
2022-12-26 15:12:04 +00:00
|
|
|
return acc
|
|
|
|
}, {} as Record<string, Directions>)
|
|
|
|
|
2022-11-29 22:49:25 +00:00
|
|
|
useHeadFixed({
|
2022-11-29 21:13:43 +00:00
|
|
|
htmlAttrs: {
|
|
|
|
lang: () => i18n.locale.value,
|
2022-12-27 21:04:52 +00:00
|
|
|
dir: () => localeMap[i18n.locale.value] ?? 'auto',
|
2022-11-29 21:13:43 +00:00
|
|
|
},
|
2022-11-28 09:01:14 +00:00
|
|
|
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
2022-12-17 23:29:16 +00:00
|
|
|
link,
|
2022-11-28 09:01:14 +00:00
|
|
|
})
|
|
|
|
}
|