2022-05-17 15:55:26 +00:00
|
|
|
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'
|
2022-06-01 18:26:41 +00:00
|
|
|
import clsx from 'clsx'
|
2022-05-17 15:55:26 +00:00
|
|
|
|
|
|
|
export function CopyLinkDateTimeComponent(props: {
|
2022-06-22 16:35:50 +00:00
|
|
|
prefix: string
|
|
|
|
slug: string
|
2022-05-17 15:55:26 +00:00
|
|
|
createdTime: number
|
|
|
|
elementId: string
|
2022-06-01 18:26:41 +00:00
|
|
|
className?: string
|
2022-05-17 15:55:26 +00:00
|
|
|
}) {
|
2022-06-22 16:35:50 +00:00
|
|
|
const { prefix, slug, elementId, createdTime, className } = props
|
2022-05-17 15:55:26 +00:00
|
|
|
const [showToast, setShowToast] = useState(false)
|
|
|
|
|
|
|
|
function copyLinkToComment(
|
|
|
|
event: React.MouseEvent<HTMLAnchorElement, MouseEvent>
|
|
|
|
) {
|
|
|
|
event.preventDefault()
|
2022-06-22 16:35:50 +00:00
|
|
|
const elementLocation = `https://${ENV_CONFIG.domain}/${prefix}/${slug}#${elementId}`
|
2022-05-17 15:55:26 +00:00
|
|
|
|
2022-05-25 22:47:08 +00:00
|
|
|
copyToClipboard(elementLocation)
|
2022-05-17 15:55:26 +00:00
|
|
|
setShowToast(true)
|
|
|
|
setTimeout(() => setShowToast(false), 2000)
|
|
|
|
}
|
|
|
|
return (
|
2022-06-01 18:26:41 +00:00
|
|
|
<div className={clsx('inline', className)}>
|
2022-05-17 15:55:26 +00:00
|
|
|
<DateTimeTooltip time={createdTime}>
|
2022-06-22 16:35:50 +00:00
|
|
|
<Link href={`/${prefix}/${slug}#${elementId}`} passHref={true}>
|
2022-05-17 15:55:26 +00:00
|
|
|
<a
|
|
|
|
onClick={(event) => copyLinkToComment(event)}
|
|
|
|
className={'mx-1 cursor-pointer'}
|
|
|
|
>
|
|
|
|
<span className="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-block text-gray-400"
|
|
|
|
height={13}
|
|
|
|
/>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
</DateTimeTooltip>
|
2022-06-01 18:26:41 +00:00
|
|
|
</div>
|
2022-05-17 15:55:26 +00:00
|
|
|
)
|
|
|
|
}
|