aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/metamask-connect.js
blob: 38fc059301f49e0d99524e2019d5f93889a83801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const connect = require('react-redux').connect
const t = require('../i18n-helper').getMessage

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

const _higherOrderMapStateToProps = (mapStateToProps) => {
    return (state, ownProps = {}) => {
        const stateProps = mapStateToProps
            ? mapStateToProps(state, ownProps)
            : ownProps
        console.log(`state.localeMessages`, state.localeMessages);
        stateProps.t = t.bind(null, state.localeMessages)
        return stateProps
    }
}

module.exports = metamaskConnect