2017-06-08 01:52:51 +05:30
|
|
|
// @flow
|
2018-05-03 10:45:09 +05:30
|
|
|
import type { AuthContext } from 'services/authFlow';
|
2016-12-07 02:38:51 +05:30
|
|
|
import logger from 'services/logger';
|
|
|
|
|
2016-05-23 00:28:43 +05:30
|
|
|
import AbstractState from './AbstractState';
|
|
|
|
import ActivationState from './ActivationState';
|
2016-05-23 09:20:10 +05:30
|
|
|
import RegisterState from './RegisterState';
|
2016-05-23 00:28:43 +05:30
|
|
|
|
|
|
|
export default class ResendActivationState extends AbstractState {
|
2017-06-08 01:52:51 +05:30
|
|
|
enter(context: AuthContext) {
|
|
|
|
context.navigate('/resend-activation');
|
2016-05-23 00:28:43 +05:30
|
|
|
}
|
|
|
|
|
2017-06-08 01:52:51 +05:30
|
|
|
resolve(context: AuthContext, payload: Object) {
|
2016-05-23 00:28:43 +05:30
|
|
|
context.run('resendActivation', payload)
|
2016-12-07 02:38:51 +05:30
|
|
|
.then(() => context.setState(new ActivationState()))
|
2017-03-02 11:28:33 +05:30
|
|
|
.catch((err = {}) =>
|
|
|
|
err.errors || logger.warn('Error resending activation', err)
|
|
|
|
);
|
2016-05-23 00:28:43 +05:30
|
|
|
}
|
|
|
|
|
2017-06-08 01:52:51 +05:30
|
|
|
reject(context: AuthContext) {
|
2016-07-24 14:02:54 +05:30
|
|
|
context.setState(new ActivationState());
|
|
|
|
}
|
|
|
|
|
2017-06-08 01:52:51 +05:30
|
|
|
goBack(context: AuthContext) {
|
2016-06-05 17:36:14 +05:30
|
|
|
if (context.prevState instanceof RegisterState) {
|
2016-05-23 09:20:10 +05:30
|
|
|
context.setState(new RegisterState());
|
|
|
|
} else {
|
|
|
|
context.setState(new ActivationState());
|
|
|
|
}
|
2016-05-23 00:28:43 +05:30
|
|
|
}
|
|
|
|
}
|