X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/47e0dc87fa82bac593c53518e556ba7c55410288..83d8f6e889dde0b9c971d794f79f98556b2fdf14:/src/views-components/api-token/api-token.tsx diff --git a/src/views-components/api-token/api-token.tsx b/src/views-components/api-token/api-token.tsx index 1d017ccd..718d3589 100644 --- a/src/views-components/api-token/api-token.tsx +++ b/src/views-components/api-token/api-token.tsx @@ -2,15 +2,16 @@ // // 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 { 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"; interface ApiTokenProps { + authService: AuthService; } export const ApiToken = connect()( @@ -18,14 +19,13 @@ 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(getUserDetails()).then(() => { - const rootUuid = authService.getRootUuid(); - this.props.dispatch(getProjectList(rootUuid)); + this.props.dispatch(saveApiToken(apiToken)); + this.props.dispatch(getUserDetails()).finally(() => { + this.props.dispatch(navigateToRootProject); }); } render() { - return ; + return
; } } );