X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/37e43f4e19ad2bd27b15fe7f0d857218dad39055..0b8ff9b1183bcbee9672058c851fa4265f98afab:/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 a298d670..f0075558 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,36 +21,40 @@ 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' | 'tabContainer'; +type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'tabContainer'; -const drawerWidth = 320; +const DRAWER_WIDTH = 320; +const SLIDE_TIMEOUT = 500; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - container: { + root: { + background: theme.palette.background.paper, + borderLeft: `1px solid ${theme.palette.divider}`, + height: '100%', + overflow: 'hidden', + transition: `width ${SLIDE_TIMEOUT}ms ease`, width: 0, - position: 'relative', - height: 'auto', - transition: 'width 0.5s ease', - '&$opened': { - width: drawerWidth - } }, - opened: {}, - drawerPaper: { - position: 'relative', - width: drawerWidth + opened: { + width: DRAWER_WIDTH, + }, + container: { + maxWidth: 'none', + width: DRAWER_WIDTH, }, headerContainer: { color: theme.palette.grey["600"], margin: `${theme.spacing.unit}px 0`, - textAlign: 'center' + textAlign: 'center', }, headerIcon: { - fontSize: "34px" + fontSize: '2.125rem', }, tabContainer: { - padding: theme.spacing.unit * 3 - } + overflow: 'auto', + padding: theme.spacing.unit * 3, + }, }); const getItem = (resource: DetailsResource): DetailsData => { @@ -66,10 +71,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: () => { @@ -96,51 +104,68 @@ 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} + + ; + } } ) );