mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 11:41:04 +05:30
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { AuthContext } from 'app/services/authFlow';
|
|
import logger from 'app/services/logger';
|
|
|
|
import AbstractState from './AbstractState';
|
|
import ActivationState from './ActivationState';
|
|
import RegisterState from './RegisterState';
|
|
|
|
export default class ResendActivationState extends AbstractState {
|
|
enter(context: AuthContext): Promise<void> | void {
|
|
context.navigate('/resend-activation');
|
|
}
|
|
|
|
resolve(context: AuthContext, payload: Record<string, any>): Promise<void> | void {
|
|
context
|
|
.run('resendActivation', payload)
|
|
.then(() => context.setState(new ActivationState()))
|
|
.catch((err = {}) => err.errors || logger.warn('Error resending activation', err));
|
|
}
|
|
|
|
reject(context: AuthContext): void {
|
|
context.setState(new ActivationState());
|
|
}
|
|
|
|
goBack(context: AuthContext): void {
|
|
if (context.prevState instanceof RegisterState) {
|
|
context.setState(new RegisterState());
|
|
} else {
|
|
context.setState(new ActivationState());
|
|
}
|
|
}
|
|
}
|