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
967 B
31 lines
967 B
import { connect } from 'react-redux'
|
|
import FirstTimeFlow from './first-time-flow.component'
|
|
import { getFirstTimeFlowTypeRoute } from './first-time-flow.selectors'
|
|
import {
|
|
createNewVaultAndGetSeedPhrase,
|
|
createNewVaultAndRestore,
|
|
unlockAndGetSeedPhrase,
|
|
} from '../../store/actions'
|
|
|
|
const mapStateToProps = state => {
|
|
const { metamask: { completedOnboarding, isInitialized, isUnlocked } } = state
|
|
|
|
return {
|
|
completedOnboarding,
|
|
isInitialized,
|
|
isUnlocked,
|
|
nextRoute: getFirstTimeFlowTypeRoute(state),
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
createNewAccount: password => dispatch(createNewVaultAndGetSeedPhrase(password)),
|
|
createNewAccountFromSeed: (password, seedPhrase) => {
|
|
return dispatch(createNewVaultAndRestore(password, seedPhrase))
|
|
},
|
|
unlockAccount: password => dispatch(unlockAndGetSeedPhrase(password)),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(FirstTimeFlow)
|
|
|