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-01-18 02:07:52 +05:30
|
|
|
enter(context: AuthContext): Promise<void> | void {
|
2019-11-27 14:33:32 +05:30
|
|
|
const url = context.getRequest().path.includes('/activation')
|
|
|
|
? context.getRequest().path
|
|
|
|
: '/activation';
|
|
|
|
context.navigate(url);
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
|
2020-01-18 02:07:52 +05:30
|
|
|
resolve(
|
|
|
|
context: AuthContext,
|
|
|
|
payload: Record<string, any>,
|
|
|
|
): Promise<void> | void {
|
2019-11-27 14:33:32 +05:30
|
|
|
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-01-18 02:07:52 +05:30
|
|
|
reject(context: AuthContext): void {
|
2019-11-27 14:33:32 +05:30
|
|
|
context.setState(new ResendActivationState());
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|