mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
4f0a205369
* Use eslint@6.8.0 * yarn lint:fix
66 lines
1.9 KiB
JavaScript
66 lines
1.9 KiB
JavaScript
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'redux'
|
|
import { getEnvironmentType } from '../../../../app/scripts/lib/util'
|
|
import { ENVIRONMENT_TYPE_POPUP } from '../../../../app/scripts/lib/enums'
|
|
import { DEFAULT_ROUTE, RESTORE_VAULT_ROUTE } from '../../helpers/constants/routes'
|
|
import {
|
|
tryUnlockMetamask,
|
|
forgotPassword,
|
|
markPasswordForgotten,
|
|
forceUpdateMetamaskState,
|
|
showModal,
|
|
} from '../../store/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()),
|
|
forceUpdateMetamaskState: () => forceUpdateMetamaskState(dispatch),
|
|
showOptInModal: () => dispatch(showModal({ name: 'METAMETRICS_OPT_IN_MODAL' })),
|
|
}
|
|
}
|
|
|
|
const mergeProps = (stateProps, dispatchProps, ownProps) => {
|
|
const { markPasswordForgotten, tryUnlockMetamask, ...restDispatchProps } = dispatchProps
|
|
const { history, onSubmit: ownPropsSubmit, ...restOwnProps } = ownProps
|
|
|
|
const onImport = async () => {
|
|
await markPasswordForgotten()
|
|
history.push(RESTORE_VAULT_ROUTE)
|
|
|
|
if (getEnvironmentType() === ENVIRONMENT_TYPE_POPUP) {
|
|
global.platform.openExtensionInBrowser(RESTORE_VAULT_ROUTE)
|
|
}
|
|
}
|
|
|
|
const onSubmit = async (password) => {
|
|
await tryUnlockMetamask(password)
|
|
history.push(DEFAULT_ROUTE)
|
|
}
|
|
|
|
return {
|
|
...stateProps,
|
|
...restDispatchProps,
|
|
...restOwnProps,
|
|
onImport,
|
|
onRestore: onImport,
|
|
onSubmit: ownPropsSubmit || onSubmit,
|
|
history,
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps, mergeProps),
|
|
)(UnlockPage)
|