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.
29 lines
876 B
29 lines
876 B
import { connect } from 'react-redux'
|
|
import { setParticipateInMetaMetrics } from '../../../store/actions'
|
|
import { getFirstTimeFlowTypeRoute } from '../../../selectors'
|
|
import MetaMetricsOptIn from './metametrics-opt-in.component'
|
|
|
|
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)
|
|
|