2019-12-08 00:32:00 +05:30
|
|
|
import logger from 'app/services/logger';
|
|
|
|
import { AuthContext } from 'app/services/authFlow';
|
2016-12-07 02:38:51 +05:30
|
|
|
|
2016-03-02 02:06:14 +05:30
|
|
|
import AbstractState from './AbstractState';
|
|
|
|
import CompleteState from './CompleteState';
|
2016-05-23 00:28:43 +05:30
|
|
|
import ResendActivationState from './ResendActivationState';
|
2016-03-02 02:06:14 +05:30
|
|
|
|
|
|
|
export default class ActivationState extends AbstractState {
|
2020-05-24 04:38:24 +05:30
|
|
|
enter(context: AuthContext): Promise<void> | void {
|
|
|
|
const url = context.getRequest().path.includes('/activation') ? context.getRequest().path : '/activation';
|
|
|
|
context.navigate(url);
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
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-23 00:28:43 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
reject(context: AuthContext): void {
|
|
|
|
context.setState(new ResendActivationState());
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|