Merge branch '14434-display-workflow-name'
[arvados-workbench2.git] / src / views-components / api-token / api-token.tsx
index 1d017ccdffe754ab0fa7ca1dc2777b5fcd985c61..43c55a92c9addbd8031fd537b5c59528b620e7ca 100644 (file)
@@ -2,15 +2,20 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { Redirect, RouteProps } from "react-router";
+import { RouteProps } from "react-router";
 import * as React from "react";
 import { connect, DispatchProp } from "react-redux";
-import { authActions, getUserDetails } from "../../store/auth/auth-action";
-import { authService } from "../../services/services";
-import { getProjectList } from "../../store/project/project-action";
-import { getUrlParameter } from "../../common/url";
+import { authActions, getUserDetails, saveApiToken } from "~/store/auth/auth-action";
+import { getUrlParameter } from "~/common/url";
+import { AuthService } from "~/services/auth-service/auth-service";
+import { navigateToRootProject } from "~/store/navigation/navigation-action";
+import { User } from "~/models/user";
+import { Config } from "~/common/config";
+import { initSessions } from "~/store/auth/auth-action-session";
 
 interface ApiTokenProps {
+    authService: AuthService;
+    config: Config;
 }
 
 export const ApiToken = connect()(
@@ -18,14 +23,15 @@ export const ApiToken = connect()(
         componentDidMount() {
             const search = this.props.location ? this.props.location.search : "";
             const apiToken = getUrlParameter(search, 'api_token');
-            this.props.dispatch(authActions.SAVE_API_TOKEN(apiToken));
-            this.props.dispatch<any>(getUserDetails()).then(() => {
-                const rootUuid = authService.getRootUuid();
-                this.props.dispatch(getProjectList(rootUuid));
+            this.props.dispatch(saveApiToken(apiToken));
+            this.props.dispatch<any>(getUserDetails()).then((user: User) => {
+                this.props.dispatch(initSessions(this.props.authService, this.props.config, user));
+            }).finally(() => {
+                this.props.dispatch(navigateToRootProject);
             });
         }
         render() {
-            return <Redirect to="/"/>;
+            return <div/>;
         }
     }
 );