2016-12-07 02:38:51 +05:30
|
|
|
import logger from 'services/logger';
|
|
|
|
|
2016-05-15 02:23:58 +05:30
|
|
|
import AbstractState from './AbstractState';
|
|
|
|
import LoginState from './LoginState';
|
|
|
|
import CompleteState from './CompleteState';
|
|
|
|
|
|
|
|
export default class RecoverPasswordState extends AbstractState {
|
|
|
|
enter(context) {
|
2016-11-23 11:35:28 +05:30
|
|
|
const {auth} = context.getState();
|
2016-05-15 02:23:58 +05:30
|
|
|
|
2016-11-23 11:35:28 +05:30
|
|
|
if (auth.login) {
|
2016-08-07 19:24:59 +05:30
|
|
|
const url = context.getRequest().path.includes('/recover-password')
|
|
|
|
? context.getRequest().path
|
2016-05-15 02:23:58 +05:30
|
|
|
: '/recover-password';
|
|
|
|
context.navigate(url);
|
|
|
|
} else {
|
|
|
|
context.setState(new CompleteState());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve(context, payload) {
|
|
|
|
context.run('recoverPassword', payload)
|
2016-12-07 02:38:51 +05:30
|
|
|
.then(() => context.setState(new CompleteState()))
|
|
|
|
.catch((err = {}) => err.errors || logger.warn(err));
|
2016-05-15 02:23:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
goBack(context) {
|
|
|
|
context.setState(new LoginState());
|
|
|
|
}
|
|
|
|
|
|
|
|
reject(context) {
|
|
|
|
context.navigate('/send-message');
|
|
|
|
}
|
|
|
|
}
|