mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
This reverts commit f09ab8889148c406551dea1643966e3331fde4aa, reversing changes made to effc761e0ee4ea7ffb77f275b5ed650a7098d6f8. This is being temporarily reverted to make it easier to release an urgent fix for v10.15.1.
62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import {
|
|
toggleAccountMenu,
|
|
showAccountDetail,
|
|
lockMetamask,
|
|
hideWarning,
|
|
} from '../../../store/actions';
|
|
import {
|
|
getAddressConnectedSubjectMap,
|
|
getMetaMaskAccountsOrdered,
|
|
getMetaMaskKeyrings,
|
|
getOriginOfCurrentTab,
|
|
getSelectedAddress,
|
|
} from '../../../selectors';
|
|
import AccountMenu from './account-menu.component';
|
|
|
|
/**
|
|
* The min amount of accounts to show search field
|
|
*/
|
|
const SHOW_SEARCH_ACCOUNTS_MIN_COUNT = 5;
|
|
|
|
function mapStateToProps(state) {
|
|
const {
|
|
metamask: { isAccountMenuOpen },
|
|
} = state;
|
|
const accounts = getMetaMaskAccountsOrdered(state);
|
|
const origin = getOriginOfCurrentTab(state);
|
|
const selectedAddress = getSelectedAddress(state);
|
|
|
|
return {
|
|
isAccountMenuOpen,
|
|
addressConnectedSubjectMap: getAddressConnectedSubjectMap(state),
|
|
originOfCurrentTab: origin,
|
|
selectedAddress,
|
|
keyrings: getMetaMaskKeyrings(state),
|
|
accounts,
|
|
shouldShowAccountsSearch: accounts.length >= SHOW_SEARCH_ACCOUNTS_MIN_COUNT,
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
toggleAccountMenu: () => dispatch(toggleAccountMenu()),
|
|
showAccountDetail: (address) => {
|
|
dispatch(showAccountDetail(address));
|
|
dispatch(toggleAccountMenu());
|
|
},
|
|
lockMetamask: () => {
|
|
dispatch(lockMetamask());
|
|
dispatch(hideWarning());
|
|
dispatch(toggleAccountMenu());
|
|
},
|
|
};
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(AccountMenu);
|