You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
893 B
39 lines
893 B
7 years ago
|
import { connect } from 'react-redux'
|
||
|
import { withRouter } from 'react-router-dom'
|
||
|
import { compose } from 'recompose'
|
||
|
|
||
|
import AppHeader from './app-header.component'
|
||
|
const actions = require('../../actions')
|
||
|
|
||
|
const mapStateToProps = state => {
|
||
|
const { appState, metamask } = state
|
||
|
const { networkDropdownOpen } = appState
|
||
|
const {
|
||
|
network,
|
||
|
provider,
|
||
|
selectedAddress,
|
||
|
isUnlocked,
|
||
|
} = metamask
|
||
|
|
||
|
return {
|
||
|
networkDropdownOpen,
|
||
|
network,
|
||
|
provider,
|
||
|
selectedAddress,
|
||
|
isUnlocked,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const mapDispatchToProps = dispatch => {
|
||
|
return {
|
||
|
showNetworkDropdown: () => dispatch(actions.showNetworkDropdown()),
|
||
|
hideNetworkDropdown: () => dispatch(actions.hideNetworkDropdown()),
|
||
|
toggleAccountMenu: () => dispatch(actions.toggleAccountMenu()),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default compose(
|
||
|
withRouter,
|
||
|
connect(mapStateToProps, mapDispatchToProps)
|
||
|
)(AppHeader)
|