2017-04-13 11:19:02 +05:30
|
|
|
import logger from 'services/logger';
|
|
|
|
|
2016-03-02 02:06:14 +05:30
|
|
|
import AbstractState from './AbstractState';
|
|
|
|
import LoginState from './LoginState';
|
2016-05-15 02:23:58 +05:30
|
|
|
import CompleteState from './CompleteState';
|
|
|
|
import RecoverPasswordState from './RecoverPasswordState';
|
2016-03-02 02:06:14 +05:30
|
|
|
|
|
|
|
export default class ForgotPasswordState extends AbstractState {
|
|
|
|
enter(context) {
|
2016-11-23 11:35:28 +05:30
|
|
|
if (this.getLogin(context)) {
|
|
|
|
context.navigate('/forgot-password');
|
2016-05-15 02:23:58 +05:30
|
|
|
} else {
|
|
|
|
context.setState(new CompleteState());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-27 16:04:44 +05:30
|
|
|
resolve(context, payload = {}) {
|
|
|
|
context.run('forgotPassword', {login: payload.email || this.getLogin(context)})
|
2017-04-13 11:19:02 +05:30
|
|
|
.then(() => context.setState(new RecoverPasswordState()))
|
|
|
|
.catch((err = {}) =>
|
|
|
|
err.errors || logger.warn('Error requesting password recoverage', err)
|
|
|
|
);
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
goBack(context) {
|
|
|
|
context.setState(new LoginState());
|
|
|
|
}
|
|
|
|
|
|
|
|
reject(context) {
|
2016-05-15 02:23:58 +05:30
|
|
|
context.setState(new RecoverPasswordState());
|
|
|
|
}
|
|
|
|
|
|
|
|
getLogin(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
|
|
|
return auth.login;
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|
|
|
|
}
|