2016-05-15 02:23:58 +05:30
|
|
|
import AbstractState from './AbstractState';
|
2020-01-18 02:07:52 +05:30
|
|
|
import { AuthContext } from './AuthFlow';
|
2016-05-15 02:23:58 +05:30
|
|
|
import LoginState from './LoginState';
|
|
|
|
import CompleteState from './CompleteState';
|
|
|
|
|
|
|
|
export default class RecoverPasswordState extends AbstractState {
|
2020-05-24 04:38:24 +05:30
|
|
|
enter(context: AuthContext): Promise<void> | void {
|
|
|
|
const url = context.getRequest().path.includes('/recover-password')
|
|
|
|
? context.getRequest().path
|
|
|
|
: '/recover-password';
|
|
|
|
context.navigate(url);
|
|
|
|
}
|
2016-05-15 02:23:58 +05:30
|
|
|
|
2024-08-28 16:37:23 +05:30
|
|
|
resolve(
|
|
|
|
context: AuthContext,
|
|
|
|
payload: { key: string; newPassword: string; newRePassword: string },
|
|
|
|
): Promise<void> | void {
|
2024-12-18 03:41:39 +05:30
|
|
|
return context.run('recoverPassword', payload).then(() => context.setState(new CompleteState()));
|
2020-05-24 04:38:24 +05:30
|
|
|
}
|
2016-05-15 02:23:58 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
goBack(context: AuthContext): void {
|
|
|
|
context.setState(new LoginState());
|
|
|
|
}
|
2016-05-15 02:23:58 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
reject(context: AuthContext): void {
|
|
|
|
context.run('contactUs');
|
|
|
|
}
|
2016-05-15 02:23:58 +05:30
|
|
|
}
|