Introduce service repository
[arvados.git] / src / store / auth / auth-action.ts
index e9930a02836da5d66c7e062813a5fd292784f973..8b268cce5d5cb83b68f7a73e9a4b66936f4dd8c3 100644 (file)
@@ -4,8 +4,9 @@
 
 import { ofType, default as unionize, UnionOf } from "unionize";
 import { Dispatch } from "redux";
-import { authService } from "../../services/services";
 import { User } from "../../models/user";
+import { RootState } from "../store";
+import { ServiceRepository } from "../../services/services";
 
 export const authActions = unionize({
     SAVE_API_TOKEN: ofType<string>(),
@@ -19,9 +20,9 @@ export const authActions = unionize({
     value: 'payload'
 });
 
-export const getUserDetails = () => (dispatch: Dispatch): Promise<User> => {
+export const getUserDetails = () => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): Promise<User> => {
     dispatch(authActions.USER_DETAILS_REQUEST());
-    return authService.getUserDetails().then(details => {
+    return services.authService.getUserDetails().then(details => {
         dispatch(authActions.USER_DETAILS_SUCCESS(details));
         return details;
     });