2019-12-08 00:32:00 +05:30
|
|
|
import { AuthContext } from 'app/services/authFlow';
|
2016-12-07 02:38:51 +05:30
|
|
|
|
2016-03-02 02:06:14 +05:30
|
|
|
import AbstractState from './AbstractState';
|
|
|
|
import CompleteState from './CompleteState';
|
2016-05-23 00:28:43 +05:30
|
|
|
import ResendActivationState from './ResendActivationState';
|
2016-03-02 02:06:14 +05:30
|
|
|
|
|
|
|
export default class ActivationState extends AbstractState {
|
2020-05-24 04:38:24 +05:30
|
|
|
enter(context: AuthContext): Promise<void> | void {
|
|
|
|
const url = context.getRequest().path.includes('/activation') ? context.getRequest().path : '/activation';
|
|
|
|
context.navigate(url);
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
|
2024-08-28 16:37:23 +05:30
|
|
|
resolve(context: AuthContext, payload: { key: string }): Promise<void> | void {
|
2024-12-18 03:41:39 +05:30
|
|
|
return context.run('activate', payload.key).then(() => context.setState(new CompleteState()));
|
2020-05-24 04:38:24 +05:30
|
|
|
}
|
2016-05-23 00:28:43 +05:30
|
|
|
|
2020-05-24 04:38:24 +05:30
|
|
|
reject(context: AuthContext): void {
|
|
|
|
context.setState(new ResendActivationState());
|
|
|
|
}
|
2016-03-02 02:06:14 +05:30
|
|
|
}
|