2024-02-05 11:57:10 +07:00
|
|
|
import { i18n } from "../i18n"
|
2024-02-12 01:57:24 +07:00
|
|
|
import { FullSlug, joinSegments, pathToRoot } from "../util/path"
|
2023-08-17 12:04:15 +07:00
|
|
|
import { JSResourceToScriptElement } from "../util/resources"
|
2024-02-14 11:53:44 +07:00
|
|
|
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
2023-05-30 22:02:20 +07:00
|
|
|
|
2023-07-03 03:08:29 +07:00
|
|
|
export default (() => {
|
2024-02-14 11:53:44 +07:00
|
|
|
const Head: QuartzComponent = ({ cfg, fileData, externalResources }: QuartzComponentProps) => {
|
2024-02-05 11:57:10 +07:00
|
|
|
const title = fileData.frontmatter?.title ?? i18n(cfg.locale).propertyDefaults.title
|
2024-02-04 10:55:24 +07:00
|
|
|
const description =
|
2024-02-05 11:57:10 +07:00
|
|
|
fileData.description?.trim() ?? i18n(cfg.locale).propertyDefaults.description
|
2023-06-19 00:47:07 +07:00
|
|
|
const { css, js } = externalResources
|
2023-09-13 11: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-20 06:40:02 +07:00
|
|
|
const iconPath = joinSegments(baseDir, "static/icon.png")
|
2023-08-09 10:36:24 +07:00
|
|
|
const ogImagePath = `https://${cfg.baseUrl}/static/og-image.png`
|
2023-06-19 00:47:07 +07:00
|
|
|
|
2023-07-23 07:27:41 +07:00
|
|
|
return (
|
|
|
|
<head>
|
|
|
|
<title>{title}</title>
|
|
|
|
<meta charSet="utf-8" />
|
2024-02-18 01:34:46 +07:00
|
|
|
{cfg.theme.cdnCaching && (
|
|
|
|
<>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
|
|
</>
|
|
|
|
)}
|
2023-07-24 01:02:45 +07:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2023-07-23 07:27:41 +07:00
|
|
|
<meta property="og:title" content={title} />
|
2023-08-09 10:36:24 +07:00
|
|
|
<meta property="og:description" content={description} />
|
|
|
|
{cfg.baseUrl && <meta property="og:image" content={ogImagePath} />}
|
2023-07-23 07: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-19 00:47:07 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
return Head
|
|
|
|
}) satisfies QuartzComponentConstructor
|