mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 16:21:23 +05:30
30 lines
874 B
TypeScript
30 lines
874 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) {
|
|
const url = context.getRequest().path.includes('/activation')
|
|
? context.getRequest().path
|
|
: '/activation';
|
|
context.navigate(url);
|
|
}
|
|
|
|
resolve(context: AuthContext, payload: { [key: string]: any }) {
|
|
context
|
|
.run('activate', payload)
|
|
.then(() => context.setState(new CompleteState()))
|
|
.catch(
|
|
(err = {}) =>
|
|
err.errors || logger.warn('Error activating account', err),
|
|
);
|
|
}
|
|
|
|
reject(context: AuthContext) {
|
|
context.setState(new ResendActivationState());
|
|
}
|
|
}
|