mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { setPendingTokens, clearPendingTokens } from '../../store/actions';
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
|
import {
|
|
getRpcPrefsForCurrentProvider,
|
|
getIsMainnet,
|
|
} from '../../selectors/selectors';
|
|
import ImportToken from './import-token.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: {
|
|
identities,
|
|
tokens,
|
|
pendingTokens,
|
|
provider: { chainId },
|
|
useTokenDetection,
|
|
tokenList,
|
|
},
|
|
} = state;
|
|
const showSearchTabCustomNetwork =
|
|
useTokenDetection && Boolean(Object.keys(tokenList).length);
|
|
const showSearchTab =
|
|
getIsMainnet(state) ||
|
|
showSearchTabCustomNetwork ||
|
|
process.env.IN_TEST === 'true';
|
|
return {
|
|
identities,
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
tokens,
|
|
pendingTokens,
|
|
showSearchTab,
|
|
chainId,
|
|
rpcPrefs: getRpcPrefsForCurrentProvider(state),
|
|
tokenList,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setPendingTokens: (tokens) => dispatch(setPendingTokens(tokens)),
|
|
clearPendingTokens: () => dispatch(clearPendingTokens()),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ImportToken);
|