2019-03-05 16:45:01 +01:00
|
|
|
import { connect } from 'react-redux'
|
|
|
|
import MetaMetricsOptIn from './metametrics-opt-in.component'
|
2019-03-22 00:03:30 +01:00
|
|
|
import { setParticipateInMetaMetrics } from '../../../store/actions'
|
2019-03-05 16:45:01 +01:00
|
|
|
import { getFirstTimeFlowTypeRoute } from '../first-time-flow.selectors'
|
|
|
|
|
|
|
|
const firstTimeFlowTypeNameMap = {
|
|
|
|
create: 'Selected Create New Wallet',
|
|
|
|
'import': 'Selected Import Wallet',
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => {
|
|
|
|
const { firstTimeFlowType, participateInMetaMetrics } = state.metamask
|
|
|
|
|
|
|
|
return {
|
|
|
|
nextRoute: getFirstTimeFlowTypeRoute(state),
|
|
|
|
firstTimeSelectionMetaMetricsName: firstTimeFlowTypeNameMap[firstTimeFlowType],
|
|
|
|
participateInMetaMetrics,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
setParticipateInMetaMetrics: (val) => dispatch(setParticipateInMetaMetrics(val)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(MetaMetricsOptIn)
|