mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 12:23:35 -05:00
1033e73844
[web] BS5 table generator GitOrigin-RevId: 3fe10c05fa36f026c47ff4f54b15f5d76f7c509e
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import { memo, useCallback, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import OLButton from '@/features/ui/components/ol/ol-button'
|
|
import OLTooltip from '@/features/ui/components/ol/ol-tooltip'
|
|
import OLIconButton from '@/features/ui/components/ol/ol-icon-button'
|
|
import { bsVersion } from '@/features/utils/bootstrap-5'
|
|
|
|
export const CopyToClipboard = memo<{
|
|
content: string
|
|
tooltipId: string
|
|
kind?: 'text' | 'icon'
|
|
}>(({ content, tooltipId, kind = 'icon' }) => {
|
|
const { t } = useTranslation()
|
|
|
|
const [copied, setCopied] = useState(false)
|
|
|
|
const handleClick = useCallback(() => {
|
|
navigator.clipboard.writeText(content).then(() => {
|
|
setCopied(true)
|
|
window.setTimeout(() => {
|
|
setCopied(false)
|
|
}, 1500)
|
|
})
|
|
}, [content])
|
|
|
|
if (!navigator.clipboard?.writeText) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<OLTooltip
|
|
id={tooltipId}
|
|
description={copied ? `${t('copied')}!` : t('copy')}
|
|
overlayProps={{ delay: copied ? 1000 : 250 }}
|
|
>
|
|
{kind === 'text' ? (
|
|
<OLButton
|
|
onClick={handleClick}
|
|
size="sm"
|
|
variant="secondary"
|
|
className="copy-button"
|
|
bs3Props={{ bsSize: 'xsmall' }}
|
|
>
|
|
{t('copy')}
|
|
</OLButton>
|
|
) : (
|
|
<OLIconButton
|
|
onClick={handleClick}
|
|
variant="link"
|
|
size="sm"
|
|
accessibilityLabel={t('copy')}
|
|
className="copy-button"
|
|
bs3Props={{ bsSize: 'xsmall' }}
|
|
icon={bsVersion({
|
|
bs5: copied ? 'check' : 'content_copy',
|
|
bs3: copied ? 'check' : 'clipboard',
|
|
})}
|
|
/>
|
|
)}
|
|
</OLTooltip>
|
|
)
|
|
})
|
|
CopyToClipboard.displayName = 'CopyToClipboard'
|