blob: d13f8e87e76d343bec4b6789c1c81d40e9a26b3b (
plain) (
tree)
|
|
const connect = require('react-redux').connect
const metamaskConnect = (mapStateToProps, mapDispatchToProps) => {
return connect(
_higherOrderMapStateToProps(mapStateToProps),
mapDispatchToProps
)
}
const _higherOrderMapStateToProps = (mapStateToProps) => {
return (state, ownProps = {}) => {
const stateProps = mapStateToProps
? mapStateToProps(state, ownProps)
: ownProps
stateProps.localeMessages = state.localeMessages || {}
return stateProps
}
}
module.exports = metamaskConnect
|