0ae41c657e34b925acb909084b848b9bb4cce31c
[arvados-workbench2.git] / src / views-components / api-token / api-token.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Redirect, RouteProps } from "react-router";
6 import * as React from "react";
7 import { connect, DispatchProp } from "react-redux";
8 import { getUserDetails, saveApiToken } from "../../store/auth/auth-action";
9 import { getProjectList } from "../../store/project/project-action";
10 import { getUrlParameter } from "../../common/url";
11 import { AuthService } from "../../services/auth-service/auth-service";
12
13 interface ApiTokenProps {
14     authService: AuthService;
15 }
16
17 export const ApiToken = connect()(
18     class extends React.Component<ApiTokenProps & RouteProps & DispatchProp<any>, {}> {
19         componentDidMount() {
20             const search = this.props.location ? this.props.location.search : "";
21             const apiToken = getUrlParameter(search, 'api_token');
22             this.props.dispatch(saveApiToken(apiToken));
23             this.props.dispatch<any>(getUserDetails()).then(() => {
24                 const rootUuid = this.props.authService.getRootUuid();
25                 this.props.dispatch(getProjectList(rootUuid));
26             });
27         }
28         render() {
29             return <Redirect to="/"/>;
30         }
31     }
32 );