blob: 2778fc0858ffb530ee91b4734ba0fffcca3ec1e8 (
plain) (
blame)
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
|
import * as _ from 'lodash';
import {colors} from 'ts/utils/colors';
import * as React from 'react';
import ReactTooltip = require('react-tooltip');
import {EtherscanLinkSuffixes} from 'ts/types';
import {utils} from 'ts/utils/utils';
interface EtherScanIconProps {
addressOrTxHash: string;
etherscanLinkSuffixes: EtherscanLinkSuffixes;
networkId: number;
}
export const EtherScanIcon = (props: EtherScanIconProps) => {
const etherscanLinkIfExists = utils.getEtherScanLinkIfExists(
props.addressOrTxHash, props.networkId, EtherscanLinkSuffixes.Address,
);
const transactionTooltipId = `${props.addressOrTxHash}-etherscan-icon-tooltip`;
return (
<div className="inline">
{!_.isUndefined(etherscanLinkIfExists) ?
<a
href={etherscanLinkIfExists}
target="_blank"
>
{renderIcon()}
</a> :
<div
className="inline"
data-tip={true}
data-for={transactionTooltipId}
>
{renderIcon()}
<ReactTooltip id={transactionTooltipId}>
Your network (id: {props.networkId}) is not supported by Etherscan
</ReactTooltip>
</div>
}
</div>
);
};
function renderIcon() {
return (
<i
style={{color: colors.amber600}}
className="zmdi zmdi-open-in-new"
/>
);
}
|