manifold/web/components/share-embed-button.tsx

48 lines
1.5 KiB
TypeScript
Raw Permalink Normal View History

import React from 'react'
2022-03-21 20:23:21 +00:00
import { CodeIcon } from '@heroicons/react/outline'
import toast from 'react-hot-toast'
import { Contract } from 'common/contract'
import { contractPath } from 'web/lib/firebase/contracts'
import { DOMAIN } from 'common/envs/constants'
import { copyToClipboard } from 'web/lib/util/copy'
import { track } from 'web/lib/service/analytics'
import { Button } from './button'
2022-03-21 20:23:21 +00:00
export function embedContractCode(contract: Contract) {
const title = contract.question
const src = `https://${DOMAIN}/embed${contractPath(contract)}`
return `<iframe src="${src}" title="${title}" frameborder="0"></iframe>`
}
2022-03-21 20:23:21 +00:00
// TODO: move this function elsewhere
export function embedContractGridCode(contracts: Contract[]) {
const height = (contracts.length - (contracts.length % 2)) * 100 + 'px'
const src = `https://${DOMAIN}/embed/grid/${contracts
.map((c) => c.slug)
.join('/')}`
return `<iframe height="${height}" src="${src}" title="Grid of contracts" frameborder="0"></iframe>`
}
2022-03-21 20:23:21 +00:00
export function ShareEmbedButton(props: { contract: Contract }) {
const { contract } = props
const codeIcon = <CodeIcon className="h-4 w-4" aria-hidden />
2022-03-21 20:23:21 +00:00
return (
<Button
size="2xs"
color="gray-outline"
className="gap-1"
onClick={() => {
copyToClipboard(embedContractCode(contract))
toast.success('Embed code copied!', { icon: codeIcon })
track('copy embed code')
}}
>
{codeIcon}
Embed
</Button>
2022-03-21 20:23:21 +00:00
)
}