1
1
import { AccountType } from '@circle-fin/developer-controlled-wallets' ;
2
2
import makeBlockie from 'ethereum-blockies-base64' ;
3
- import { Copy } from 'lucide-react' ;
4
- import { useMemo } from 'react' ;
3
+ import { Check , Copy } from 'lucide-react' ;
4
+ import { useMemo , useState } from 'react' ;
5
5
6
6
import { Badge } from '~/components/ui/badge' ;
7
7
import { Button } from '~/components/ui/button' ;
@@ -52,17 +52,19 @@ const ACCOUNT_TYPE_TO_TEXT: Record<AccountType, string> = {
52
52
* - Displays shortened wallet address with copy button
53
53
* - Shows blockchain network with icon
54
54
* - Supports custom child components for extensibility
55
- * - Address clipboard copy with optional callback
56
- * - Responsive layout with consistent spacing
57
- * - Uses design system components (Badge, Button)
58
55
* - Full address available in tooltip
59
56
*/
60
57
export function WalletDetails ( { wallet, onAddressCopy, children } : WalletDetailsProps ) {
61
58
const shortAddress = useMemo ( ( ) => shortenAddress ( wallet . address ) , [ wallet ] ) ;
62
59
const walletImage = useMemo ( ( ) => makeBlockie ( wallet . address ) , [ wallet ] ) ;
60
+ const [ copied , setCopied ] = useState ( false ) ;
63
61
64
62
const copyToClipboard = ( ) => {
65
63
void navigator . clipboard . writeText ( wallet . address ) ;
64
+ setCopied ( true ) ;
65
+
66
+ setTimeout ( ( ) => setCopied ( false ) , 2000 ) ; // Reset after 2 seconds
67
+
66
68
if ( typeof onAddressCopy === 'function' ) {
67
69
onAddressCopy ( wallet . address ) ;
68
70
}
@@ -88,7 +90,11 @@ export function WalletDetails({ wallet, onAddressCopy, children }: WalletDetails
88
90
</ span >
89
91
90
92
< Button onClick = { copyToClipboard } variant = "ghost" size = "sm" >
91
- < Copy size = { 16 } strokeWidth = { 1 } />
93
+ { copied ? (
94
+ < Check size = { 16 } strokeWidth = { 1 } />
95
+ ) : (
96
+ < Copy size = { 16 } strokeWidth = { 1 } />
97
+ ) }
92
98
</ Button >
93
99
</ p >
94
100
0 commit comments