manifold/web/components/feed/copy-link-date-time.tsx
2022-08-27 19:05:46 -07:00

47 lines
1.5 KiB
TypeScript

import React, { useState } from 'react'
import { ENV_CONFIG } from 'common/envs/constants'
import { copyToClipboard } from 'web/lib/util/copy'
import { DateTimeTooltip } from 'web/components/datetime-tooltip'
import Link from 'next/link'
import { fromNow } from 'web/lib/util/time'
import { ToastClipboard } from 'web/components/toast-clipboard'
import { LinkIcon } from '@heroicons/react/outline'
export function CopyLinkDateTimeComponent(props: {
prefix: string
slug: string
createdTime: number
elementId: string
className?: string
}) {
const { prefix, slug, elementId, createdTime, className } = props
const [showToast, setShowToast] = useState(false)
function copyLinkToComment(
event: React.MouseEvent<HTMLAnchorElement, MouseEvent>
) {
event.preventDefault()
const elementLocation = `https://${ENV_CONFIG.domain}/${prefix}/${slug}#${elementId}`
copyToClipboard(elementLocation)
setShowToast(true)
setTimeout(() => setShowToast(false), 2000)
}
return (
<DateTimeTooltip className={className} time={createdTime} noTap>
<Link href={`/${prefix}/${slug}#${elementId}`} passHref={true}>
<a
onClick={copyLinkToComment}
className={
'mx-1 whitespace-nowrap rounded-sm px-1 text-gray-400 hover:bg-gray-100'
}
>
{fromNow(createdTime)}
{showToast && <ToastClipboard className={'left-24 sm:-left-16'} />}
<LinkIcon className="ml-1 mb-0.5 inline" height={13} />
</a>
</Link>
</DateTimeTooltip>
)
}