manifold/web/components/SEO.tsx

80 lines
1.9 KiB
TypeScript
Raw Normal View History

2021-12-16 18:40:23 +00:00
import Head from 'next/head'
export type OgCardProps = {
question: string
probability: string
metadata: string
creatorName: string
creatorUsername: string
// TODO: Store creator avatar url in each contract, then enable this
// creatorAvatarUrl: string
}
function buildCardUrl(props: OgCardProps) {
// URL encode each of the props, then add them as query params
return (
`https://manifold-og-image.vercel.app/m.png` +
`?question=${encodeURIComponent(props.question)}` +
`&probability=${encodeURIComponent(props.probability)}` +
`&metadata=${encodeURIComponent(props.metadata)}` +
`&creatorName=${encodeURIComponent(props.creatorName)}` +
`&creatorUsername=${encodeURIComponent(props.creatorUsername)}`
)
}
2021-12-16 18:40:23 +00:00
export function SEO(props: {
title: string
description: string
url?: string
children?: any[]
ogCardProps?: OgCardProps
2021-12-16 18:40:23 +00:00
}) {
const { title, description, url, children, ogCardProps } = props
2021-12-16 18:40:23 +00:00
return (
<Head>
<title>{title} | Manifold Markets</title>
2021-12-16 18:40:23 +00:00
<meta
property="og:title"
name="twitter:title"
content={title}
key="title"
/>
<meta name="description" content={description} key="description1" />
<meta
property="og:description"
name="twitter:description"
content={description}
key="description2"
/>
{url && (
<meta
property="og:url"
content={'https://manifold.markets' + url}
2021-12-16 18:40:23 +00:00
key="url"
/>
)}
{ogCardProps && (
<>
<meta
property="og:image"
content={buildCardUrl(ogCardProps)}
key="image1"
/>
<meta name="twitter:card" content="summary_large_image" key="card" />
<meta
name="twitter:image"
content={buildCardUrl(ogCardProps)}
key="image2"
/>
</>
)}
2021-12-16 18:40:23 +00:00
{children}
</Head>
)
}