mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
22 lines
675 B
JavaScript
22 lines
675 B
JavaScript
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 |