X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/22cfdad7a451f67b0b4c195b58815cdf2abcfda9..eeb82d50816250cc6287928e6d958affa73880ee:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 6f39ac78e0..7cccfe3034 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -9,11 +9,21 @@ import Drawer from '@material-ui/core/Drawer'; import AppBar from '@material-ui/core/AppBar'; import Toolbar from '@material-ui/core/Toolbar'; import Typography from '@material-ui/core/Typography'; -import { connect } from "react-redux"; -import { RootState } from "../../store/root-reducer"; +import { connect, DispatchProp } from "react-redux"; +import Tree from "../../components/tree/tree"; +import { Project } from "../../models/project"; import ProjectList from "../../components/project-list/project-list"; import { Route, Switch } from "react-router"; import { Link } from "react-router-dom"; +import Button from "@material-ui/core/Button/Button"; +import authActions from "../../store/auth/auth-action"; +import IconButton from "@material-ui/core/IconButton/IconButton"; +import Menu from "@material-ui/core/Menu/Menu"; +import MenuItem from "@material-ui/core/MenuItem/MenuItem"; +import { AccountCircle } from "@material-ui/icons"; +import { User } from "../../models/user"; +import Grid from "@material-ui/core/Grid/Grid"; +import { RootState } from "../../store/store"; import { actions as projectActions } from "../../store/project-action"; import ProjectTree, { WorkbenchProps } from '../../components/project-tree/project-tree'; @@ -29,8 +39,8 @@ const styles: StyleRulesCallback = (theme: Theme) => ({ overflow: 'hidden', position: 'relative', display: 'flex', - width: '100%', - height: '100%' + width: '100vw', + height: '100vh' }, appBar: { zIndex: theme.zIndex.drawer + 1, @@ -44,40 +54,117 @@ const styles: StyleRulesCallback = (theme: Theme) => ({ flexGrow: 1, backgroundColor: theme.palette.background.default, padding: theme.spacing.unit * 3, + height: '100%', minWidth: 0, }, toolbar: theme.mixins.toolbar }); -class Workbench extends React.Component> { +interface WorkbenchDataProps { + projects: Project[]; + user?: User; +} + +interface WorkbenchActionProps { +} + +type WorkbenchProps = WorkbenchDataProps & WorkbenchActionProps & DispatchProp & WithStyles; + +interface WorkbenchState { + anchorEl: any; +} + +class Workbench extends React.Component { + constructor(props: WorkbenchProps) { + super(props); + this.state = { + anchorEl: null + } + } + + login = () => { + this.props.dispatch(authActions.LOGIN()); + }; + + logout = () => { + this.handleClose(); + this.props.dispatch(authActions.LOGOUT()); + }; + + handleOpenMenu = (event: React.MouseEvent) => { + this.setState({ + anchorEl: event.currentTarget + }); + }; + + handleClose = () => { + this.setState({ + anchorEl: null + }); + }; + render() { - const { classes } = this.props; + const {classes, user} = this.props; return (
- - Arvados
Workbench 2 + + Arvados
Workbench 2
+ {user ? + + + + {user.firstName} {user.lastName} + + + + + + + + + Logout + My account + + + : + + }
+ {user && -
- + - + toggleProjectTreeItem={this.props.toggleProjectTreeItem}/> + }
-
+
- - Hello new workbench! - - +
@@ -85,10 +172,11 @@ class Workbench extends React.Component> { } } -export default connect( +export default connect( (state: RootState) => ({ - projects: state.projects - }), { + projects: state.projects, + user: state.auth.user + }){ toggleProjectTreeItem: (id: string) => projectActions.toggleProjectTreeItem(id) } )(