merge conflicts
[arvados.git] / src / views-components / api-token / api-token.tsx
index e4ba4914a3518e95c557f3f93cc28293717dbd63..1d017ccdffe754ab0fa7ca1dc2777b5fcd985c61 100644 (file)
@@ -5,33 +5,27 @@
 import { Redirect, RouteProps } from "react-router";
 import * as React from "react";
 import { connect, DispatchProp } from "react-redux";
-import authActions, { getUserDetails } from "../../store/auth/auth-action";
+import { authActions, getUserDetails } from "../../store/auth/auth-action";
 import { authService } from "../../services/services";
 import { getProjectList } from "../../store/project/project-action";
+import { getUrlParameter } from "../../common/url";
 
 interface ApiTokenProps {
 }
 
-class ApiToken extends React.Component<ApiTokenProps & RouteProps & DispatchProp<any>, {}> {
-    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<ApiTokenProps & RouteProps & DispatchProp<any>, {}> {
+        componentDidMount() {
+            const search = this.props.location ? this.props.location.search : "";
+            const apiToken = getUrlParameter(search, 'api_token');
+            this.props.dispatch(authActions.SAVE_API_TOKEN(apiToken));
+            this.props.dispatch<any>(getUserDetails()).then(() => {
+                const rootUuid = authService.getRootUuid();
+                this.props.dispatch(getProjectList(rootUuid));
+            });
+        }
+        render() {
+            return <Redirect to="/"/>;
+        }
     }
-
-    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<any>(getUserDetails()).then(() => {
-            const rootUuid = authService.getRootUuid();
-            this.props.dispatch(getProjectList(rootUuid));
-        });
-    }
-    render() {
-        return <Redirect to="/"/>;
-    }
-}
-
-export default connect()(ApiToken);
+);