-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: conversation id display & support copy (#5195)
- Loading branch information
Showing
2 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |