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.
40 lines
937 B
40 lines
937 B
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,
|
|
providerRequests,
|
|
selectedAddress,
|
|
isUnlocked,
|
|
} = metamask
|
|
|
|
return {
|
|
networkDropdownOpen,
|
|
network,
|
|
provider,
|
|
providerRequests,
|
|
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)
|
|
|