X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ac0824da1999359c43df8ef0eba924494a666fe7..f62ba0aeff590ef1c57669d4f46e43b5ee169522:/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 43c55a92..f4b50e36 100644 --- a/src/views-components/api-token/api-token.tsx +++ b/src/views-components/api-token/api-token.tsx @@ -5,17 +5,18 @@ import { RouteProps } from "react-router"; import * as React from "react"; import { connect, DispatchProp } from "react-redux"; -import { authActions, getUserDetails, saveApiToken } from "~/store/auth/auth-action"; +import { 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 { navigateToRootProject, navigateToLinkAccount } from "~/store/navigation/navigation-action"; import { Config } from "~/common/config"; -import { initSessions } from "~/store/auth/auth-action-session"; +import { getAccountLinkData } from "~/store/link-account-panel/link-account-panel-actions"; +import { replace } from "react-router-redux"; interface ApiTokenProps { authService: AuthService; config: Config; + loadMainApp: boolean; } export const ApiToken = connect()( @@ -23,15 +24,26 @@ 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((user: User) => { - this.props.dispatch(initSessions(this.props.authService, this.props.config, user)); - }).finally(() => { - this.props.dispatch(navigateToRootProject); + const loadMainApp = this.props.loadMainApp; + this.props.dispatch(saveApiToken(apiToken)).finally(() => { + const redirectURL = this.props.authService.getTargetURL(); + + if (loadMainApp) { + if (redirectURL) { + this.props.authService.removeTargetURL(); + this.props.dispatch(replace(redirectURL)); + } + else if (this.props.dispatch(getAccountLinkData())) { + this.props.dispatch(navigateToLinkAccount); + } + else { + this.props.dispatch(navigateToRootProject); + } + } }); } render() { - return
; + return
; } } );