Fix: conversation id display & support copy (#5195)
parent
ed53ef29f4
commit
e68d1b88de
@ -0,0 +1,50 @@
|
|||||||
|
'use client'
|
||||||
|
import React, { useState } from 'react'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
import { debounce } from 'lodash-es'
|
||||||
|
import copy from 'copy-to-clipboard'
|
||||||
|
import TooltipPlus from '../tooltip-plus'
|
||||||
|
import { Clipboard, ClipboardCheck } from '@/app/components/base/icons/src/vender/line/files'
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
content: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const prefixEmbedded = 'appOverview.overview.appInfo.embedded'
|
||||||
|
|
||||||
|
export const CopyIcon = ({ content }: Props) => {
|
||||||
|
const { t } = useTranslation()
|
||||||
|
const [isCopied, setIsCopied] = useState<boolean>(false)
|
||||||
|
|
||||||
|
const onClickCopy = debounce(() => {
|
||||||
|
copy(content)
|
||||||
|
setIsCopied(true)
|
||||||
|
}, 100)
|
||||||
|
|
||||||
|
const onMouseLeave = debounce(() => {
|
||||||
|
setIsCopied(false)
|
||||||
|
}, 100)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<TooltipPlus
|
||||||
|
popupContent={
|
||||||
|
(isCopied
|
||||||
|
? t(`${prefixEmbedded}.copied`)
|
||||||
|
: t(`${prefixEmbedded}.copy`)) || ''
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<div onMouseLeave={onMouseLeave}>
|
||||||
|
{!isCopied
|
||||||
|
? (
|
||||||
|
<Clipboard className='mx-1 w-3 h-3 text-gray-500 cursor-pointer' onClick={onClickCopy} />
|
||||||
|
)
|
||||||
|
: (
|
||||||
|
<ClipboardCheck className='mx-1 w-3 h-3 text-gray-500' />
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</TooltipPlus>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CopyIcon
|
||||||
Loading…
Reference in New Issue