X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4bbaf2a0cede89ea50d63d210c6631adc1970620..ade15546a44f9930095b1047318967e9a74dbc68:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 0aecc0d2b5..6a8698fd7f 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -9,22 +9,25 @@ 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 dataExplorerActions from "../../store/data-explorer/data-explorer-action"; import { User } from "../../models/user"; import { RootState } from "../../store/store"; -import MainAppBar, { MainAppBarActionProps, MainAppBarMenuItem } from '../../components/main-app-bar/main-app-bar'; +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 from "../../store/project/project-action"; -import ProjectTree from '../../components/project-tree/project-tree'; +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 { projectService } from '../../services/services'; -import { findTreeBranch } from '../../store/project/project-reducer'; -import DataExplorer from '../data-explorer/data-explorer'; +import { getTreePath, findTreeItem } from '../../store/project/project-reducer'; +import ProjectPanel from '../project-panel/project-panel'; +import { PROJECT_EXPLORER_ID } from '../../views-components/project-explorer/project-explorer'; +import { ProjectExplorerItem } from '../../views-components/project-explorer/project-explorer-item'; const drawerWidth = 240; +const appBarHeight = 102; -type CssRules = 'root' | 'appBar' | 'drawerPaper' | 'content' | 'toolbar'; +type CssRules = 'root' | 'appBar' | 'drawerPaper' | 'content' | 'contentWrapper' | 'toolbar'; const styles: StyleRulesCallback = (theme: Theme) => ({ root: { @@ -46,12 +49,17 @@ const styles: StyleRulesCallback = (theme: Theme) => ({ position: 'relative', width: drawerWidth, }, - content: { - flexGrow: 1, + contentWrapper: { backgroundColor: theme.palette.background.default, - padding: theme.spacing.unit * 3, - height: '100%', + display: "flex", + flexGrow: 1, minWidth: 0, + paddingTop: appBarHeight + }, + content: { + padding: theme.spacing.unit * 3, + overflowY: "auto", + flexGrow: 1 }, toolbar: theme.mixins.toolbar }); @@ -133,12 +141,13 @@ class Workbench extends React.Component { if (status === TreeItemStatus.Loaded) { this.openProjectItem(itemId); } else { - this.props.dispatch(projectService.getProjectList(itemId)).then(() => this.openProjectItem(itemId)); + this.props.dispatch(getProjectList(itemId)) + .then(() => this.openProjectItem(itemId)); } } openProjectItem = (itemId: string) => { - const branch = findTreeBranch(this.props.projects, itemId); + const branch = getTreePath(this.props.projects, itemId); this.setState({ breadcrumbs: branch.map(item => ({ label: item.data.name, @@ -148,6 +157,18 @@ class Workbench extends React.Component { }); this.props.dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM(itemId)); this.props.dispatch(push(`/project/${itemId}`)); + + const project = findTreeItem(this.props.projects, itemId); + const items: ProjectExplorerItem[] = project && project.items + ? project.items.map(({ data }) => ({ + uuid: data.uuid, + name: data.name, + type: data.kind, + owner: data.ownerUuid, + lastModified: data.modifiedAt + })) + : []; + this.props.dispatch(dataExplorerActions.SET_ITEMS({ id: PROJECT_EXPLORER_ID, items })); } render() { @@ -174,12 +195,12 @@ class Workbench extends React.Component { projects={this.props.projects} toggleProjectTreeItem={this.toggleProjectTreeItem} /> } -
-
-
- - - +
+
+ + + +
);