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-05-15 02:23:58 +05:30
|
|
|
const {user} = context.getState();
|
|
|
|
|
|
|
|
if (user.isGuest) {
|
|
|
|
if (this.getLogin(context)) {
|
|
|
|
context.navigate('/forgot-password');
|
|
|
|
} else {
|
|
|
|
context.setState(new LoginState());
|
|
|
|
}
|
|
|
|
} 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)})
|
2016-05-15 02:23:58 +05:30
|
|
|
.then(() => context.setState(new RecoverPasswordState()));
|
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) {
|
|
|
|
const {user} = context.getState();
|
|
|
|
|
|
|
|
return user.email || user.username;
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|
|
|
|
}
|