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.
39 lines
1.3 KiB
39 lines
1.3 KiB
import { connect } from 'react-redux'
|
|
import FirstTimeFlow from './first-time-flow.component'
|
|
import { getFirstTimeFlowTypeRoute } from './first-time-flow.selectors'
|
|
import {
|
|
createNewVaultAndGetSeedPhrase,
|
|
createNewVaultAndRestore,
|
|
unlockAndGetSeedPhrase,
|
|
verifySeedPhrase,
|
|
} from '../../store/actions'
|
|
import {
|
|
INITIALIZE_BACKUP_SEED_PHRASE_ROUTE,
|
|
} from '../../helpers/constants/routes'
|
|
|
|
const mapStateToProps = (state, ownProps) => {
|
|
const { metamask: { completedOnboarding, isInitialized, isUnlocked, seedPhraseBackedUp } } = state
|
|
const showingSeedPhraseBackupAfterOnboarding = Boolean(ownProps.location.pathname.match(INITIALIZE_BACKUP_SEED_PHRASE_ROUTE))
|
|
|
|
return {
|
|
completedOnboarding,
|
|
isInitialized,
|
|
isUnlocked,
|
|
nextRoute: getFirstTimeFlowTypeRoute(state),
|
|
showingSeedPhraseBackupAfterOnboarding,
|
|
seedPhraseBackedUp,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
createNewAccount: (password) => dispatch(createNewVaultAndGetSeedPhrase(password)),
|
|
createNewAccountFromSeed: (password, seedPhrase) => {
|
|
return dispatch(createNewVaultAndRestore(password, seedPhrase))
|
|
},
|
|
unlockAccount: (password) => dispatch(unlockAndGetSeedPhrase(password)),
|
|
verifySeedPhrase: () => verifySeedPhrase(),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(FirstTimeFlow)
|
|
|