2019-12-07 21:02:00 +02:00
|
|
|
import logger from 'app/services/logger';
|
|
|
|
import { AuthContext } from 'app/services/authFlow';
|
2016-12-06 23:08:51 +02:00
|
|
|
|
2016-03-01 22:36:14 +02:00
|
|
|
import AbstractState from './AbstractState';
|
|
|
|
import CompleteState from './CompleteState';
|
2016-05-22 21:58:43 +03:00
|
|
|
import ResendActivationState from './ResendActivationState';
|
2016-03-01 22:36:14 +02:00
|
|
|
|
|
|
|
export default class ActivationState extends AbstractState {
|
2020-05-24 02:08:24 +03:00
|
|
|
enter(context: AuthContext): Promise<void> | void {
|
|
|
|
const url = context.getRequest().path.includes('/activation') ? context.getRequest().path : '/activation';
|
|
|
|
context.navigate(url);
|
|
|
|
}
|
2016-03-01 22:36:14 +02:00
|
|
|
|
2020-05-24 02:08:24 +03:00
|
|
|
resolve(context: AuthContext, payload: Record<string, any>): Promise<void> | void {
|
|
|
|
context
|
|
|
|
.run('activate', payload)
|
|
|
|
.then(() => context.setState(new CompleteState()))
|
|
|
|
.catch((err = {}) => err.errors || logger.warn('Error activating account', err));
|
|
|
|
}
|
2016-05-22 21:58:43 +03:00
|
|
|
|
2020-05-24 02:08:24 +03:00
|
|
|
reject(context: AuthContext): void {
|
|
|
|
context.setState(new ResendActivationState());
|
|
|
|
}
|
2016-03-01 22:36:14 +02:00
|
|
|
}
|