aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/metamask-connect.js
blob: eef90529b5fa782f9a3bafe1723d6a76638eb849 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const connect = require('react-redux').connect

const metamaskConnect = (mapStateToProps, mapDispatchToProps) => {
    return connect(
        _higherOrderMapStateToProps(mapStateToProps),
        mapDispatchToProps
    )
}

const _higherOrderMapStateToProps = (mapStateToProps) => {
    return (state, ownProps) => {
        const stateProps = mapStateToProps(state, ownProps)
        stateProps.localeMessages = state.localeMessages || {}
        return stateProps
    }
}

module.exports = metamaskConnect