54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import { Fragment } from 'react'
|
|
import { LinkIcon } from '@heroicons/react/outline'
|
|
import { Menu, Transition } from '@headlessui/react'
|
|
import clsx from 'clsx'
|
|
import { Contract } from '../../common/contract'
|
|
import { copyToClipboard } from '../lib/util/copy'
|
|
import { contractPath } from '../lib/firebase/contracts'
|
|
import { ENV_CONFIG } from '../../common/envs/constants'
|
|
|
|
function copyContractUrl(contract: Contract) {
|
|
copyToClipboard(`https://${ENV_CONFIG.domain}${contractPath(contract)}`)
|
|
}
|
|
|
|
export function CopyLinkButton(props: {
|
|
contract: Contract
|
|
buttonClassName?: string
|
|
}) {
|
|
const { contract, buttonClassName } = props
|
|
|
|
return (
|
|
<Menu
|
|
as="div"
|
|
className="relative z-10 flex-shrink-0"
|
|
onMouseUp={() => copyContractUrl(contract)}
|
|
>
|
|
<Menu.Button
|
|
className={clsx(
|
|
'btn btn-xs border-2 border-green-600 bg-white normal-case text-green-600 hover:border-green-600 hover:bg-white',
|
|
buttonClassName
|
|
)}
|
|
>
|
|
<LinkIcon className="mr-1.5 h-4 w-4" aria-hidden="true" />
|
|
Copy link
|
|
</Menu.Button>
|
|
|
|
<Transition
|
|
as={Fragment}
|
|
enter="transition ease-out duration-100"
|
|
enterFrom="transform opacity-0 scale-95"
|
|
enterTo="transform opacity-100 scale-100"
|
|
leave="transition ease-in duration-75"
|
|
leaveFrom="transform opacity-100 scale-100"
|
|
leaveTo="transform opacity-0 scale-95"
|
|
>
|
|
<Menu.Items className="origin-top-center absolute left-0 mt-2 w-40 rounded-md bg-white py-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none">
|
|
<Menu.Item>
|
|
<div className="px-2 py-1">Link copied!</div>
|
|
</Menu.Item>
|
|
</Menu.Items>
|
|
</Transition>
|
|
</Menu>
|
|
)
|
|
}
|