2021-10-13 11:35:25 +00:00
|
|
|
import merge from "lodash/merge";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { NextSeoProps } from "next-seo";
|
|
|
|
import { NextSeo } from "next-seo";
|
2023-01-30 12:54:07 +00:00
|
|
|
import { useRouter } from "next/router";
|
2022-10-18 17:46:22 +00:00
|
|
|
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { AppImageProps, MeetingImageProps } from "@calcom/lib/OgImages";
|
|
|
|
import { constructAppImage, constructGenericImage, constructMeetingImage } from "@calcom/lib/OgImages";
|
2022-11-08 07:36:59 +00:00
|
|
|
import { getBrowserInfo } from "@calcom/lib/browser/browser.utils";
|
2022-11-30 21:52:56 +00:00
|
|
|
import { APP_NAME } from "@calcom/lib/constants";
|
2023-01-05 12:04:28 +00:00
|
|
|
import { seoConfig, getSeoImage } from "@calcom/lib/next-seo.config";
|
2022-11-08 07:36:59 +00:00
|
|
|
import { truncateOnWord } from "@calcom/lib/text";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2021-08-27 12:35:20 +00:00
|
|
|
export type HeadSeoProps = {
|
|
|
|
title: string;
|
|
|
|
description: string;
|
|
|
|
siteName?: string;
|
|
|
|
url?: string;
|
|
|
|
canonical?: string;
|
|
|
|
nextSeoProps?: NextSeoProps;
|
2022-10-18 17:46:22 +00:00
|
|
|
app?: AppImageProps;
|
|
|
|
meeting?: MeetingImageProps;
|
2021-08-27 12:35:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build full seo tags from title, desc, canonical and url
|
|
|
|
*/
|
|
|
|
const buildSeoMeta = (pageProps: {
|
|
|
|
title: string;
|
|
|
|
description: string;
|
|
|
|
image: string;
|
|
|
|
siteName?: string;
|
|
|
|
url?: string;
|
|
|
|
canonical?: string;
|
|
|
|
}): NextSeoProps => {
|
|
|
|
const { title, description, image, canonical, siteName = seoConfig.headSeo.siteName } = pageProps;
|
|
|
|
return {
|
|
|
|
title: title,
|
|
|
|
canonical: canonical,
|
|
|
|
openGraph: {
|
|
|
|
site_name: siteName,
|
|
|
|
type: "website",
|
|
|
|
title: title,
|
|
|
|
description: description,
|
|
|
|
images: [
|
|
|
|
{
|
|
|
|
url: image,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
additionalMetaTags: [
|
|
|
|
{
|
|
|
|
property: "name",
|
|
|
|
content: title,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: "description",
|
|
|
|
content: description,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "description",
|
|
|
|
content: description,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
property: "image",
|
|
|
|
content: image,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-04-04 20:26:14 +00:00
|
|
|
export const HeadSeo = (props: HeadSeoProps): JSX.Element => {
|
2023-01-31 19:07:50 +00:00
|
|
|
// The below code sets the defaultUrl for our canonical tags
|
|
|
|
|
|
|
|
// Get the current URL from the window object
|
|
|
|
const url = getBrowserInfo()?.url;
|
|
|
|
// Check if the URL is from cal.com
|
|
|
|
const isCalcom = url && new URL(url).hostname.endsWith("cal.com");
|
|
|
|
// Get the router's path
|
|
|
|
const path = useRouter().asPath;
|
|
|
|
// Build the canonical URL using the router's path, without query parameters. Note: on homepage it omits the trailing slash
|
|
|
|
const calcomCanonical = `https://cal.com${path === "/" ? "" : path}`.split("?")[0];
|
|
|
|
// Set the default URL to either the current URL (if self-hosted) or https://cal.com canonical URL
|
|
|
|
const defaultUrl = isCalcom ? calcomCanonical : url;
|
2021-08-27 12:35:20 +00:00
|
|
|
|
2022-10-18 17:46:22 +00:00
|
|
|
const { title, description, siteName, canonical = defaultUrl, nextSeoProps = {}, app, meeting } = props;
|
|
|
|
|
2022-11-01 08:16:08 +00:00
|
|
|
const image = getSeoImage("ogImage") + constructGenericImage({ title, description });
|
|
|
|
const truncatedDescription = truncateOnWord(description, 158);
|
2022-11-30 21:52:56 +00:00
|
|
|
const pageTitle = title + " | " + APP_NAME;
|
2022-01-11 08:54:02 +00:00
|
|
|
let seoObject = buildSeoMeta({
|
|
|
|
title: pageTitle,
|
|
|
|
image,
|
|
|
|
description: truncatedDescription,
|
|
|
|
canonical,
|
|
|
|
siteName,
|
|
|
|
});
|
2021-08-27 12:35:20 +00:00
|
|
|
|
2022-10-18 17:46:22 +00:00
|
|
|
if (meeting) {
|
|
|
|
const pageImage = getSeoImage("ogImage") + constructMeetingImage(meeting);
|
|
|
|
seoObject = buildSeoMeta({
|
|
|
|
title: pageTitle,
|
|
|
|
description: truncatedDescription,
|
|
|
|
image: pageImage,
|
|
|
|
canonical,
|
|
|
|
siteName,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (app) {
|
|
|
|
const pageImage =
|
2022-11-01 08:16:08 +00:00
|
|
|
getSeoImage("ogImage") + constructAppImage({ ...app, description: truncatedDescription });
|
2022-01-11 08:54:02 +00:00
|
|
|
seoObject = buildSeoMeta({
|
|
|
|
title: pageTitle,
|
|
|
|
description: truncatedDescription,
|
|
|
|
image: pageImage,
|
|
|
|
canonical,
|
|
|
|
siteName,
|
|
|
|
});
|
2021-08-27 12:35:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const seoProps: NextSeoProps = merge(nextSeoProps, seoObject);
|
|
|
|
|
|
|
|
return <NextSeo {...seoProps} />;
|
|
|
|
};
|
2022-04-04 20:26:14 +00:00
|
|
|
|
|
|
|
export default HeadSeo;
|