// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { StyleRulesCallback, Theme, WithStyles, withStyles } from '@material-ui/core/styles'; import Drawer from '@material-ui/core/Drawer'; import { connect, DispatchProp } from "react-redux"; import { Route, Switch } from "react-router"; import authActions from "../../store/auth/auth-action"; import { User } from "../../models/user"; import { RootState } from "../../store/store"; import MainAppBar, { MainAppBarActionProps, MainAppBarMenuItem } from '../../views-components/main-app-bar/main-app-bar'; import { Breadcrumb } from '../../components/breadcrumbs/breadcrumbs'; import { push } from 'react-router-redux'; import projectActions, { getProjectList } from "../../store/project/project-action"; import ProjectTree from '../../views-components/project-tree/project-tree'; import { TreeItem, TreeItemStatus } from "../../components/tree/tree"; import { Project } from "../../models/project"; import { getTreePath } from '../../store/project/project-reducer'; import ProjectPanel from '../project-panel/project-panel'; const drawerWidth = 240; const appBarHeight = 102; type CssRules = 'root' | 'appBar' | 'drawerPaper' | 'content' | 'contentWrapper' | 'toolbar'; const styles: StyleRulesCallback = (theme: Theme) => ({ root: { flexGrow: 1, zIndex: 1, overflow: 'hidden', position: 'relative', display: 'flex', width: '100vw', height: '100vh' }, appBar: { zIndex: theme.zIndex.drawer + 1, backgroundColor: '#692498', position: "absolute", width: "100%" }, drawerPaper: { position: 'relative', width: drawerWidth, }, contentWrapper: { backgroundColor: theme.palette.background.default, display: "flex", flexGrow: 1, minWidth: 0, paddingTop: appBarHeight }, content: { padding: theme.spacing.unit * 3, overflowY: "auto", flexGrow: 1 }, toolbar: theme.mixins.toolbar }); interface WorkbenchDataProps { projects: Array>; user?: User; } interface WorkbenchActionProps { } type WorkbenchProps = WorkbenchDataProps & WorkbenchActionProps & DispatchProp & WithStyles; interface NavBreadcrumb extends Breadcrumb { itemId: string; status: TreeItemStatus; } 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 { state = { anchorEl: null, searchText: "", breadcrumbs: [], 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()) } ] } }; mainAppBarActions: MainAppBarActionProps = { onBreadcrumbClick: ({ itemId, status }: NavBreadcrumb) => { this.toggleProjectTreeItem(itemId, status); }, onSearch: searchText => { this.setState({ searchText }); this.props.dispatch(push(`/search?q=${searchText}`)); }, onMenuItemClick: (menuItem: NavMenuItem) => menuItem.action() }; toggleProjectTreeItem = (itemId: string, status: TreeItemStatus) => { if (status === TreeItemStatus.Loaded) { this.openProjectItem(itemId); } else { this.props.dispatch(getProjectList(itemId)) .then(() => this.openProjectItem(itemId)); } } openProjectItem = (itemId: string) => { const branch = getTreePath(this.props.projects, itemId); this.setState({ breadcrumbs: branch.map(item => ({ label: item.data.name, itemId: item.data.uuid, status: item.status })) }); this.props.dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM(itemId)); this.props.dispatch(push(`/project/${itemId}`)); } render() { const { classes, user } = this.props; return (
{user &&
}
); } } export default connect( (state: RootState) => ({ projects: state.projects, user: state.auth.user }) )( withStyles(styles)(Workbench) );