X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/97599484adf25a991f6733854334676dd55f7260..f6daa8a9318d5d7bec1cb173d8897cfcb9826157:/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 65c2761b7c..2a30ae4783 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -10,7 +10,6 @@ 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"; @@ -22,73 +21,77 @@ import { EmptyDetails } from "./empty-details"; import { DetailsData } from "./details-data"; import { DetailsResource } from "~/models/details"; 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'; +import { FileDetails } from '~/views-components/details-panel/file-details'; +import { getNode } from '~/models/tree'; -type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer'; +type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'tabContainer'; const DRAWER_WIDTH = 320; -const SLIDE_TIMEOUT = 500; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { - width: 0, - overflow: 'hidden', - transition: `width ${SLIDE_TIMEOUT}ms 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: DRAWER_WIDTH, }, container: { + maxWidth: 'none', width: DRAWER_WIDTH, }, - drawerPaper: { - position: 'relative', - 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 res = resource || { kind: undefined, name: 'Projects' }; - switch (res.kind) { - case ResourceKind.PROJECT: - return new ProjectDetails(res); - case ResourceKind.COLLECTION: - return new CollectionDetails(res); - case ResourceKind.PROCESS: - return new ProcessDetails(res); - default: - return new EmptyDetails(res as EmptyResource); +const EMPTY_RESOURCE: EmptyResource = { kind: undefined, name: 'Projects' }; + +const getItem = (res: DetailsResource, resourceData?: ResourceData): DetailsData => { + if ('kind' in res) { + switch (res.kind) { + case ResourceKind.PROJECT: + return new ProjectDetails(res); + case ResourceKind.COLLECTION: + return new CollectionDetails(res, resourceData); + case ResourceKind.PROCESS: + return new ProcessDetails(res); + default: + return new EmptyDetails(res); + } + } else { + return new FileDetails(res); } }; -const mapStateToProps = ({ detailsPanel, resources }: RootState) => { - const resource = getResource(detailsPanel.resourceUuid)(resources) as DetailsResource; +const mapStateToProps = ({ detailsPanel, resources, resourcesData, collectionPanelFiles }: RootState) => { + const resource = getResource(detailsPanel.resourceUuid)(resources) as DetailsResource | undefined; + const file = getNode(detailsPanel.resourceUuid)(collectionPanelFiles); + const resourceData = getResourceData(detailsPanel.resourceUuid)(resourcesData); return { isOpened: detailsPanel.isOpened, - item: getItem(resource) + item: getItem(resource || (file && file.value) || EMPTY_RESOURCE, resourceData) }; }; const mapDispatchToProps = (dispatch: Dispatch) => ({ onCloseDrawer: () => { - dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); + dispatch(toggleDetailsPanel()); } }); @@ -131,24 +134,33 @@ export const DetailsPanel = withStyles(styles)( renderContent() { const { classes, onCloseDrawer, item } = this.props; const { tabsValue } = this.state; - return - - - - {item.getIcon(classes.headerIcon)} - - - - - {item.getTitle()} - - - - - - {} - - + return + + + {item.getIcon(classes.headerIcon)} + + + + + {item.getTitle()} + + + + + + + @@ -158,11 +170,9 @@ export const DetailsPanel = withStyles(styles)( - - {tabsValue === 0 - ? item.getDetails() - : null} - + {tabsValue === 0 + ? item.getDetails() + : null} ; }