X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/5e805cf2209d3afe42699e4658d8a12e50bcd5a4..cee5b3efd5287a0e88254f3088b1d4ef80a38dd9:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 49922202..22ed30e9 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 from 'react'; +import React, { useState } 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"; @@ -20,7 +20,6 @@ import { MultipleFilesRemoveDialog } from 'views-components/file-remove-dialog/m 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 { ChangeWorkflowDialog } from 'views-components/run-process-dialog/change-workflow-dialog'; import { CreateProjectDialog } from 'views-components/dialog-forms/create-project-dialog'; import { CreateCollectionDialog } from 'views-components/dialog-forms/create-collection-dialog'; @@ -34,7 +33,6 @@ import { MoveProjectDialog } from 'views-components/dialog-forms/move-project-di 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 { ProcessCommandDialog } from 'views-components/process-command-dialog/process-command-dialog'; import { RemoveProcessDialog } from 'views-components/process-remove-dialog/process-remove-dialog'; import { MainContentBar } from 'views-components/main-content-bar/main-content-bar'; import { Grid } from '@material-ui/core'; @@ -47,7 +45,7 @@ import { SearchResultsPanel } from 'views/search-results-panel/search-results-pa import { SshKeyPanel } from 'views/ssh-key-panel/ssh-key-panel'; import { SshKeyAdminPanel } from 'views/ssh-key-panel/ssh-key-admin-panel'; import { SiteManagerPanel } from "views/site-manager-panel/site-manager-panel"; -import { MyAccountPanel } from 'views/my-account-panel/my-account-panel'; +import { UserProfilePanel } from 'views/user-profile-panel/user-profile-panel'; import { SharingDialog } from 'views-components/sharing-dialog/sharing-dialog'; import { NotFoundDialog } from 'views-components/not-found-dialog/not-found-dialog'; import { AdvancedTabDialog } from 'views-components/advanced-tab-dialog/advanced-tab-dialog'; @@ -80,8 +78,9 @@ import { UserPanel } from 'views/user-panel/user-panel'; import { UserAttributesDialog } from 'views-components/user-dialog/attributes-dialog'; import { CreateUserDialog } from 'views-components/dialog-forms/create-user-dialog'; import { HelpApiClientAuthorizationDialog } from 'views-components/api-client-authorizations-dialog/help-dialog'; -import { UserManageDialog } from 'views-components/user-dialog/manage-dialog'; -import { SetupShellAccountDialog } from 'views-components/dialog-forms/setup-shell-account-dialog'; +import { DeactivateDialog } from 'views-components/user-dialog/deactivate-dialog'; +import { ActivateDialog } from 'views-components/user-dialog/activate-dialog'; +import { SetupDialog } from 'views-components/user-dialog/setup-dialog'; import { GroupsPanel } from 'views/groups-panel/groups-panel'; import { RemoveGroupDialog } from 'views-components/groups-dialog/remove-dialog'; import { GroupAttributesDialog } from 'views-components/groups-dialog/attributes-dialog'; @@ -158,7 +157,6 @@ let routes = <> - @@ -172,7 +170,8 @@ let routes = <> - + + @@ -187,8 +186,16 @@ const reduceRoutesFn: (a: React.ReactElement[], routes = React.createElement(React.Fragment, null, pluginConfig.centerPanelList.reduce(reduceRoutesFn, React.Children.toArray(routes.props.children))); export const WorkbenchPanel = - withStyles(styles)((props: WorkbenchPanelProps) => - + withStyles(styles)((props: WorkbenchPanelProps) =>{ + const [isExpanded, setIsExpanded] = useState(false) + + const expandRightPanel = (): void=> { + const rightPanel: Element = document.getElementsByClassName('layout-pane')[1] + rightPanel.setAttribute('style', `width: ${isExpanded ? getSplitterInitialSize() : 100}%`) + setIsExpanded(!isExpanded) + } + + return {props.sessionIdleTimeout > 0 && } } + {props.isNotLinking && } @@ -241,7 +249,6 @@ export const WorkbenchPanel = - @@ -259,7 +266,6 @@ export const WorkbenchPanel = - @@ -267,10 +273,12 @@ export const WorkbenchPanel = - + + + {React.createElement(React.Fragment, null, pluginConfig.dialogs)} - + } );