2024-02-04 20:57:10 -08:00
|
|
|
import { i18n } from "../i18n"
|
2024-02-11 10:57:24 -08:00
|
|
|
import { FullSlug, joinSegments, pathToRoot } from "../util/path"
|
2023-08-16 22:04:15 -07:00
|
|
|
import { JSResourceToScriptElement } from "../util/resources"
|
2024-03-10 00:42:23 +00:00
|
|
|
import { googleFontHref } from "../util/theme"
|
2024-02-13 23:53:44 -05:00
|
|
|
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
2023-05-30 08:02:20 -07:00
|
|
|
|
2023-07-02 13:08:29 -07:00
|
|
|
export default (() => {
|
2024-02-13 23:53:44 -05:00
|
|
|
const Head: QuartzComponent = ({ cfg, fileData, externalResources }: QuartzComponentProps) => {
|
2024-02-04 20:57:10 -08:00
|
|
|
const title = fileData.frontmatter?.title ?? i18n(cfg.locale).propertyDefaults.title
|
2024-02-04 04:55:24 +01:00
|
|
|
const description =
|
2024-02-04 20:57:10 -08:00
|
|
|
fileData.description?.trim() ?? i18n(cfg.locale).propertyDefaults.description
|
2023-06-18 10:47:07 -07:00
|
|
|
const { css, js } = externalResources
|
2023-09-12 21:29:57 -07:00
|
|
|
|
|
|
|
const url = new URL(`https://${cfg.baseUrl ?? "example.com"}`)
|
|
|
|
const path = url.pathname as FullSlug
|
|
|
|
const baseDir = fileData.slug === "404" ? path : pathToRoot(fileData.slug!)
|
|
|
|
|
2023-08-19 16:40:02 -07:00
|
|
|
const iconPath = joinSegments(baseDir, "static/icon.png")
|
2023-08-08 20:36:24 -07:00
|
|
|
const ogImagePath = `https://${cfg.baseUrl}/static/og-image.png`
|
2023-06-18 10:47:07 -07:00
|
|
|
|
2023-07-22 17:27:41 -07:00
|
|
|
return (
|
|
|
|
<head>
|
|
|
|
<title>{title}</title>
|
|
|
|
<meta charSet="utf-8" />
|
2024-03-10 00:42:23 +00:00
|
|
|
{cfg.theme.cdnCaching && cfg.theme.fontOrigin === "googleFonts" && (
|
2024-02-17 10:34:46 -08:00
|
|
|
<>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
2024-03-10 00:42:23 +00:00
|
|
|
<link rel="stylesheet" href={googleFontHref(cfg.theme)} />
|
2024-02-17 10:34:46 -08:00
|
|
|
</>
|
|
|
|
)}
|
2023-07-23 11:02:45 -07:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2023-07-22 17:27:41 -07:00
|
|
|
<meta property="og:title" content={title} />
|
2023-08-08 20:36:24 -07:00
|
|
|
<meta property="og:description" content={description} />
|
|
|
|
{cfg.baseUrl && <meta property="og:image" content={ogImagePath} />}
|
2023-07-22 17:27:41 -07:00
|
|
|
<meta property="og:width" content="1200" />
|
|
|
|
<meta property="og:height" content="675" />
|
|
|
|
<link rel="icon" href={iconPath} />
|
|
|
|
<meta name="description" content={description} />
|
|
|
|
<meta name="generator" content="Quartz" />
|
|
|
|
{css.map((href) => (
|
|
|
|
<link key={href} href={href} rel="stylesheet" type="text/css" spa-preserve />
|
|
|
|
))}
|
|
|
|
{js
|
|
|
|
.filter((resource) => resource.loadTime === "beforeDOMReady")
|
|
|
|
.map((res) => JSResourceToScriptElement(res, true))}
|
|
|
|
</head>
|
|
|
|
)
|
2023-06-18 10:47:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return Head
|
|
|
|
}) satisfies QuartzComponentConstructor
|