X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6e4ce0e45818dac7d6abc6456e85d49798d16458..973fce01f05a50d4aa0169a88281f20476b305b2:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 3e22385224..f45394718e 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -9,20 +9,27 @@ 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 Tree from "../../components/tree/tree"; -import { Project } from "../../models/project"; -import { RootState } from "../../store/root-reducer"; +import { connect, DispatchProp } from "react-redux"; 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-action"; -import { authService } from "../../services/services"; +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 projectActions from "../../store/project/project-action" + +import ProjectTree from '../../components/project-tree/project-tree'; +import { TreeItem } from "../../components/tree/tree"; +import { Project } from "../../models/project"; +import { projectService } from '../../services/services'; +import ProjectExplorer from '../project-explorer/project-explorer'; +import { push } from 'react-router-redux'; const drawerWidth = 240; @@ -57,15 +64,14 @@ const styles: StyleRulesCallback = (theme: Theme) => ({ }); interface WorkbenchDataProps { - projects: Project[]; + projects: Array>; + user?: User; } interface WorkbenchActionProps { - login?: () => void; - logout?: () => void; } -type WorkbenchProps = WorkbenchDataProps & WorkbenchActionProps & WithStyles; +type WorkbenchProps = WorkbenchDataProps & WorkbenchActionProps & DispatchProp & WithStyles; interface WorkbenchState { anchorEl: any; @@ -80,12 +86,12 @@ class Workbench extends React.Component { } login = () => { - this.props.login!(); + this.props.dispatch(authActions.LOGIN()); }; logout = () => { this.handleClose(); - this.props.logout!(); + this.props.dispatch(authActions.LOGOUT()); }; handleOpenMenu = (event: React.MouseEvent) => { @@ -100,9 +106,15 @@ class Workbench extends React.Component { }); }; + toggleProjectTreeItem = (itemId: string) => { + this.props.dispatch(projectService.getProjectList(itemId)).then(() => { + this.props.dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM(itemId)); + this.props.dispatch(push(`/project/${itemId}`)) + }); + }; + render() { - const {classes} = this.props; - const userLoggedIn = authService.isUserLoggedIn(); + const {classes, user} = this.props; return (
@@ -110,15 +122,22 @@ class Workbench extends React.Component { Arvados
Workbench 2
- {userLoggedIn ? -
- - - + {user ? + + + + {user.firstName} {user.lastName} + + + + + + + { Logout My account -
+ : }
- {userLoggedIn && + {user &&
- - {p.name} - }/> + }
- +
@@ -165,11 +184,9 @@ class Workbench extends React.Component { export default connect( (state: RootState) => ({ - projects: state.projects - }), { - login: authActions.login, - logout: authActions.logout - } + projects: state.projects, + user: state.auth.user + }) )( withStyles(styles)(Workbench) );