import React, { useState } from 'react' 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' import { useIsClient } from 'web/hooks/use-is-client' export function CopyLinkDateTimeComponent(props: { prefix: string slug: string createdTime: number elementId: string className?: string }) { const { prefix, slug, elementId, createdTime, className } = props const isClient = useIsClient() const [showToast, setShowToast] = useState(false) function copyLinkToComment( event: React.MouseEvent ) { event.preventDefault() const commentUrl = new URL(window.location.href) commentUrl.pathname = `/${prefix}/${slug}` commentUrl.hash = elementId copyToClipboard(commentUrl.toString()) setShowToast(true) setTimeout(() => setShowToast(false), 2000) } return ( {isClient && fromNow(createdTime)} {showToast && } ) }