mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
87 lines
2.7 KiB
JavaScript
87 lines
2.7 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import { useHistory } from 'react-router-dom';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import { ButtonLink, IconName, Box } from '../../component-library';
|
|
import {
|
|
AlignItems,
|
|
Display,
|
|
Size,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { IMPORT_TOKEN_ROUTE } from '../../../helpers/constants/routes';
|
|
import { detectNewTokens } from '../../../store/actions';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import {
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventName,
|
|
} from '../../../../shared/constants/metametrics';
|
|
import {
|
|
getIsTokenDetectionSupported,
|
|
getIsTokenDetectionInactiveOnMainnet,
|
|
} from '../../../selectors';
|
|
|
|
export const ImportTokenLink = ({ className, ...props }) => {
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
const t = useI18nContext();
|
|
const history = useHistory();
|
|
const dispatch = useDispatch();
|
|
|
|
const isTokenDetectionSupported = useSelector(getIsTokenDetectionSupported);
|
|
const isTokenDetectionInactiveOnMainnet = useSelector(
|
|
getIsTokenDetectionInactiveOnMainnet,
|
|
);
|
|
|
|
const isTokenDetectionAvailable =
|
|
isTokenDetectionSupported ||
|
|
isTokenDetectionInactiveOnMainnet ||
|
|
Boolean(process.env.IN_TEST);
|
|
return (
|
|
<Box
|
|
className={classnames('multichain-import-token-link', className)}
|
|
{...props}
|
|
>
|
|
<Box display={Display.Flex} alignItems={AlignItems.center}>
|
|
<ButtonLink
|
|
size={Size.MD}
|
|
data-testid="import-token-button"
|
|
startIconName={IconName.Add}
|
|
onClick={() => {
|
|
history.push(IMPORT_TOKEN_ROUTE);
|
|
trackEvent({
|
|
event: MetaMetricsEventName.TokenImportButtonClicked,
|
|
category: MetaMetricsEventCategory.Navigation,
|
|
properties: {
|
|
location: 'Home',
|
|
},
|
|
});
|
|
}}
|
|
>
|
|
{isTokenDetectionAvailable
|
|
? t('importTokensCamelCase')
|
|
: t('importTokensCamelCase').charAt(0).toUpperCase() +
|
|
t('importTokensCamelCase').slice(1)}
|
|
</ButtonLink>
|
|
</Box>
|
|
<Box display={Display.Flex} alignItems={AlignItems.center} paddingTop={2}>
|
|
<ButtonLink
|
|
size={Size.MD}
|
|
startIconName={IconName.Refresh}
|
|
data-testid="refresh-list-button"
|
|
onClick={() => dispatch(detectNewTokens())}
|
|
>
|
|
{t('refreshList')}
|
|
</ButtonLink>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
ImportTokenLink.propTypes = {
|
|
/**
|
|
* An additional className to apply to the TokenList.
|
|
*/
|
|
className: PropTypes.string,
|
|
};
|