15088: Saves account link data in session storage and logs out
[arvados-workbench2.git] / src / views / link-account-panel / link-account-panel-root.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import {
7     StyleRulesCallback,
8     WithStyles,
9     withStyles,
10     Card,
11     CardContent,
12     Button,
13     Typography,
14     Grid,
15 } from '@material-ui/core';
16 import { ArvadosTheme } from '~/common/custom-theme';
17 import { User } from "~/models/user";
18 import { LinkAccountType } from "~/models/link-account";
19 import { formatDate }from "~/common/formatters";
20
21 type CssRules = 'root';// | 'gridItem' | 'label' | 'title' | 'actions';
22
23 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
24     root: {
25         width: '100%',
26         overflow: 'auto'
27     }
28 });
29
30 export interface LinkAccountPanelRootDataProps {
31     user?: User;
32 }
33
34 export interface LinkAccountPanelRootActionProps {
35     saveAccountLinkData: (type: LinkAccountType) => void;
36 }
37
38 type LinkAccountPanelRootProps = LinkAccountPanelRootDataProps & LinkAccountPanelRootActionProps & WithStyles<CssRules>;
39
40 export const LinkAccountPanelRoot = withStyles(styles) (
41     ({classes, user, saveAccountLinkData}: LinkAccountPanelRootProps) => {
42         return <Card className={classes.root}>
43             <CardContent>
44             <Grid container spacing={24}>
45             { user && <Grid container item direction="column" spacing={24}>
46                 <Grid item>
47                     You are currently logged in as <b>{user.email}</b> ({user.username}, {user.uuid}) created on <b>{formatDate(user.createdAt)}</b>
48                 </Grid>
49                 <Grid item>
50                     You can link Arvados accounts. After linking, either login will take you to the same account.
51                 </Grid>
52             </Grid> }
53             <Grid container item direction="row" spacing={24}>
54                 <Grid item>
55                     <Button color="primary" variant="contained" onClick={() => saveAccountLinkData(LinkAccountType.ADD_OTHER_LOGIN)}>
56                         Add another login to this account
57                     </Button>
58                 </Grid>
59                 <Grid item>
60                     <Button color="primary" variant="contained" onClick={() => saveAccountLinkData(LinkAccountType.ACCESS_OTHER_ACCOUNT)}>
61                         Use this login to access another account
62                     </Button>
63                 </Grid>
64             </Grid>
65             </Grid>
66             </CardContent>
67         </Card>;
68 });