remove classnames
[arvados-workbench2.git] / src / views-components / details-panel / details-panel.tsx
index 16c1f92f44f90204552c3a8db821ccd873fe1a10..70c026d3d3385440dad0035ac6d657b2387c1f4e 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';
+import { Drawer, IconButton, Tabs, Tab, Typography, Grid } from '@material-ui/core';
+import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
+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";
+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";
 
-function TabContainer(props: any) {
-       return (
-               <Typography component="div" style={{ padding: 8 * 3 }}>
-                       {props.children}
-               </Typography>
-       );
-}
+type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer';
 
-export interface DetailsPanelProps {
-    toggleDrawer: (isOpened: boolean) => void;
-    isOpened: boolean;
-}
+const drawerWidth = 320;
+const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
+    container: {
+        width: 0,
+        position: 'relative',
+        height: 'auto',
+        transition: 'width 0.5s ease',
+        '&$opened': {
+            width: drawerWidth
+        }
+    },
+    opened: {},
+    drawerPaper: {
+        position: 'relative',
+        width: drawerWidth
+    },
+    headerContainer: {
+        color: theme.palette.grey["600"],
+        margin: `${theme.spacing.unit}px 0`,
+        textAlign: 'center'
+    },
+    headerIcon: {
+        fontSize: '2.125rem'
+    },
+    headerTitle: {
+        wordBreak: 'break-all'
+    },
+    tabContainer: {
+        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);
+    }
+};
 
-class DetailsPanel extends React.Component<DetailsPanelProps & WithStyles<CssRules>, {}> {
-       state = {
-               value: 0,
-       };
+const mapStateToProps = ({ detailsPanel }: RootState) => ({
+    isOpened: detailsPanel.isOpened,
+    item: getItem(detailsPanel.item as DetailsResource)
+});
 
-       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 mapDispatchToProps = (dispatch: Dispatch) => ({
+    onCloseDrawer: () => {
+        dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL());
     }
+});
 
+export interface DetailsPanelDataProps {
+    onCloseDrawer: () => void;
+    isOpened: boolean;
+    item: DetailsData;
 }
 
-type CssRules = 'drawerPaper' | 'container' | 'title' | 'tabsRoot' | 'tabsIndicator' | 'tabRoot' | 'tabSelected';
+type DetailsPanelProps = DetailsPanelDataProps & WithStyles<CssRules>;
 
-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: {}
-});
+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 });
+            }
+
+            renderTabContainer = (children: React.ReactElement<any>) =>
+                <Typography className={this.props.classes.tabContainer} component="div">
+                    {children}
+                </Typography>
 
-export default withStyles(styles)(DetailsPanel);
\ No newline at end of file
+            render() {
+                const { classes, onCloseDrawer, isOpened, item } = this.props;
+                const { tabsValue } = this.state;
+                return (
+                    <Typography component="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'>
+                                    <Grid item xs={2}>
+                                        {item.getIcon(classes.headerIcon)}
+                                    </Grid>
+                                    <Grid item xs={8}>
+                                        <Typography variant="title" className={classes.headerTitle}>
+                                            {item.getTitle()}
+                                        </Typography>
+                                    </Grid>
+                                    <Grid item>
+                                        <IconButton color="inherit" onClick={onCloseDrawer}>
+                                            {<CloseIcon/>}
+                                        </IconButton>
+                                    </Grid>
+                                </Grid>
+                            </Typography>
+                            <Tabs value={tabsValue} onChange={this.handleChange}>
+                                <Tab disableRipple label="Details"/>
+                                <Tab disableRipple label="Activity" disabled/>
+                            </Tabs>
+                            {tabsValue === 0 && this.renderTabContainer(
+                                <Grid container direction="column">
+                                    {item.getDetails()}
+                                </Grid>
+                            )}
+                            {tabsValue === 1 && this.renderTabContainer(
+                                <Grid container direction="column"/>
+                            )}
+                        </Drawer>
+                    </Typography>
+                );
+            }
+        }
+    )
+);