Merge branch '14639-replace-depracated-mui-variants'
[arvados-workbench2.git] / src / views-components / details-panel / details-panel.tsx
index 9d25d9200859bc7fd1a1c36e8971dee930157a43..2a30ae4783d75d426d29bc82574cd19a086058b3 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 FolderIcon from '@material-ui/icons/Folder';
+import { IconButton, Tabs, Tab, Typography, Grid, Tooltip } from '@material-ui/core';
 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
-import { ArvadosTheme } from '../../common/custom-theme';
-import Attribute from '../../components/attribute/attribute';
-import Tabs from '@material-ui/core/Tabs';
-import Tab from '@material-ui/core/Tab';
-import Typography from '@material-ui/core/Typography';
-import Grid from '@material-ui/core/Grid';
+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 { 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 { 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';
 
-export interface DetailsPanelProps {
-    onCloseDrawer: () => void;
-    isOpened: boolean;
-}
-
-class DetailsPanel extends React.Component<DetailsPanelProps & WithStyles<CssRules>, {}> {
-       state = {
-               tabsValue: 0,
-       };
-
-       handleChange = (event: any, value: boolean) => {
-               this.setState({ tabsValue: value });
-       }
-    
-    renderTabContainer = (children: React.ReactElement<any>) => 
-        <Typography className={this.props.classes.tabContainer} component="div">
-            {children}
-        </Typography>
+type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'tabContainer';
 
-       render() {
-        const { classes, onCloseDrawer, isOpened } = this.props;
-               const { tabsValue } = this.state;
-        return (
-            <div className={classnames([classes.container, { [classes.opened]: isOpened }])}>
-                <Drawer variant="permanent" anchor="right" classes={{ paper: classes.drawerPaper }}>
-                                       <Typography component="div" className={classes.headerContainer}>
-                                               <Grid container alignItems='center' justify='space-around'>
-                            <i className="fas fa-cogs fa-lg" />
-                                                       <Typography variant="title">
-                                                               Tutorial pipeline
-                                                       </Typography>
-                            <IconButton color="inherit" onClick={onCloseDrawer}>
-                                                               <CloseIcon />
-                                                       </IconButton>
-                                               </Grid>
-                                       </Typography>
-                                       <Tabs value={tabsValue} onChange={this.handleChange}>
-                                               <Tab disableRipple label="Details" />
-                                               <Tab disableRipple label="Activity" />
-                                       </Tabs>
-                    {tabsValue === 0 && this.renderTabContainer(
-                        <Grid container direction="column">
-                            <Attribute label="Type">Process</Attribute>
-                            <Attribute label="Size">---</Attribute>
-                            <Attribute label="Location">
-                                <FolderIcon />
-                                Projects
-                            </Attribute>
-                            <Attribute label="Owner">me</Attribute>
-                                               </Grid>
-                                       )}
-                    {tabsValue === 1 && this.renderTabContainer(
-                        <Grid container direction="column">
-                            <Attribute label="Type">Process</Attribute>
-                            <Attribute label="Size">---</Attribute>
-                            <Attribute label="Location">
-                                <FolderIcon />
-                                Projects
-                            </Attribute>
-                            <Attribute label="Owner">me</Attribute>
-                        </Grid>
-                                       )}
-                </Drawer>
-            </div>
-        );
-    }
-
-}
-
-type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'tabContainer';
-
-const drawerWidth = 320;
+const DRAWER_WIDTH = 320;
 const styles: StyleRulesCallback<CssRules> = (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
-       },
-       headerContainer: {
+    opened: {
+        width: DRAWER_WIDTH,
+    },
+    container: {
+        maxWidth: 'none',
+        width: DRAWER_WIDTH,
+    },
+    headerContainer: {
         color: theme.palette.grey["600"],
         margin: `${theme.spacing.unit}px 0`,
-        '& .fa-cogs': {
-            fontSize: "24px"
+        textAlign: 'center',
+    },
+    headerIcon: {
+        fontSize: '2.125rem',
+    },
+    tabContainer: {
+        overflow: 'auto',
+        padding: theme.spacing.unit * 3,
+    },
+});
+
+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);
         }
-       },
-       tabContainer: {
-               padding: theme.spacing.unit * 3
-       }
+    } else {
+        return new FileDetails(res);
+    }
+};
+
+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 || (file && file.value) || EMPTY_RESOURCE, resourceData)
+    };
+};
+
+const mapDispatchToProps = (dispatch: Dispatch) => ({
+    onCloseDrawer: () => {
+        dispatch<any>(toggleDetailsPanel());
+    }
 });
 
-export default withStyles(styles)(DetailsPanel);
\ No newline at end of file
+export interface DetailsPanelDataProps {
+    onCloseDrawer: () => void;
+    isOpened: boolean;
+    item: DetailsData;
+}
+
+type DetailsPanelProps = DetailsPanelDataProps & WithStyles<CssRules>;
+
+export const DetailsPanel = withStyles(styles)(
+    connect(mapStateToProps, mapDispatchToProps)(
+        class extends React.Component<DetailsPanelProps> {
+            state = {
+                tabsValue: 0
+            };
+
+            handleChange = (event: any, value: boolean) => {
+                this.setState({ tabsValue: 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>
+                            {this.renderContent()}
+                        </Transition>
+                    </Grid>
+                );
+            }
+
+            renderContent() {
+                const { classes, onCloseDrawer, item } = this.props;
+                const { tabsValue } = this.state;
+                return <Grid
+                    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 value={tabsValue} onChange={this.handleChange}>
+                            <Tab disableRipple label="Details" />
+                            <Tab disableRipple label="Activity" disabled />
+                        </Tabs>
+                    </Grid>
+                    <Grid item xs className={this.props.classes.tabContainer} >
+                        {tabsValue === 0
+                            ? item.getDetails()
+                            : null}
+                    </Grid>
+                </Grid >;
+            }
+        }
+    )
+);