Add displaying logged user name
[arvados-workbench2.git] / src / views / workbench / workbench.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
7 import { StyleRulesCallback, Theme, WithStyles, withStyles } from '@material-ui/core/styles';
8 import Drawer from '@material-ui/core/Drawer';
9 import AppBar from '@material-ui/core/AppBar';
10 import Toolbar from '@material-ui/core/Toolbar';
11 import Typography from '@material-ui/core/Typography';
12 import { connect, DispatchProp } from "react-redux";
13 import Tree from "../../components/tree/tree";
14 import { Project } from "../../models/project";
15 import { RootState } from "../../store/root-reducer";
16 import ProjectList from "../../components/project-list/project-list";
17 import { Route, Switch } from "react-router";
18 import { Link } from "react-router-dom";
19 import Button from "@material-ui/core/Button/Button";
20 import authActions from "../../store/auth-action";
21 import { authService } from "../../services/services";
22 import IconButton from "@material-ui/core/IconButton/IconButton";
23 import Menu from "@material-ui/core/Menu/Menu";
24 import MenuItem from "@material-ui/core/MenuItem/MenuItem";
25 import { AccountCircle } from "@material-ui/icons";
26 import { User } from "../../models/user";
27
28 const drawerWidth = 240;
29
30 type CssRules = 'root' | 'appBar' | 'drawerPaper' | 'content' | 'toolbar';
31
32 const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
33     root: {
34         flexGrow: 1,
35         zIndex: 1,
36         overflow: 'hidden',
37         position: 'relative',
38         display: 'flex',
39         width: '100vw',
40         height: '100vh'
41     },
42     appBar: {
43         zIndex: theme.zIndex.drawer + 1,
44         backgroundColor: '#692498'
45     },
46     drawerPaper: {
47         position: 'relative',
48         width: drawerWidth,
49     },
50     content: {
51         flexGrow: 1,
52         backgroundColor: theme.palette.background.default,
53         padding: theme.spacing.unit * 3,
54         height: '100%',
55         minWidth: 0,
56     },
57     toolbar: theme.mixins.toolbar
58 });
59
60 interface WorkbenchDataProps {
61     projects: Project[];
62     user: User;
63 }
64
65 interface WorkbenchActionProps {
66 }
67
68 type WorkbenchProps = WorkbenchDataProps & WorkbenchActionProps & DispatchProp & WithStyles<CssRules>;
69
70 interface WorkbenchState {
71     anchorEl: any;
72 }
73
74 class Workbench extends React.Component<WorkbenchProps, WorkbenchState> {
75     constructor(props: WorkbenchProps) {
76         super(props);
77         this.state = {
78             anchorEl: null
79         }
80     }
81
82     login = () => {
83         this.props.dispatch(authActions.LOGIN());
84     };
85
86     logout = () => {
87         this.handleClose();
88         this.props.dispatch(authActions.LOGOUT());
89     };
90
91     handleOpenMenu = (event: React.MouseEvent<any>) => {
92         this.setState({
93             anchorEl: event.currentTarget
94         });
95     };
96
97     handleClose = () => {
98         this.setState({
99             anchorEl: null
100         });
101     };
102
103     render() {
104         const {classes} = this.props;
105         const userLoggedIn = authService.isUserLoggedIn();
106         return (
107             <div className={classes.root}>
108                 <AppBar position="absolute" className={classes.appBar}>
109                     <Toolbar>
110                         <Typography variant="title" color="inherit" noWrap style={{flexGrow: 1}}>
111                             <span>Arvados</span><br/><span style={{fontSize: 12}}>Workbench 2</span>
112                         </Typography>
113                         {userLoggedIn ?
114                             <div>
115                                 <Typography variant="title" color="inherit" noWrap>
116                                     {this.props.user.firstName} {this.props.user.lastName}
117                                 </Typography>
118                                 <IconButton
119                                       aria-owns={this.state.anchorEl ? 'menu-appbar' : undefined}
120                                       aria-haspopup="true"
121                                       onClick={this.handleOpenMenu}
122                                       color="inherit">
123                                   <AccountCircle/>
124                                 </IconButton>
125                                 <Menu
126                                   id="menu-appbar"
127                                   anchorEl={this.state.anchorEl}
128                                   anchorOrigin={{
129                                     vertical: 'top',
130                                     horizontal: 'right',
131                                   }}
132                                   transformOrigin={{
133                                     vertical: 'top',
134                                     horizontal: 'right',
135                                   }}
136                                   open={!!this.state.anchorEl}
137                                   onClose={this.handleClose}>
138                                   <MenuItem onClick={this.logout}>Logout</MenuItem>
139                                   <MenuItem onClick={this.handleClose}>My account</MenuItem>
140                                 </Menu>
141                             </div>
142                             :
143                             <Button color="inherit" onClick={this.login}>Login</Button>
144                         }
145                     </Toolbar>
146                 </AppBar>
147                 {userLoggedIn &&
148                 <Drawer
149                     variant="permanent"
150                     classes={{
151                         paper: classes.drawerPaper,
152                     }}>
153                     <div className={classes.toolbar}/>
154                     <Tree items={this.props.projects} render={(p: Project) =>
155                         <Link to={`/project/${p.name}`}>{p.name}</Link>
156                     }/>
157                 </Drawer>}
158                 <main className={classes.content}>
159                     <div className={classes.toolbar}/>
160                     <Switch>
161                         <Route path="/project/:name" component={ProjectList}/>
162                     </Switch>
163                 </main>
164             </div>
165         );
166     }
167 }
168
169 export default connect<WorkbenchDataProps>(
170     (state: RootState) => ({
171         projects: state.projects,
172         user: state.auth.user!
173     })
174 )(
175     withStyles(styles)(Workbench)
176 );