X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/9438812a13875c06996ed7190f8faf21011910bd..227ffcbd2efe8cccd4a9025344b09632630cff14:/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 0ae41c65..e11afa7b 100644 --- a/src/views-components/api-token/api-token.tsx +++ b/src/views-components/api-token/api-token.tsx @@ -2,16 +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 { getUserDetails, saveApiToken } from "../../store/auth/auth-action"; -import { getProjectList } from "../../store/project/project-action"; -import { getUrlParameter } from "../../common/url"; -import { AuthService } from "../../services/auth-service/auth-service"; +import { saveApiToken } from "~/store/auth/auth-action"; +import { getUrlParameter } from "~/common/url"; +import { AuthService } from "~/services/auth-service/auth-service"; +import { navigateToRootProject, navigateToLinkAccount } from "~/store/navigation/navigation-action"; +import { Config } from "~/common/config"; +import { getAccountLinkData } from "~/store/link-account-panel/link-account-panel-actions"; interface ApiTokenProps { authService: AuthService; + config: Config; + loadMainApp: boolean; } export const ApiToken = connect()( @@ -19,14 +23,20 @@ export const ApiToken = connect()( componentDidMount() { const search = this.props.location ? this.props.location.search : ""; const apiToken = getUrlParameter(search, 'api_token'); - this.props.dispatch(saveApiToken(apiToken)); - this.props.dispatch(getUserDetails()).then(() => { - const rootUuid = this.props.authService.getRootUuid(); - this.props.dispatch(getProjectList(rootUuid)); + const loadMainApp = this.props.loadMainApp; + this.props.dispatch(saveApiToken(apiToken)).finally(() => { + if (loadMainApp) { + if (this.props.dispatch(getAccountLinkData())) { + this.props.dispatch(navigateToLinkAccount); + } + else { + this.props.dispatch(navigateToRootProject); + } + } }); } render() { - return ; + return
; } } );