2021-02-04 19:15:23 +01:00
|
|
|
import React, { useContext } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import { I18nContext } from '../../../../contexts/i18n';
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export default function ViewOnEtherScanLink({
|
2020-10-06 20:28:38 +02:00
|
|
|
txHash,
|
|
|
|
blockExplorerUrl,
|
|
|
|
isCustomBlockExplorerUrl,
|
|
|
|
}) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const t = useContext(I18nContext);
|
2020-10-06 20:28:38 +02:00
|
|
|
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
|
2021-03-29 14:54:27 +02:00
|
|
|
? t('viewOnCustomBlockExplorer', [new URL(blockExplorerUrl).hostname])
|
2020-11-03 00:41:28 +01:00
|
|
|
: t('viewOnEtherscan')}
|
2020-10-06 20:28:38 +02:00
|
|
|
</div>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ViewOnEtherScanLink.propTypes = {
|
|
|
|
txHash: PropTypes.string,
|
|
|
|
blockExplorerUrl: PropTypes.string,
|
|
|
|
isCustomBlockExplorerUrl: PropTypes.bool,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|