mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
26f0cbe293
* Finished adding custodian icon next to metafox * Fixed image path * Fixed comments in PR
77 lines
2.1 KiB
JavaScript
77 lines
2.1 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { compose } from 'redux';
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
|
|
import { getCustodianIconForAddress } from '../../../selectors/institutional/selectors';
|
|
///: END:ONLY_INCLUDE_IN
|
|
import {
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
getUnreadNotificationsCount,
|
|
///: END:ONLY_INCLUDE_IN
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-beta)
|
|
getShowBetaHeader,
|
|
///: END:ONLY_INCLUDE_IN
|
|
} from '../../../selectors';
|
|
|
|
import * as actions from '../../../store/actions';
|
|
import AppHeader from './app-header.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { appState, metamask } = state;
|
|
const { networkDropdownOpen } = appState;
|
|
const {
|
|
selectedAddress,
|
|
isUnlocked,
|
|
isAccountMenuOpen,
|
|
///: BEGIN:ONLY_INCLUDE_IN(desktop)
|
|
desktopEnabled,
|
|
///: END:ONLY_INCLUDE_IN
|
|
} = metamask;
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
|
|
const custodianIcon = selectedAddress
|
|
? getCustodianIconForAddress(state, selectedAddress)
|
|
: null;
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
const unreadNotificationsCount = getUnreadNotificationsCount(state);
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-beta)
|
|
const showBetaHeader = getShowBetaHeader(state);
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
return {
|
|
networkDropdownOpen,
|
|
selectedAddress,
|
|
isUnlocked,
|
|
isAccountMenuOpen,
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
unreadNotificationsCount,
|
|
///: END:ONLY_INCLUDE_IN
|
|
///: BEGIN:ONLY_INCLUDE_IN(desktop)
|
|
desktopEnabled,
|
|
///: END:ONLY_INCLUDE_IN
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-beta)
|
|
showBetaHeader,
|
|
///: END:ONLY_INCLUDE_IN
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
|
|
custodianIcon,
|
|
///: END:ONLY_INCLUDE_IN
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
showNetworkDropdown: () => dispatch(actions.showNetworkDropdown()),
|
|
hideNetworkDropdown: () => dispatch(actions.hideNetworkDropdown()),
|
|
toggleAccountMenu: () => dispatch(actions.toggleAccountMenu()),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(AppHeader);
|