copy id of tool node
parent
061eada8c5
commit
f0c89fe4e5
@ -0,0 +1,48 @@
|
|||||||
|
'use client'
|
||||||
|
import React, { useState } from 'react'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
import { RiFileCopyLine } from '@remixicon/react'
|
||||||
|
import copy from 'copy-to-clipboard'
|
||||||
|
import { debounce } from 'lodash-es'
|
||||||
|
import Tooltip from '@/app/components/base/tooltip'
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
content: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const prefixEmbedded = 'appOverview.overview.appInfo.embedded'
|
||||||
|
|
||||||
|
const CopyFeedbackNew = ({ 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 (
|
||||||
|
<div className='group flex items-center gap-0.5 pb-0.5' onClick={e => e.stopPropagation()}>
|
||||||
|
<Tooltip
|
||||||
|
popupContent={
|
||||||
|
(isCopied
|
||||||
|
? t(`${prefixEmbedded}.copied`)
|
||||||
|
: t(`${prefixEmbedded}.copy`)) || ''
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className='system-2xs-regular cursor-pointer text-text-quaternary group-hover:text-text-tertiary'
|
||||||
|
onClick={onClickCopy}
|
||||||
|
onMouseLeave={onMouseLeave}
|
||||||
|
>{content}</div>
|
||||||
|
</Tooltip>
|
||||||
|
<RiFileCopyLine className='hidden h-3 w-3 text-text-tertiary group-hover:block' />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CopyFeedbackNew
|
||||||
Loading…
Reference in New Issue