15027: Cleans up unused imports.
[arvados-workbench2.git] / src / views / login-panel / login-panel.tsx
index 151311d0c3ef6575d34a235b0e52c57e443dcfff..debede12faf4be7c9c0a5371e2fda6b95535791e 100644 (file)
@@ -4,10 +4,11 @@
 
 import * as React from 'react';
 import { connect, DispatchProp } from 'react-redux';
-import { Grid, Typography, Button } from '@material-ui/core';
+import { Grid, Typography, Button, Select } from '@material-ui/core';
 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
-import { login } from '~/store/auth/auth-action';
+import { login, authActions } from '~/store/auth/auth-action';
 import { ArvadosTheme } from '~/common/custom-theme';
+import { RootState } from '~/store/store';
 import * as classNames from 'classnames';
 
 type CssRules = 'root' | 'container' | 'title' | 'content' | 'content__bolder' | 'button';
@@ -48,33 +49,56 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     }
 });
 
-type LoginPanelProps = DispatchProp<any> & WithStyles<CssRules>;
+type LoginPanelProps = DispatchProp<any> & WithStyles<CssRules> & {
+    remoteHosts: { [key: string]: string },
+    homeCluster: string,
+    uuidPrefix: string
+};
 
-export const LoginPanel = withStyles(styles)(connect()(
-    ({ classes, dispatch }: LoginPanelProps) =>
-    <Grid container direction="column" item xs alignItems="center" justify="center" className={classes.root}>
-        <Grid item className={classes.container}>
-            <Typography variant='h6' align="center" className={classes.title}>
-                Welcome to the Arvados Workbench
-            </Typography>
-            <Typography  className={classes.content}>
-                The "Log in" button below will show you a Google sign-in page.
-                After you assure Google that you want to log in here with your Google account, you will be redirected back here to Arvados Workbench.
-            </Typography>
-            <Typography  className={classes.content}>
-                If you have never used Arvados Workbench before, logging in for the first time will automatically create a new account.
-            </Typography>
-            <Typography variant='body1' className={classNames(classes.content, classes.content__bolder)}>
-                IMPORTANT: Please keep in mind to store exploratory data only but not any information used for clinical decision making.
-            </Typography>
-            <Typography  className={classes.content}>
-                Arvados Workbench uses your name and email address only for identification, and does not retrieve any other personal information from Google.
-            </Typography>
-            <Typography component="div" align="right">
-                <Button variant="contained" color="primary" className={classes.button} onClick={() => dispatch(login())}>
-                    Log in
-                </Button>
-            </Typography>
-        </Grid>
-    </Grid>
-));
+export const LoginPanel = withStyles(styles)(
+    connect((state: RootState) => ({
+        remoteHosts: state.auth.remoteHosts,
+        homeCluster: state.auth.homeCluster,
+        uuidPrefix: state.auth.localCluster
+    }))(({ classes, dispatch, remoteHosts, homeCluster, uuidPrefix }: LoginPanelProps) =>
+        <Grid container justify="center" alignItems="center"
+            className={classes.root}
+            style={{ marginTop: 56, overflowY: "auto", height: "100%" }}>
+            <Grid item className={classes.container}>
+                <Typography variant='h6' align="center" className={classes.title}>
+                    Welcome to the Arvados Workbench
+               </Typography>
+                <Typography className={classes.content}>
+                    The "Log in" button below will show you a Google sign-in page.
+                    After you assure Google that you want to log in here with your Google account, you will be redirected back here to Arvados Workbench.
+               </Typography>
+                <Typography className={classes.content}>
+                    If you have never used Arvados Workbench before, logging in for the first time will automatically create a new account.
+               </Typography>
+                <Typography variant='body1' className={classNames(classes.content, classes.content__bolder)}>
+                    IMPORTANT: Please keep in mind to store exploratory data only but not any information used for clinical decision making.
+               </Typography>
+                <Typography className={classes.content}>
+                    Arvados Workbench uses your name and email address only for identification, and does not retrieve any other personal information from Google.
+               </Typography>
+
+                {Object.keys(remoteHosts).length > 1 &&
+                    <Typography component="div" align="right">
+                        <label>Please select the cluster that hosts your user account:</label>
+                        <Select native value={homeCluster} style={{ margin: "1em" }}
+                            onChange={(event) => dispatch(authActions.SET_HOME_CLUSTER(event.target.value))}>
+                            {Object.keys(remoteHosts).map((k) => <option key={k} value={k}>{k}</option>)}
+                        </Select>
+                    </Typography>}
+
+                <Typography component="div" align="right">
+                    <Button variant="contained" color="primary" style={{ margin: "1em" }} className={classes.button}
+                        onClick={() => dispatch(login(uuidPrefix, homeCluster, remoteHosts))}>
+                        Log in to {uuidPrefix}
+                        {uuidPrefix !== homeCluster &&
+                            <span>&nbsp;with user from {homeCluster}</span>}
+                    </Button>
+                </Typography>
+            </Grid>
+        </Grid >
+    ));