Skip to content

Commit d342559

Browse files
authored
feat: copy address icon transition to check mark after clicking on it (#140)
1 parent 5986748 commit d342559

File tree

3 files changed

+28
-13
lines changed

3 files changed

+28
-13
lines changed

packages/circle-react-elements/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@circle-libs/react-elements",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "React components compatible with Circle SDK",
55
"keywords": [
66
"react",

packages/circle-react-elements/src/NextJsGuide.mdx

+15-6
Original file line numberDiff line numberDiff line change
@@ -613,12 +613,21 @@ Update the wallet set list page at `src/app/page.tsx` by including a link to the
613613
// Add the following import
614614
import Link from 'next/link';
615615

616-
// Extend the WalletSetDetails component with a link to the wallet set page
617-
<WalletSetDetails walletSet={walletSet}>
618-
<Link href={`/wallets/${walletSet.id}`} className="text-blue-500 hover:underline">
619-
Show Wallets
620-
</Link>
621-
</WalletSetDetails>;
616+
// Update the WalletSets component
617+
export default function WalletSets() {
618+
// Existing code
619+
620+
return (
621+
// Existing code
622+
623+
// Extend the WalletSetDetails component with a link to the wallet set page
624+
<WalletSetDetails walletSet={walletSet}>
625+
<Link href={`/wallets/${walletSet.id}`} className="text-blue-500 hover:underline">
626+
Show Wallets
627+
</Link>
628+
</WalletSetDetails>
629+
);
630+
}
622631
```
623632

624633
And that's it! You've successfully implemented wallet creation and listing within a wallet set. Go back to your development server and navigate to the wallet set page to see the new features in action.

packages/circle-react-elements/src/components/WalletDetails/WalletDetails.tsx

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { AccountType } from '@circle-fin/developer-controlled-wallets';
22
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';
55

66
import { Badge } from '~/components/ui/badge';
77
import { Button } from '~/components/ui/button';
@@ -52,17 +52,19 @@ const ACCOUNT_TYPE_TO_TEXT: Record<AccountType, string> = {
5252
* - Displays shortened wallet address with copy button
5353
* - Shows blockchain network with icon
5454
* - 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)
5855
* - Full address available in tooltip
5956
*/
6057
export function WalletDetails({ wallet, onAddressCopy, children }: WalletDetailsProps) {
6158
const shortAddress = useMemo(() => shortenAddress(wallet.address), [wallet]);
6259
const walletImage = useMemo(() => makeBlockie(wallet.address), [wallet]);
60+
const [copied, setCopied] = useState(false);
6361

6462
const copyToClipboard = () => {
6563
void navigator.clipboard.writeText(wallet.address);
64+
setCopied(true);
65+
66+
setTimeout(() => setCopied(false), 2000); // Reset after 2 seconds
67+
6668
if (typeof onAddressCopy === 'function') {
6769
onAddressCopy(wallet.address);
6870
}
@@ -88,7 +90,11 @@ export function WalletDetails({ wallet, onAddressCopy, children }: WalletDetails
8890
</span>
8991

9092
<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+
)}
9298
</Button>
9399
</p>
94100

0 commit comments

Comments
 (0)