mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 16:21:23 +05:30
35 lines
971 B
TypeScript
35 lines
971 B
TypeScript
import { AuthContext } from 'app/services/authFlow';
|
|
import logger from 'app/services/logger';
|
|
|
|
import AbstractState from './AbstractState';
|
|
import ActivationState from './ActivationState';
|
|
import RegisterState from './RegisterState';
|
|
|
|
export default class ResendActivationState extends AbstractState {
|
|
enter(context: AuthContext) {
|
|
context.navigate('/resend-activation');
|
|
}
|
|
|
|
resolve(context: AuthContext, payload: { [key: string]: any }) {
|
|
context
|
|
.run('resendActivation', payload)
|
|
.then(() => context.setState(new ActivationState()))
|
|
.catch(
|
|
(err = {}) =>
|
|
err.errors || logger.warn('Error resending activation', err),
|
|
);
|
|
}
|
|
|
|
reject(context: AuthContext) {
|
|
context.setState(new ActivationState());
|
|
}
|
|
|
|
goBack(context: AuthContext) {
|
|
if (context.prevState instanceof RegisterState) {
|
|
context.setState(new RegisterState());
|
|
} else {
|
|
context.setState(new ActivationState());
|
|
}
|
|
}
|
|
}
|