wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use client'
import React, { useEffect, useState } from 'react'
import copy from 'copy-to-clipboard'
import { t } from 'i18next'
import Tooltip from '@/app/components/base/tooltip'
import CopyFeedback from '@/app/components/base/copy-feedback'
 
type IInputCopyProps = {
  value?: string
  className?: string
  children?: React.ReactNode
}
 
const InputCopy = ({
  value = '',
  className,
  children,
}: IInputCopyProps) => {
  const [isCopied, setIsCopied] = useState(false)
 
  useEffect(() => {
    if (isCopied) {
      const timeout = setTimeout(() => {
        setIsCopied(false)
      }, 1000)
 
      return () => {
        clearTimeout(timeout)
      }
    }
  }, [isCopied])
 
  return (
    <div className={`flex items-center rounded-lg bg-components-input-bg-normal py-2 hover:bg-state-base-hover ${className}`}>
      <div className="flex h-5 grow items-center">
        {children}
        <div className='relative h-full grow text-[13px]'>
          <div className='r-0 absolute left-0 top-0 w-full cursor-pointer truncate pl-2 pr-2' onClick={() => {
            copy(value)
            setIsCopied(true)
          }}>
            <Tooltip
              popupContent={isCopied ? `${t('appApi.copied')}` : `${t('appApi.copy')}`}
              position='bottom'
            >
              <span className='text-text-secondary'>{value}</span>
            </Tooltip>
          </div>
        </div>
        <div className="h-4 w-px shrink-0 bg-divider-regular" />
        <div className='mx-1'><CopyFeedback content={value} /></div>
      </div>
    </div>
  )
}
 
export default InputCopy