// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { Redirect, 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"; interface ApiTokenProps { authService: AuthService; } export const ApiToken = connect()( class extends React.Component, {}> { 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)); }); } render() { return ; } } );