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.
28 lines
874 B
28 lines
874 B
6 years ago
|
import { connect } from 'react-redux'
|
||
|
import MetaMetricsOptIn from './metametrics-opt-in.component'
|
||
6 years ago
|
import { setParticipateInMetaMetrics } from '../../../store/actions'
|
||
6 years ago
|
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)
|