forked from smartcontractkit/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddressReact.tsx
66 lines (56 loc) · 1.75 KB
/
AddressReact.tsx
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
58
59
60
61
62
63
64
65
66
// This is a copy of the Preact Address component. This was required in the CCIP pages.
import { clsx } from "~/lib"
export type Props = {
contractUrl?: string
address?: string
endLength?: number
urlClass?: string
urlId?: string
eventName?: string
additionalInfo?: Record<string, string>
}
const AddressComponent = ({ contractUrl, address, endLength, urlClass, urlId }: Props) => {
address = address || contractUrl?.split("/").pop()
if (!address) return null
const handleClick = (e) => {
e.preventDefault()
if (address) navigator.clipboard.writeText(address)
}
return (
<span className={`addressContainer ${urlClass || ""}`} id={urlId}>
<a title={address} className="addressLink" href={contractUrl} target="_blank" rel="noopener noreferrer">
{endLength && address ? address.slice(0, endLength + 2) + "..." + address.slice(-endLength) : address}
</a>
<button
className={clsx("copyBtn", "copy-iconbutton")}
style={{ height: "16px", width: "16px", minWidth: "12px" }}
data-clipboard-text={address}
onClick={handleClick}
>
<img src="/assets/icons/copyIcon.svg" alt="Copy to clipboard" />
</button>
<style>{`
.addressLink {
padding: 1px 0px;
border-radius: var(--border-radius-10);
word-break: break-word;
}
.addressContainer {
display: inline-flex;
align-items: center;
gap: var(--space-1x);
word-break: break-word;
margin-top: 0;
}
.copyBtn {
background: none;
border: none;
}
.copyBtn:hover {
color: var(--color-text-link);
}
`}</style>
</span>
)
}
export default AddressComponent