2017-06-08 01:52:51 +05:30
|
|
|
// @flow
|
2016-12-07 02:38:51 +05:30
|
|
|
import logger from 'services/logger';
|
|
|
|
|
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';
|
2017-06-08 01:52:51 +05:30
|
|
|
import type { AuthContext } from 'services/authFlow';
|
2016-03-02 02:06:14 +05:30
|
|
|
|
|
|
|
export default class ActivationState extends AbstractState {
|
2017-06-08 01:52:51 +05:30
|
|
|
enter(context: AuthContext) {
|
|
|
|
const url = context.getRequest().path.includes('/activation')
|
|
|
|
? context.getRequest().path
|
|
|
|
: '/activation';
|
|
|
|
context.navigate(url);
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|
|
|
|
|
2017-06-08 01:52:51 +05:30
|
|
|
resolve(context: AuthContext, payload: Object) {
|
2016-03-02 02:06:14 +05:30
|
|
|
context.run('activate', payload)
|
2016-12-07 02:38:51 +05:30
|
|
|
.then(() => context.setState(new CompleteState()))
|
2017-03-02 11:28:33 +05:30
|
|
|
.catch((err = {}) =>
|
|
|
|
err.errors || logger.warn('Error activating account', err)
|
|
|
|
);
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|
2016-05-23 00:28:43 +05:30
|
|
|
|
2017-06-08 01:52:51 +05:30
|
|
|
reject(context: AuthContext) {
|
2016-05-23 00:28:43 +05:30
|
|
|
context.setState(new ResendActivationState());
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|