From: Michal Klobukowski Date: Wed, 13 Jun 2018 06:02:51 +0000 (+0200) Subject: Merge master branch X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/28bb06ae7b9983da793f2459c5cc3e8debd71949?hp=-c Merge master branch Feature #13590 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- 28bb06ae7b9983da793f2459c5cc3e8debd71949 diff --combined src/views/workbench/workbench.tsx index f002ad9a9a,d18d113bcb..3d0a7ad310 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@@ -10,8 -10,6 +10,6 @@@ import AppBar from '@material-ui/core/A import Toolbar from '@material-ui/core/Toolbar'; import Typography from '@material-ui/core/Typography'; 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"; @@@ -24,9 -22,12 +22,14 @@@ import { AccountCircle } from "@materia import { User } from "../../models/user"; import Grid from "@material-ui/core/Grid/Grid"; import { RootState } from "../../store/store"; +import MainAppBar, { MainAppBarActionProps, MainAppBarMenuItems, MainAppBarMenuItem } from '../../components/main-app-bar/main-app-bar'; +import { Breadcrumb } from '../../components/breadcrumbs/breadcrumbs'; +import { push } from 'react-router-redux'; + 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'; const drawerWidth = 240; @@@ -44,9 -45,7 +47,9 @@@ const styles: StyleRulesCallback>; user?: User; } @@@ -72,104 -71,107 +75,109 @@@ interface WorkbenchActionProps type WorkbenchProps = WorkbenchDataProps & WorkbenchActionProps & DispatchProp & WithStyles; +interface NavBreadcrumb extends Breadcrumb { + path: string +} + +interface NavMenuItem extends MainAppBarMenuItem { + action: () => void +} + interface WorkbenchState { anchorEl: any; + breadcrumbs: NavBreadcrumb[]; + searchText: string; + menuItems: { + accountMenu: NavMenuItem[], + helpMenu: NavMenuItem[], + anonymousMenu: NavMenuItem[] + }; } class Workbench extends React.Component { - constructor(props: WorkbenchProps) { - super(props); - this.state = { - anchorEl: null + state = { + anchorEl: null, + searchText: "", + breadcrumbs: [ + { + label: "Projects", + path: "/projects" + }, { + label: "Project 1", + path: "/projects/project-1" + } + ], + menuItems: { + accountMenu: [ + { + label: "Logout", + action: () => this.props.dispatch(authActions.LOGOUT()) + }, + { + label: "My account", + action: () => this.props.dispatch(push("/my-account")) + } + ], + helpMenu: [ + { + label: "Help", + action: () => this.props.dispatch(push("/help")) + } + ], + anonymousMenu: [ + { + label: "Sign in", + action: () => this.props.dispatch(authActions.LOGIN()) + } + ] } } - 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 - }); - }; + mainAppBarActions: MainAppBarActionProps = { + onBreadcrumbClick: (breadcrumb: NavBreadcrumb) => this.props.dispatch(push(breadcrumb.path)), + onSearch: searchText => { + this.setState({ searchText }); + this.props.dispatch(push(`/search?q=${searchText}`)); + }, + onMenuItemClick: (menuItem: NavMenuItem) => menuItem.action() + } + toggleProjectTreeItem = (itemId: string) => { + this.props.dispatch(projectService.getProjectList(itemId)).then(() => { + this.props.dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM(itemId)); + }); + }; + render() { - const {classes, user} = this.props; + const { classes, user } = this.props; return (
- - - - Arvados
Workbench 2 -
- {user ? - - - - {user.firstName} {user.lastName} - - - - - - - - - Logout - My account - - - : - - } -
-
+
+ +
{user && - -
-
- - {p.name} - } /> - } + +
+ + }
-
+
+
- +