mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
7226357422
A propType error was showing up during e2e tests with a `testDev` build. It was caused by `process.env.IN_TEST` being treated as a boolean, when in fact it is either the string `'true'` or a boolean. `IN_TEST` has been updated to always be a boolean. `loose-envify` has no trouble injecting boolean values, so there's no reason to treat this as a string.
47 lines
1.2 KiB
JavaScript
47 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;
|
|
return {
|
|
identities,
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
tokens,
|
|
pendingTokens,
|
|
showSearchTab,
|
|
chainId,
|
|
rpcPrefs: getRpcPrefsForCurrentProvider(state),
|
|
tokenList,
|
|
useTokenDetection,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setPendingTokens: (tokens) => dispatch(setPendingTokens(tokens)),
|
|
clearPendingTokens: () => dispatch(clearPendingTokens()),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ImportToken);
|