1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 20:32:02 +02:00
metamask-extension/ui/app/pages/swaps/awaiting-swap/view-on-ether-scan-link/view-on-ether-scan-link.js

32 lines
904 B
JavaScript
Raw Normal View History

2020-10-06 20:28:38 +02:00
import React, { useContext } from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
import { I18nContext } from '../../../../contexts/i18n'
2020-11-03 00:41:28 +01:00
export default function ViewOnEtherScanLink({
2020-10-06 20:28:38 +02:00
txHash,
blockExplorerUrl,
isCustomBlockExplorerUrl,
}) {
const t = useContext(I18nContext)
return (
<div
className={classnames('awaiting-swap__view-on-etherscan', {
'awaiting-swap__view-on-etherscan--visible': txHash,
'awaiting-swap__view-on-etherscan--invisible': !txHash,
})}
onClick={() => global.platform.openTab({ url: blockExplorerUrl })}
>
2020-11-03 00:41:28 +01:00
{isCustomBlockExplorerUrl
? t('viewOnCustomBlockExplorer', [blockExplorerUrl])
: t('viewOnEtherscan')}
2020-10-06 20:28:38 +02:00
</div>
)
}
ViewOnEtherScanLink.propTypes = {
txHash: PropTypes.string,
blockExplorerUrl: PropTypes.string,
isCustomBlockExplorerUrl: PropTypes.bool,
}