aboutsummaryrefslogtreecommitdiff
path: root/src/utils/schemas/pageSchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/schemas/pageSchema.ts')
-rw-r--r--src/utils/schemas/pageSchema.ts43
1 files changed, 28 insertions, 15 deletions
diff --git a/src/utils/schemas/pageSchema.ts b/src/utils/schemas/pageSchema.ts
index 606488b..ba8fd86 100644
--- a/src/utils/schemas/pageSchema.ts
+++ b/src/utils/schemas/pageSchema.ts
@@ -1,23 +1,36 @@
-import type { WithContext, WebPage } from "schema-dts";
+import type { ProfilePage, WebPage } from "schema-dts";
+import { personId, websiteId } from "./ids";
export type WebsiteSchemaParams = {
readonly description: string;
+ readonly lang: string;
+ readonly mainEntityId?: string;
readonly page: string;
readonly siteUrl: string;
readonly title: string;
- readonly lang: string;
+ readonly type?: "WebPage" | "ProfilePage";
};
-export default ({ siteUrl, page, title, description, lang }: WebsiteSchemaParams): WithContext<WebPage> => ({
- "@context": "https://schema.org",
- "@type": "WebPage",
- "@id": new URL(page, siteUrl).toString(),
- "url": new URL(page, siteUrl).toString(),
- "name": title,
- "description": description,
- "inLanguage": lang,
- "mainEntity": {
- "@type": "WebSite",
- "@id": new URL("/", siteUrl).toString(),
- },
-});
+export default ({ siteUrl, page, title, description, lang, type = "WebPage", mainEntityId }: WebsiteSchemaParams): WebPage | ProfilePage => {
+ const url = new URL(page, siteUrl).toString();
+
+ const base = {
+ "@type": type,
+ "@id": url,
+ "url": url,
+ "name": title,
+ "description": description,
+ "inLanguage": lang,
+ "isPartOf": { "@id": websiteId(siteUrl) },
+ } as const;
+
+ if (type === "ProfilePage") {
+ return {
+ ...base,
+ "@type": "ProfilePage",
+ "mainEntity": { "@id": mainEntityId ?? personId(siteUrl) },
+ };
+ }
+
+ return base;
+};