-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathAuthenticationActionCreators.ts
63 lines (51 loc) · 1.94 KB
/
AuthenticationActionCreators.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { AuthError } from 'msal';
import { AnyAction } from 'redux';
import { AccessTokenResponse } from './AccessTokenResponse';
import { IdTokenResponse } from './IdTokenResponse';
import { IAccountInfo } from './interfaces';
import { AuthenticationActions, AuthenticationState } from './enums';
export abstract class AuthenticationActionCreators {
public static initializing = (): AnyAction => ({
type: AuthenticationActions.Initializing,
});
public static initialized = (): AnyAction => ({
type: AuthenticationActions.Initialized,
});
public static loginSuccessful = (data: IAccountInfo): AnyAction => ({
payload: data,
type: AuthenticationActions.LoginSuccess,
});
public static loginFailed = (): AnyAction => ({
type: AuthenticationActions.LoginFailed,
});
public static loginError = (error: AuthError): AnyAction => ({
payload: error,
type: AuthenticationActions.LoginError,
});
public static clearError = (): AnyAction => ({
type: AuthenticationActions.ClearError,
});
public static logoutSuccessful = (): AnyAction => ({
type: AuthenticationActions.LogoutSuccess,
});
public static acquireIdTokenSuccess = (token: IdTokenResponse): AnyAction => ({
payload: token,
type: AuthenticationActions.AcquiredIdTokenSuccess,
});
public static acquireIdTokenError = (error: AuthError): AnyAction => ({
payload: error,
type: AuthenticationActions.AcquiredIdTokenError,
});
public static acquireAccessTokenSuccess = (token: AccessTokenResponse): AnyAction => ({
payload: token,
type: AuthenticationActions.AcquiredAccessTokenSuccess,
});
public static acquireAccessTokenError = (error: AuthError): AnyAction => ({
payload: error,
type: AuthenticationActions.AcquiredAccessTokenError,
});
public static authenticatedStateChanged = (state: AuthenticationState): AnyAction => ({
payload: state,
type: AuthenticationActions.AuthenticatedStateChanged,
});
}