X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cee5b3efd5287a0e88254f3088b1d4ef80a38dd9..4dd738fa98e3726fcd99a37e334b5ea8db4e5ee0:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 22ed30e9ed..d549c52935 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import React, { useState } from 'react'; +import React from 'react'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; import { Route, Switch } from "react-router"; import { ProjectPanel } from "views/project-panel/project-panel"; @@ -41,6 +41,7 @@ import { SharedWithMePanel } from 'views/shared-with-me-panel/shared-with-me-pan import { RunProcessPanel } from 'views/run-process-panel/run-process-panel'; import SplitterLayout from 'react-splitter-layout'; import { WorkflowPanel } from 'views/workflow-panel/workflow-panel'; +import { RegisteredWorkflowPanel } from 'views/workflow-panel/registered-workflow-panel'; import { SearchResultsPanel } from 'views/search-results-panel/search-results-panel'; import { SshKeyPanel } from 'views/ssh-key-panel/ssh-key-panel'; import { SshKeyAdminPanel } from 'views/ssh-key-panel/ssh-key-admin-panel'; @@ -99,6 +100,8 @@ import { RestoreCollectionVersionDialog } from 'views-components/collections-dia import { WebDavS3InfoDialog } from 'views-components/webdav-s3-dialog/webdav-s3-dialog'; import { pluginConfig } from 'plugins'; import { ElementListReducer } from 'common/plugintypes'; +import { COLLAPSE_ICON_SIZE } from 'views-components/side-panel-toggle/side-panel-toggle' +import { Banner } from 'views-components/baner/banner'; type CssRules = 'root' | 'container' | 'splitter' | 'asidePanel' | 'contentWrapper' | 'content'; @@ -112,7 +115,11 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, splitter: { '& > .layout-splitter': { - width: '2px' + width: '2px', + }, + '& > .layout-splitter-disabled': { + pointerEvents: 'none', + cursor: 'pointer' } }, asidePanel: { @@ -137,6 +144,7 @@ interface WorkbenchDataProps { isUserActive: boolean; isNotLinking: boolean; sessionIdleTimeout: number; + sidePanelIsCollapsed: boolean; } type WorkbenchPanelProps = WithStyles & WorkbenchDataProps; @@ -159,6 +167,7 @@ let routes = <> + @@ -185,15 +194,24 @@ const reduceRoutesFn: (a: React.ReactElement[], routes = React.createElement(React.Fragment, null, pluginConfig.centerPanelList.reduce(reduceRoutesFn, React.Children.toArray(routes.props.children))); +const applyCollapsedState = (isCollapsed) => { + const rightPanel: Element = document.getElementsByClassName('layout-pane')[1] + const totalWidth: number = document.getElementsByClassName('splitter-layout')[0]?.clientWidth + const rightPanelExpandedWidth = ((totalWidth - COLLAPSE_ICON_SIZE)) / (totalWidth / 100) + if (rightPanel) { + rightPanel.setAttribute('style', `width: ${isCollapsed ? rightPanelExpandedWidth : getSplitterInitialSize()}%`) + } + const splitter = document.getElementsByClassName('layout-splitter')[0] + isCollapsed ? splitter?.classList.add('layout-splitter-disabled') : splitter?.classList.remove('layout-splitter-disabled') + +} + export const WorkbenchPanel = - withStyles(styles)((props: WorkbenchPanelProps) =>{ - const [isExpanded, setIsExpanded] = useState(false) + withStyles(styles)((props: WorkbenchPanelProps) => { - const expandRightPanel = (): void=> { - const rightPanel: Element = document.getElementsByClassName('layout-pane')[1] - rightPanel.setAttribute('style', `width: ${isExpanded ? getSplitterInitialSize() : 100}%`) - setIsExpanded(!isExpanded) - } + //panel size will not scale automatically on window resize, so we do it manually + window.addEventListener('resize', () => applyCollapsedState(props.sidePanelIsCollapsed)) + applyCollapsedState(props.sidePanelIsCollapsed) return {props.sessionIdleTimeout > 0 && } @@ -206,7 +224,6 @@ export const WorkbenchPanel = } - {props.isNotLinking && } @@ -279,6 +296,8 @@ export const WorkbenchPanel = + {React.createElement(React.Fragment, null, pluginConfig.dialogs)} - } + + } );