X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/3b53b656e65fdabc32b3bc748074eb35e9df98eb..c952afae1af2fb31b68be04f70bd7ae6f9d52aba:/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 9ce84867..399f4ef4 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -2,30 +2,30 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; 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 { ArvadosTheme } from 'common/custom-theme'; +import classnames from "classnames"; import { connect } from 'react-redux'; -import { RootState } from '~/store/store'; -import { CloseIcon } from '~/components/icon/icon'; -import { EmptyResource } from '~/models/empty'; +import { RootState } from 'store/store'; +import { CloseIcon } from 'components/icon/icon'; +import { EmptyResource } from 'models/empty'; import { Dispatch } from "redux"; -import { ResourceKind } from "~/models/resource"; +import { ResourceKind } from "models/resource"; import { ProjectDetails } from "./project-details"; import { CollectionDetails } from "./collection-details"; 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 { 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'; +import { DetailsResource } from "models/details"; +import { Config } from 'common/config'; +import { isInlineFileUrlSafe } from "../context-menu/actions/helpers"; +import { getResource } from 'store/resources/resources'; +import { toggleDetailsPanel, SLIDE_TIMEOUT, openDetailsPanel } 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' | 'tabContainer'; @@ -56,19 +56,19 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, tabContainer: { overflow: 'auto', - padding: theme.spacing.unit * 3, + padding: theme.spacing.unit * 1, }, }); const EMPTY_RESOURCE: EmptyResource = { kind: undefined, name: 'Projects' }; -const getItem = (res: DetailsResource, resourceData?: ResourceData): DetailsData => { +const getItem = (res: DetailsResource): DetailsData => { if ('kind' in res) { switch (res.kind) { case ResourceKind.PROJECT: return new ProjectDetails(res); case ResourceKind.COLLECTION: - return new CollectionDetails(res, resourceData); + return new CollectionDetails(res); case ResourceKind.PROCESS: return new ProcessDetails(res); default: @@ -79,26 +79,35 @@ const getItem = (res: DetailsResource, resourceData?: ResourceData): DetailsData } }; -const mapStateToProps = ({ detailsPanel, resources, resourcesData, collectionPanelFiles }: RootState) => { +const mapStateToProps = ({ auth, detailsPanel, resources, collectionPanelFiles }: RootState) => { const resource = getResource(detailsPanel.resourceUuid)(resources) as DetailsResource | undefined; - const file = getNode(detailsPanel.resourceUuid)(collectionPanelFiles); - const resourceData = getResourceData(detailsPanel.resourceUuid)(resourcesData); + const file = resource + ? undefined + : getNode(detailsPanel.resourceUuid)(collectionPanelFiles); return { + authConfig: auth.config, isOpened: detailsPanel.isOpened, - item: getItem(resource || (file && file.value) || EMPTY_RESOURCE, resourceData), + tabNr: detailsPanel.tabNr, + res: resource || (file && file.value) || EMPTY_RESOURCE, }; }; const mapDispatchToProps = (dispatch: Dispatch) => ({ onCloseDrawer: () => { dispatch(toggleDetailsPanel()); - } + }, + setActiveTab: (tabNr: number) => { + dispatch(openDetailsPanel(undefined, tabNr)); + }, }); export interface DetailsPanelDataProps { onCloseDrawer: () => void; + setActiveTab: (tabNr: number) => void; + authConfig: Config; isOpened: boolean; - item: DetailsData; + tabNr: number; + res: DetailsResource; } type DetailsPanelProps = DetailsPanelDataProps & WithStyles; @@ -106,12 +115,18 @@ type DetailsPanelProps = DetailsPanelDataProps & WithStyles; export const DetailsPanel = withStyles(styles)( connect(mapStateToProps, mapDispatchToProps)( class extends React.Component { - state = { - tabsValue: 0 - }; + shouldComponentUpdate(nextProps: DetailsPanelProps) { + if ('etag' in nextProps.res && 'etag' in this.props.res && + nextProps.res.etag === this.props.res.etag && + nextProps.isOpened === this.props.isOpened && + nextProps.tabNr === this.props.tabNr) { + return false; + } + return true; + } - handleChange = (event: any, value: boolean) => { - this.setState({ tabsValue: value }); + handleChange = (event: any, value: number) => { + this.props.setActiveTab(value); } render() { @@ -125,16 +140,27 @@ export const DetailsPanel = withStyles(styles)( in={isOpened} timeout={SLIDE_TIMEOUT} unmountOnExit> - {this.renderContent()} + {isOpened ? this.renderContent() :
} ); } renderContent() { - const { classes, onCloseDrawer, item } = this.props; - const { tabsValue } = this.state; + const { classes, onCloseDrawer, res, tabNr, authConfig } = this.props; + + let shouldShowInlinePreview = false; + if (!('kind' in res)) { + shouldShowInlinePreview = isInlineFileUrlSafe( + res ? res.url : "", + authConfig.keepWebServiceUrl, + authConfig.keepWebInlineServiceUrl + ) || authConfig.clusterConfig.Collections.TrustAllContent; + } + + const item = getItem(res); return - - - + = tabNr+1) ? tabNr : 0}> + { item.getTabLabels().map((tabLabel, idx) => + ) + } - {tabsValue === 0 - ? item.getDetails() - : null} + {item.getDetails({tabNr, showPreview: shouldShowInlinePreview})} ; }