mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-04 04:29:40 +05:30
25 lines
928 B
TypeScript
25 lines
928 B
TypeScript
import logger from 'app/services/logger';
|
|
import { AuthContext } from 'app/services/authFlow';
|
|
|
|
import AbstractState from './AbstractState';
|
|
import CompleteState from './CompleteState';
|
|
import ResendActivationState from './ResendActivationState';
|
|
|
|
export default class ActivationState extends AbstractState {
|
|
enter(context: AuthContext): Promise<void> | void {
|
|
const url = context.getRequest().path.includes('/activation') ? context.getRequest().path : '/activation';
|
|
context.navigate(url);
|
|
}
|
|
|
|
resolve(context: AuthContext, payload: Record<string, any>): Promise<void> | void {
|
|
context
|
|
.run('activate', payload)
|
|
.then(() => context.setState(new CompleteState()))
|
|
.catch((err = {}) => err.errors || logger.warn('Error activating account', err));
|
|
}
|
|
|
|
reject(context: AuthContext): void {
|
|
context.setState(new ResendActivationState());
|
|
}
|
|
}
|