X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/bae676cf6c9130ec6ef9708b86343024d11034b2..3367b1ff2a1d1050bb435f7bc8230c03435b2529:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 7c76a0b1..776850ce 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -4,23 +4,16 @@ import * as React from 'react'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; -import { connect, DispatchProp } from "react-redux"; import { Route, Switch } from "react-router"; -import { login, logout } 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 { push } from 'react-router-redux'; import { ProjectPanel } from "~/views/project-panel/project-panel"; import { DetailsPanel } from '~/views-components/details-panel/details-panel'; import { ArvadosTheme } from '~/common/custom-theme'; -import { detailsPanelActions } from "~/store/details-panel/details-panel-action"; import { ContextMenu } from "~/views-components/context-menu/context-menu"; import { FavoritePanel } from "../favorite-panel/favorite-panel"; import { CurrentTokenDialog } from '~/views-components/current-token-dialog/current-token-dialog'; +import { RichTextEditorDialog } from '~/views-components/rich-text-editor-dialog/rich-text-editor-dialog'; import { Snackbar } from '~/views-components/snackbar/snackbar'; import { CollectionPanel } from '../collection-panel/collection-panel'; -import { AuthService } from "~/services/auth-service/auth-service"; import { RenameFileDialog } from '~/views-components/rename-file-dialog/rename-file-dialog'; import { FileRemoveDialog } from '~/views-components/file-remove-dialog/file-remove-dialog'; import { MultipleFilesRemoveDialog } from '~/views-components/file-remove-dialog/multiple-files-remove-dialog'; @@ -28,196 +21,109 @@ import { Routes } from '~/routes/routes'; import { SidePanel } from '~/views-components/side-panel/side-panel'; import { ProcessPanel } from '~/views/process-panel/process-panel'; import { ProcessLogPanel } from '~/views/process-log-panel/process-log-panel'; -import { Breadcrumbs } from '~/views-components/breadcrumbs/breadcrumbs'; import { CreateProjectDialog } from '~/views-components/dialog-forms/create-project-dialog'; import { CreateCollectionDialog } from '~/views-components/dialog-forms/create-collection-dialog'; import { CopyCollectionDialog } from '~/views-components/dialog-forms/copy-collection-dialog'; +import { CopyProcessDialog } from '~/views-components/dialog-forms/copy-process-dialog'; import { UpdateCollectionDialog } from '~/views-components/dialog-forms/update-collection-dialog'; +import { UpdateProcessDialog } from '~/views-components/dialog-forms/update-process-dialog'; import { UpdateProjectDialog } from '~/views-components/dialog-forms/update-project-dialog'; +import { MoveProcessDialog } from '~/views-components/dialog-forms/move-process-dialog'; import { MoveProjectDialog } from '~/views-components/dialog-forms/move-project-dialog'; import { MoveCollectionDialog } from '~/views-components/dialog-forms/move-collection-dialog'; import { FilesUploadCollectionDialog } from '~/views-components/dialog-forms/files-upload-collection-dialog'; import { PartialCopyCollectionDialog } from '~/views-components/dialog-forms/partial-copy-collection-dialog'; - import { TrashPanel } from "~/views/trash-panel/trash-panel"; -import { MainContentBar } from '../../views-components/main-content-bar/main-content-bar'; - -const APP_BAR_HEIGHT = 100; +import { MainContentBar } from '~/views-components/main-content-bar/main-content-bar'; +import { Grid } from '@material-ui/core'; +import { SharedWithMePanel } from '../shared-with-me-panel/shared-with-me-panel'; +import SplitterLayout from 'react-splitter-layout'; +import { ProcessCommandDialog } from '~/views-components/process-command-dialog/process-command-dialog'; +import { WorkflowPanel } from '~/views/workflow-panel/workflow-panel'; -type CssRules = 'root' | 'appBar' | 'content' | 'contentWrapper'; +type CssRules = 'root' | 'container' | 'splitter' | 'asidePanel' | 'contentWrapper' | 'content'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { - flexGrow: 1, - zIndex: 1, - overflow: 'hidden', - position: 'relative', - display: 'flex', - width: '100vw', - height: '100vh' + paddingTop: theme.spacing.unit * 7, + background: theme.palette.background.default + }, + container: { + position: 'relative' + }, + splitter: { + '& > .layout-splitter': { + width: '2px' + } }, - appBar: { - zIndex: theme.zIndex.drawer + 1, - position: "absolute", - width: "100%" + asidePanel: { + paddingTop: theme.spacing.unit, + height: '100%' }, contentWrapper: { - backgroundColor: theme.palette.background.default, - display: "flex", - flexGrow: 1, - minWidth: 0, - paddingTop: APP_BAR_HEIGHT + paddingTop: theme.spacing.unit, + minWidth: 0 }, content: { - padding: `${theme.spacing.unit}px ${theme.spacing.unit * 3}px`, - overflowY: "auto", - flexGrow: 1, - position: 'relative' - }, + minWidth: 0, + paddingLeft: theme.spacing.unit * 3, + paddingRight: theme.spacing.unit * 3, + } }); -interface WorkbenchDataProps { - user?: User; - currentToken?: string; -} - -interface WorkbenchGeneralProps { - authService: AuthService; - buildInfo: string; -} - -interface WorkbenchActionProps { -} - -type WorkbenchProps = WorkbenchDataProps & WorkbenchGeneralProps & WorkbenchActionProps & DispatchProp & WithStyles; - -interface NavMenuItem extends MainAppBarMenuItem { - action: () => void; -} - -interface WorkbenchState { - isCurrentTokenDialogOpen: boolean; - anchorEl: any; - searchText: string; - menuItems: { - accountMenu: NavMenuItem[], - helpMenu: NavMenuItem[], - anonymousMenu: NavMenuItem[] - }; -} - -export const Workbench = withStyles(styles)( - connect( - (state: RootState) => ({ - user: state.auth.user, - currentToken: state.auth.apiToken, - }) - )( - class extends React.Component { - state = { - isCurrentTokenDialogOpen: false, - anchorEl: null, - searchText: "", - breadcrumbs: [], - menuItems: { - accountMenu: [ - { - label: 'Current token', - action: () => this.toggleCurrentTokenModal() - }, - { - label: "Logout", - action: () => this.props.dispatch(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(login()) - } - ] - } - }; - - render() { - const { classes, user } = this.props; - return ( -
-
- -
- {user && } -
- {this.props.user && } -
- - - - - - - - -
- {user && } -
- - - - - - - - - - - - - - - - -
- ); - } - - mainAppBarActions: MainAppBarActionProps = { - onSearch: searchText => { - this.setState({ searchText }); - this.props.dispatch(push(`/search?q=${searchText}`)); - }, - onMenuItemClick: (menuItem: NavMenuItem) => menuItem.action(), - onDetailsPanelToggle: () => { - this.props.dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); - }, - }; - - toggleDetailsPanel = () => { - this.props.dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); - } - - toggleCurrentTokenModal = () => { - this.setState({ isCurrentTokenDialogOpen: !this.state.isCurrentTokenDialogOpen }); - } - } - ) -); +type WorkbenchPanelProps = WithStyles; + +export const WorkbenchPanel = + withStyles(styles)(({ classes }: WorkbenchPanelProps) => + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + );