19504: Add spacing between breadcrumbs and mpv buttons, allow breadcrumbs to wrap
[arvados.git] / src / views-components / details-panel / details-panel.tsx
index 16c1f92f44f90204552c3a8db821ccd873fe1a10..e9175f57ba423e5069064db69876ddef15c97e1c 100644 (file)
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import * as React from 'react';
-import Drawer from '@material-ui/core/Drawer';
-import IconButton from "@material-ui/core/IconButton";
-import CloseIcon from '@material-ui/icons/Close';
-import { StyleRulesCallback, WithStyles, withStyles, Theme } from "@material-ui/core/styles";
-import Tabs from '@material-ui/core/Tabs';
-import Tab from '@material-ui/core/Tab';
-import Typography from '@material-ui/core/Typography';
-
-function TabContainer(props: any) {
-       return (
-               <Typography component="div" style={{ padding: 8 * 3 }}>
-                       {props.children}
-               </Typography>
-       );
-}
+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 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 { Dispatch } from "redux";
+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 { WorkflowDetails } from "./workflow-details";
+import { DetailsData } from "./details-data";
+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';
+import { resourceIsFrozen } from 'common/frozen-resources';
 
-export interface DetailsPanelProps {
-    toggleDrawer: (isOpened: boolean) => void;
-    isOpened: boolean;
-}
+type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'tabContainer';
+
+const DRAWER_WIDTH = 320;
+const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
+    root: {
+        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,
+    },
+    headerContainer: {
+        color: theme.palette.grey["600"],
+        margin: `${theme.spacing.unit}px 0`,
+        textAlign: 'center',
+    },
+    headerIcon: {
+        fontSize: '2.125rem',
+    },
+    tabContainer: {
+        overflow: 'auto',
+        padding: theme.spacing.unit * 1,
+    },
+});
 
-class DetailsPanel extends React.Component<DetailsPanelProps & WithStyles<CssRules>, {}> {
-       state = {
-               value: 0,
-       };
-
-       handleChange = (event: any, value: boolean) => {
-               this.setState({ value });
-       }
-       
-       render() {
-               const { classes, toggleDrawer, isOpened } = this.props;
-               const { value } = this.state;
-        return (
-            <div className={classes.container}>
-                               <Drawer variant="persistent" anchor="right" open={isOpened} onClose={() => toggleDrawer(false)}
-                    classes={{
-                        paper: classes.drawerPaper
-                    }}>
-                                       <h2 className={classes.title}>Tutorial pipeline</h2>
-                                       <IconButton color="inherit" onClick={() => toggleDrawer(false)}>
-                                               <CloseIcon />
-                                       </IconButton>
-                                       <Tabs value={value} onChange={this.handleChange}
-                                               classes={{ root: classes.tabsRoot, indicator: classes.tabsIndicator }}>
-                                               <Tab
-                                                       disableRipple
-                                                       classes={{ root: classes.tabRoot, selected: classes.tabSelected }}
-                                                       label="Details" />
-                                               <Tab
-                                                       disableRipple
-                                                       classes={{ root: classes.tabRoot, selected: classes.tabSelected }}
-                                                       label="Activity" />
-                                       </Tabs>
-                                       {value === 0 && <TabContainer>
-                                               Item One
-                                       </TabContainer>}
-                                       {value === 1 && <TabContainer>
-                                               Item Two
-                                       </TabContainer>}
-                </Drawer>
-            </div>
-        );
+const EMPTY_RESOURCE: EmptyResource = { kind: undefined, name: 'Projects' };
+
+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);
+            case ResourceKind.PROCESS:
+                return new ProcessDetails(res);
+            case ResourceKind.WORKFLOW:
+                return new WorkflowDetails(res);
+            default:
+                return new EmptyDetails(res);
+        }
+    } else {
+        return new FileDetails(res);
     }
+};
 
-}
+const mapStateToProps = ({ auth, detailsPanel, resources, collectionPanelFiles }: RootState) => {
+    const resource = getResource(detailsPanel.resourceUuid)(resources) as DetailsResource | undefined;
+    const file = resource
+        ? undefined
+        : getNode(detailsPanel.resourceUuid)(collectionPanelFiles);
+
+    let isFrozen = false;
+    if (resource) {
+        isFrozen = resourceIsFrozen(resource, resources);
+    }
+
+    return {
+        isFrozen,
+        authConfig: auth.config,
+        isOpened: detailsPanel.isOpened,
+        tabNr: detailsPanel.tabNr,
+        res: resource || (file && file.value) || EMPTY_RESOURCE,
+    };
+};
 
-type CssRules = 'drawerPaper' | 'container' | 'title' | 'tabsRoot' | 'tabsIndicator' | 'tabRoot' | 'tabSelected';
-
-const drawerWidth = 320;
-const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
-       container: {
-               position: 'relative',
-               height: 'auto'
-       },
-    drawerPaper: {
-        position: 'relative',
-        width: drawerWidth
-       },
-       title: {
-               padding: '10px 0px',
-               fontSize: '20px',
-               fontWeight: 400,
-               fontStyle: 'normal'
-       },
-       tabsRoot: {
-               borderBottom: '1px solid transparent',
-       },
-       tabsIndicator: {
-               backgroundColor: 'rgb(106, 27, 154)',
-       },
-       tabRoot: {
-               fontSize: '13px',
-               fontWeight: 400,
-               color: '#333333',
-               '&$tabSelected': {
-                       fontWeight: 700,
-                       color: 'rgb(106, 27, 154)'
-               },
-       },
-       tabSelected: {}
+const mapDispatchToProps = (dispatch: Dispatch) => ({
+    onCloseDrawer: () => {
+        dispatch<any>(toggleDetailsPanel());
+    },
+    setActiveTab: (tabNr: number) => {
+        dispatch<any>(openDetailsPanel(undefined, tabNr));
+    },
 });
 
-export default withStyles(styles)(DetailsPanel);
\ No newline at end of file
+export interface DetailsPanelDataProps {
+    onCloseDrawer: () => void;
+    setActiveTab: (tabNr: number) => void;
+    authConfig: Config;
+    isOpened: boolean;
+    tabNr: number;
+    res: DetailsResource;
+    isFrozen: boolean;
+}
+
+type DetailsPanelProps = DetailsPanelDataProps & WithStyles<CssRules>;
+
+export const DetailsPanel = withStyles(styles)(
+    connect(mapStateToProps, mapDispatchToProps)(
+        class extends React.Component<DetailsPanelProps> {
+            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: number) => {
+                this.props.setActiveTab(value);
+            }
+
+            render() {
+                const { classes, isOpened } = this.props;
+                return (
+                    <Grid
+                        container
+                        direction="column"
+                        className={classnames([classes.root, { [classes.opened]: isOpened }])}>
+                        <Transition
+                            in={isOpened}
+                            timeout={SLIDE_TIMEOUT}
+                            unmountOnExit>
+                            {isOpened ? this.renderContent() : <div />}
+                        </Transition>
+                    </Grid>
+                );
+            }
+
+            renderContent() {
+                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 <Grid
+                    data-cy='details-panel'
+                    container
+                    direction="column"
+                    item
+                    xs
+                    className={classes.container} >
+                    <Grid
+                        item
+                        className={classes.headerContainer}
+                        container
+                        alignItems='center'
+                        justify='space-around'
+                        wrap="nowrap">
+                        <Grid item xs={2}>
+                            {item.getIcon(classes.headerIcon)}
+                        </Grid>
+                        <Grid item xs={8}>
+                            <Tooltip title={item.getTitle()}>
+                                <Typography variant='h6' noWrap>
+                                    {item.getTitle()}
+                                </Typography>
+                            </Tooltip>
+                        </Grid>
+                        <Grid item>
+                            <IconButton color="inherit" onClick={onCloseDrawer}>
+                                <CloseIcon />
+                            </IconButton>
+                        </Grid>
+                    </Grid>
+                    <Grid item>
+                        <Tabs onChange={this.handleChange}
+                            value={(item.getTabLabels().length >= tabNr + 1) ? tabNr : 0}>
+                            {item.getTabLabels().map((tabLabel, idx) =>
+                                <Tab key={`tab-label-${idx}`} disableRipple label={tabLabel} />)
+                            }
+                        </Tabs>
+                    </Grid>
+                    <Grid item xs className={this.props.classes.tabContainer} >
+                        {item.getDetails({ tabNr, showPreview: shouldShowInlinePreview })}
+                    </Grid>
+                </Grid >;
+            }
+        }
+    )
+);