X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/9e4b7889a99ff2f76d8029aef3a85c4620178ba3..f3834ab9fef93773ad3f2063b38468b2fed51325:/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 7656bf87..548dfe77 100644 --- a/src/views-components/api-token/api-token.tsx +++ b/src/views-components/api-token/api-token.tsx @@ -2,35 +2,50 @@ // // 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 from "../../store/auth/auth-action"; -import { authService, projectService } from "../../services/services"; +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"; +import { replace } from "react-router-redux"; interface ApiTokenProps { + authService: AuthService; + config: Config; + loadMainApp: boolean; } -class ApiToken extends React.Component, {}> { - static getUrlParameter(search: string, name: string) { - const safeName = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]'); - const regex = new RegExp('[\\?&]' + safeName + '=([^&#]*)'); - const results = regex.exec(search); - return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' ')); - } +export const ApiToken = connect()( + class extends React.Component, {}> { + componentDidMount() { + const search = this.props.location ? this.props.location.search : ""; + const apiToken = getUrlParameter(search, 'api_token'); + const loadMainApp = this.props.loadMainApp; + this.props.dispatch(saveApiToken(apiToken)).finally(() => { + const redirectURL = this.props.authService.getTargetURL(); - componentDidMount() { - const search = this.props.location ? this.props.location.search : ""; - const apiToken = ApiToken.getUrlParameter(search, 'api_token'); - this.props.dispatch(authActions.SAVE_API_TOKEN(apiToken)); - this.props.dispatch(authService.getUserDetails()).then(() => { - const rootUuid = authService.getRootUuid(); - this.props.dispatch(projectService.getProjectList(rootUuid)); - }); - } - render() { - return ; + setTimeout(() => { + 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); + } + } + }, 0); + }); + } + render() { + return
; + } } -} - -export default connect()(ApiToken); +);