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.
47 lines
1.4 KiB
47 lines
1.4 KiB
import { connect } from 'react-redux';
|
|
import { getFirstTimeFlowTypeRoute } from '../../selectors';
|
|
import {
|
|
createNewVaultAndGetSeedPhrase,
|
|
createNewVaultAndRestore,
|
|
unlockAndGetSeedPhrase,
|
|
verifySeedPhrase,
|
|
} from '../../store/actions';
|
|
import { INITIALIZE_BACKUP_SEED_PHRASE_ROUTE } from '../../helpers/constants/routes';
|
|
import FirstTimeFlow from './first-time-flow.component';
|
|
|
|
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);
|
|
|