X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e6079cd17a140bb75d4b104161902d487823aa36..123bae90530147cf31e220066999b416d3610ae2:/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 c0d4797fa5..fe434b6c73 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -3,13 +3,13 @@ // 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'; import { RootState } from '~/store/store'; -import { detailsPanelActions } from "~/store/details-panel/details-panel-action"; import { CloseIcon } from '~/components/icon/icon'; import { EmptyResource } from '~/models/empty'; import { Dispatch } from "redux"; @@ -20,54 +20,51 @@ 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'; +import { getResource } from '~/store/resources/resources'; +import { ResourceData } from "~/store/resources-data/resources-data-reducer"; +import { getResourceData } from "~/store/resources-data/resources-data"; +import { toggleDetailsPanel, SLIDE_TIMEOUT } from '~/store/details-panel/details-panel-action'; -type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer'; +type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'tabContainer'; -const drawerWidth = 320; +const DRAWER_WIDTH = 320; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { - width: 0, - overflowX: 'hidden', - transition: 'width 0.5s ease', background: theme.palette.background.paper, borderLeft: `1px solid ${theme.palette.divider}`, height: '100%', + overflow: 'hidden', + transition: `width ${SLIDE_TIMEOUT}ms ease`, + width: 0, }, opened: { - width: drawerWidth, + width: DRAWER_WIDTH, }, container: { - width: drawerWidth, - }, - drawerPaper: { - position: 'relative', - width: drawerWidth + maxWidth: 'none', + width: DRAWER_WIDTH, }, headerContainer: { color: theme.palette.grey["600"], margin: `${theme.spacing.unit}px 0`, - textAlign: 'center' + textAlign: 'center', }, headerIcon: { - fontSize: '2.125rem' - }, - headerTitle: { - overflowWrap: 'break-word', - wordWrap: 'break-word' + fontSize: '2.125rem', }, tabContainer: { - padding: theme.spacing.unit * 3 - } + overflow: 'auto', + padding: theme.spacing.unit * 3, + }, }); -const getItem = (resource: DetailsResource): DetailsData => { +const getItem = (resource: DetailsResource, resourceData?: ResourceData): DetailsData => { const res = resource || { kind: undefined, name: 'Projects' }; switch (res.kind) { case ResourceKind.PROJECT: return new ProjectDetails(res); case ResourceKind.COLLECTION: - return new CollectionDetails(res); + return new CollectionDetails(res, resourceData); case ResourceKind.PROCESS: return new ProcessDetails(res); default: @@ -75,17 +72,18 @@ const getItem = (resource: DetailsResource): DetailsData => { } }; -const mapStateToProps = ({ detailsPanel, resources }: RootState) => { +const mapStateToProps = ({ detailsPanel, resources, resourcesData }: RootState) => { const resource = getResource(detailsPanel.resourceUuid)(resources) as DetailsResource; + const resourceData = getResourceData(detailsPanel.resourceUuid)(resourcesData); return { isOpened: detailsPanel.isOpened, - item: getItem(resource) + item: getItem(resource, resourceData) }; }; const mapDispatchToProps = (dispatch: Dispatch) => ({ onCloseDrawer: () => { - dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); + dispatch(toggleDetailsPanel()); } }); @@ -108,50 +106,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} + + ; + } } ) );