X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/2c2bd28224c2480276ae714c54ab1be0a6896efd..97599484adf25a991f6733854334676dd55f7260:/src/views-components/details-panel/details-panel.tsx diff --git a/src/views-components/details-panel/details-panel.tsx b/src/views-components/details-panel/details-panel.tsx index 21d57aea..65c2761b 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -3,8 +3,9 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { Drawer, IconButton, Tabs, Tab, Typography, Grid } from '@material-ui/core'; +import { IconButton, Tabs, Tab, Typography, Grid, Tooltip } from '@material-ui/core'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; +import { Transition } from 'react-transition-group'; import { ArvadosTheme } from '~/common/custom-theme'; import * as classnames from "classnames"; import { connect } from 'react-redux'; @@ -20,24 +21,30 @@ import { ProcessDetails } from "./process-details"; import { EmptyDetails } from "./empty-details"; import { DetailsData } from "./details-data"; import { DetailsResource } from "~/models/details"; +import { getResource } from '~/store/resources/resources'; -type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer'; +type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer'; -const drawerWidth = 320; +const DRAWER_WIDTH = 320; +const SLIDE_TIMEOUT = 500; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - container: { + root: { width: 0, - position: 'relative', - height: 'auto', - transition: 'width 0.5s ease', - '&$opened': { - width: drawerWidth - } + overflow: 'hidden', + transition: `width ${SLIDE_TIMEOUT}ms ease`, + background: theme.palette.background.paper, + borderLeft: `1px solid ${theme.palette.divider}`, + height: '100%', + }, + opened: { + width: DRAWER_WIDTH, + }, + container: { + width: DRAWER_WIDTH, }, - opened: {}, drawerPaper: { position: 'relative', - width: drawerWidth + width: DRAWER_WIDTH }, headerContainer: { color: theme.palette.grey["600"], @@ -52,7 +59,8 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ wordWrap: 'break-word' }, tabContainer: { - padding: theme.spacing.unit * 3 + padding: theme.spacing.unit * 3, + overflow: 'auto', } }); @@ -70,10 +78,13 @@ const getItem = (resource: DetailsResource): DetailsData => { } }; -const mapStateToProps = ({ detailsPanel }: RootState) => ({ - isOpened: detailsPanel.isOpened, - item: getItem(detailsPanel.item as DetailsResource) -}); +const mapStateToProps = ({ detailsPanel, resources }: RootState) => { + const resource = getResource(detailsPanel.resourceUuid)(resources) as DetailsResource; + return { + isOpened: detailsPanel.isOpened, + item: getItem(resource) + }; +}; const mapDispatchToProps = (dispatch: Dispatch) => ({ onCloseDrawer: () => { @@ -100,51 +111,61 @@ export const DetailsPanel = withStyles(styles)( this.setState({ tabsValue: value }); } - renderTabContainer = (children: React.ReactElement) => - - {children} - - render() { - const { classes, onCloseDrawer, isOpened, item } = this.props; - const { tabsValue } = this.state; + const { classes, isOpened } = this.props; return ( - - - - - - {item.getIcon(classes.headerIcon)} - - - - {item.getTitle()} - - - - - {} - - - - - - - - - {tabsValue === 0 && this.renderTabContainer( - - {item.getDetails()} - - )} - {tabsValue === 1 && this.renderTabContainer( - - )} - - + + + {this.renderContent()} + + ); } + + renderContent() { + const { classes, onCloseDrawer, item } = this.props; + const { tabsValue } = this.state; + return + + + + {item.getIcon(classes.headerIcon)} + + + + + {item.getTitle()} + + + + + + {} + + + + + + + + + + + + + {tabsValue === 0 + ? item.getDetails() + : null} + + + ; + } } ) );