Есть ли способ использовать this.props.dispatch
хранилища редуксов внутри Accounts.onEmailVerificationLink?
Я использую React и React-redux в приложении Meteor.
После подтверждения по электронной почте я хотел бы отправить данные через this.props.dispatch
Я пытаюсь заставить эту работу (если это вообще возможно):
Accounts.onEmailVerificationLink(function(token, done){
console.log('onEmailVerificationLink token', token)
console.log('this',this)
var outerthis = this
Accounts.verifyEmail(token, function(error){
if(R.isNil(error)){
}else{
console.log('error of verifyEmail', error)
outerthis.props.dispatch(changemainmessage(error.reason))
}
})
done()
})