2019-12-08 00:32:00 +05:30
|
|
|
import { AuthContext } from 'app/services/authFlow';
|
|
|
|
import logger from 'app/services/logger';
|
2016-12-07 02:38:51 +05:30
|
|
|
|
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 {
|
2020-05-24 04:38:24 +05:30
|
|
|
enter(context: AuthContext): Promise<void> | void {
|
|
|
|
context.navigate('/resend-activation');
|
|
|
|
}
|
2016-05-23 00:28:43 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
resolve(context: AuthContext, payload: Record<string, any>): Promise<void> | void {
|
|
|
|
context
|
|
|
|
.run('resendActivation', payload)
|
|
|
|
.then(() => context.setState(new ActivationState()))
|
|
|
|
.catch((err = {}) => err.errors || logger.warn('Error resending activation', err));
|
|
|
|
}
|
2016-05-23 00:28:43 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
reject(context: AuthContext): void {
|
|
|
|
context.setState(new ActivationState());
|
|
|
|
}
|
2016-07-24 14:02:54 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
goBack(context: AuthContext): void {
|
|
|
|
if (context.prevState instanceof RegisterState) {
|
|
|
|
context.setState(new RegisterState());
|
|
|
|
} else {
|
|
|
|
context.setState(new ActivationState());
|
|
|
|
}
|
2016-05-23 00:28:43 +05:30
|
|
|
}
|
|
|
|
}
|