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.
31 lines
744 B
31 lines
744 B
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'recompose'
|
|
|
|
const {
|
|
tryUnlockMetamask,
|
|
forgotPassword,
|
|
markPasswordForgotten,
|
|
} = require('../../../actions')
|
|
|
|
import UnlockPage from './unlock-page.component'
|
|
|
|
const mapStateToProps = state => {
|
|
const { metamask: { isUnlocked } } = state
|
|
return {
|
|
isUnlocked,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
forgotPassword: () => dispatch(forgotPassword()),
|
|
tryUnlockMetamask: password => dispatch(tryUnlockMetamask(password)),
|
|
markPasswordForgotten: () => dispatch(markPasswordForgotten()),
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(UnlockPage)
|
|
|