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 {
|
|
|
|
enter(context) {
|
2016-06-05 17:46:41 +05:30
|
|
|
const {user, routing} = context.getState();
|
2016-03-02 02:06:14 +05:30
|
|
|
|
|
|
|
if (user.isActive) {
|
|
|
|
context.setState(new CompleteState());
|
|
|
|
} else {
|
2016-06-05 17:46:41 +05:30
|
|
|
const url = routing.location.pathname.includes('/activation')
|
|
|
|
? routing.location.pathname
|
|
|
|
: '/activation';
|
|
|
|
context.navigate(url);
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve(context, payload) {
|
|
|
|
context.run('activate', payload)
|
|
|
|
.then(() => context.setState(new CompleteState()));
|
|
|
|
}
|
2016-05-23 00:28:43 +05:30
|
|
|
|
|
|
|
reject(context) {
|
|
|
|
context.setState(new ResendActivationState());
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|