60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import {
|
|
ReduxActionTypes,
|
|
ReduxActionErrorTypes,
|
|
} from "constants/ReduxActionConstants";
|
|
import { CurrentUserDetailsRequestPayload } from "constants/userConstants";
|
|
import { VerifyTokenRequest, TokenPasswordUpdateRequest } from "api/UserApi";
|
|
|
|
export const logoutUserSuccess = () => ({
|
|
type: ReduxActionTypes.LOGOUT_USER_SUCCESS,
|
|
});
|
|
|
|
export const logoutUserError = (error: any) => ({
|
|
type: ReduxActionErrorTypes.LOGOUT_USER_ERROR,
|
|
payload: {
|
|
error,
|
|
},
|
|
});
|
|
|
|
export const fetchCurrentUser = () => ({
|
|
type: ReduxActionTypes.FETCH_USER_INIT,
|
|
payload: CurrentUserDetailsRequestPayload,
|
|
});
|
|
|
|
export const setCurrentUserDetails = () => ({
|
|
type: ReduxActionTypes.SET_CURRENT_USER_INIT,
|
|
payload: CurrentUserDetailsRequestPayload,
|
|
});
|
|
|
|
export const verifyInviteSuccess = () => ({
|
|
type: ReduxActionTypes.VERIFY_INVITE_SUCCESS,
|
|
});
|
|
|
|
export const verifyInvite = (payload: VerifyTokenRequest) => ({
|
|
type: ReduxActionTypes.VERIFY_INVITE_INIT,
|
|
payload,
|
|
});
|
|
|
|
export const verifyInviteError = (error: any) => ({
|
|
type: ReduxActionErrorTypes.VERIFY_INVITE_ERROR,
|
|
payload: { error },
|
|
});
|
|
|
|
export const invitedUserSignup = (
|
|
payload: TokenPasswordUpdateRequest & { resolve: any; reject: any },
|
|
) => ({
|
|
type: ReduxActionTypes.INVITED_USER_SIGNUP,
|
|
payload,
|
|
});
|
|
|
|
export const invitedUserSignupSuccess = () => ({
|
|
type: ReduxActionTypes.INVITED_USER_SIGNUP_SUCCESS,
|
|
});
|
|
|
|
export const invitedUserSignupError = (error: any) => ({
|
|
type: ReduxActionErrorTypes.INVITED_USER_SIGNUP_ERROR,
|
|
payload: {
|
|
error,
|
|
},
|
|
});
|