Create store and connect detail panel
[arvados.git] / src / views-components / details-panel / details-panel.tsx
index 4b55d3f5923982afb524d34afc24e58f48cc7391..13498f331776a43bf99d8b290f14255b5684fd05 100644 (file)
 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 { 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 * as classnames from "classnames";
 import Grid from '@material-ui/core/Grid';
+import * as classnames from "classnames";
+import { connect, Dispatch } from 'react-redux';
+import EmptyState from '../../components/empty-state/empty-state';
+import IconBase from '../../components/icon/icon';
+import { RootState } from '../../store/store';
+import actions from "../../store/details-panel/details-panel-action";
+import { Resource } from '../../common/api/common-resource-service';
+import { ResourceKind } from '../../models/kinds';
+import { ProjectResource } from '../../models/project';
+import { CollectionResource } from '../../models/collection';
 
-function TabContainer(props: any) {
-       return (
-               <Typography component="div" style={{ padding: 8 * 3 }}>
-                       {props.children}
-               </Typography>
-       );
-}
-
-export interface DetailsPanelProps {
-    toggleDrawer: (isOpened: boolean) => void;
+export interface DetailsPanelDataProps {
+    onCloseDrawer: () => void;
     isOpened: boolean;
+    header: React.ReactElement<any>;
+    renderDetails?: React.ComponentType<{}>;
+    renderActivity?: React.ComponentType<{}>;
 }
 
-class DetailsPanel extends React.Component<DetailsPanelProps & WithStyles<CssRules>, {}> {
-       state = {
-               tabsValue: 0,
-       };
-
-       handleChange = (event: any, value: boolean) => {
-               this.setState({ tabsValue: value });
-       }
-       
-       render() {
-               const { classes, toggleDrawer, isOpened } = this.props;
-               const { tabsValue } = this.state;
+type DetailsPanelProps = DetailsPanelDataProps & WithStyles<CssRules>;
+
+class DetailsPanel 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>
+
+    render() {
+        const { classes, onCloseDrawer, isOpened, header, renderDetails, renderActivity } = this.props;
+        const { tabsValue } = this.state;
         return (
-            <div className={classes.container}>
-                               <Drawer variant="persistent" anchor="right" open={isOpened} onClose={() => toggleDrawer(false)}
-                    classes={{
-                        paper: classes.drawerPaper
-                    }}>
-                                       {/* className={classnames([classes.root, { [classes.active]: isActive }])} */}
-                                       <Typography component="div" className={classes.headerContainer}>
-                                               <Grid container alignItems='center' justify='space-around'>
-                                                       <Typography variant="title" className={classes.headerTitle} gutterBottom>
-                                                               Tutorial pipeline
-                                                       </Typography>
-                                                       <IconButton color="inherit" onClick={() => toggleDrawer(false)}>
-                                                               <CloseIcon />
-                                                       </IconButton>
-                                               </Grid>
-                                       </Typography>
-                                       <Tabs value={tabsValue} onChange={this.handleChange}
-                                               classes={{ 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>
-                                       {tabsValue === 0 && <TabContainer>
-                                               <Grid container>
-                                                       <Grid item xs={6} sm={4} className={classes.gridLabel}>
-                                                               <p>Type</p>
-                                                               <p>Size</p>
-                                                               <p>Location</p>
-                                                               <p>Owner</p>
-                                                       </Grid>
-                                                       <Grid item xs={6} sm={4}>                                                               
-                                                               <p>Process</p>
-                                                               <p>---</p>
-                                                               <p>Projects</p>
-                                                               <p>me</p>
-                                                       </Grid>
-                                               </Grid>
-                                       </TabContainer>}
-                                       {tabsValue === 1 && <TabContainer>
-                                               <Grid container>
-                                                       <Grid item xs={6} sm={4} className={classes.gridLabel}>
-                                                               <p>Type</p>
-                                                               <p>Size</p>
-                                                               <p>Location</p>
-                                                               <p>Owner</p>
-                                                       </Grid>
-                                                       <Grid item xs={6} sm={4}>
-                                                               <p>Process</p>
-                                                               <p>---</p>
-                                                               <p>Projects</p>
-                                                               <p>me</p>
-                                                       </Grid>
-                                               </Grid>
-                                       </TabContainer>}
+            <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'>
+                            {header}
+                            <IconButton color="inherit" onClick={onCloseDrawer}>
+                                <IconBase icon='close' />
+                            </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">
+                            {renderDetails}
+                            <EmptyState icon='announcement'
+                                message='Select a file or folder to view its details.' />
+                            <Attribute label='Type' value='Process' />
+                            <Attribute label='Size' value='---' />
+                            <Attribute label="Location">
+                                <IconBase icon='folder' />
+                                Projects
+                            </Attribute>
+                            <Attribute label='Outputs' link='http://www.google.pl' value='New output as link' />
+                            <Attribute label='Owner' value='me' />
+                        </Grid>
+                    )}
+                    {tabsValue === 1 && this.renderTabContainer(
+                        <Grid container direction="column">
+                            {renderActivity}
+                            <EmptyState icon='announcement' message='Select a file or folder to view its details.' />
+                        </Grid>
+                    )}
                 </Drawer>
-            </div>
+            </Typography>
         );
     }
 
 }
 
-type CssRules = 'drawerPaper' | 'container' | 'headerContainer' | 'headerTitle' 
-       | 'tabsIndicator' | 'tabRoot' | 'tabContainer' | 'tabSelected' | 'gridLabel';
+type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'tabContainer';
 
 const drawerWidth = 320;
-const purple = '#692498';
-const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
-       container: {
-               position: 'relative',
-               height: 'auto'
-       },
+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: '#A1A1A1',
-               margin: `${theme.spacing.unit}px 0`
-       },
-       headerTitle: {
-               marginBottom: 0
-       },
-       tabsIndicator: {
-               backgroundColor: purple
-       },
-       tabRoot: {
-               color: '#333333',
-               '&$tabSelected': {
-                       fontWeight: 700,
-                       color: purple
-               }
-       },
-       tabContainer: {
-               padding: theme.spacing.unit * 3
-       },
-       tabSelected: {},
-       gridLabel: {
-               color: '#999999',
-       }
+    },
+    headerContainer: {
+        color: theme.palette.grey["600"],
+        margin: `${theme.spacing.unit}px 0`,
+        '& .fa-cogs': {
+            fontSize: "24px",
+            color: theme.customs.colors.green700
+        }
+    },
+    tabContainer: {
+        padding: theme.spacing.unit * 3
+    }
 });
 
-export default withStyles(styles)(DetailsPanel);
\ No newline at end of file
+const renderCollectionHeader = (collection: CollectionResource) =>
+    <>
+        <IconBase icon="collection" />
+        <Typography variant="title">
+            {collection.name}
+        </Typography>
+    </>;
+
+const renderProjectHeader = (project: ProjectResource) =>
+    <>
+        <IconBase icon="project" />
+        <Typography variant="title">
+            {project.name}
+        </Typography>
+    </>;
+
+const renderHeader = (resource: Resource) => {
+    switch(resource.kind) {
+        case ResourceKind.Project:
+            return renderProjectHeader(resource as ProjectResource);
+        case ResourceKind.Collection:
+            return renderCollectionHeader(resource as CollectionResource);
+        default: 
+            return null;
+    }
+};
+
+const mapStateToProps = ({detailsPanel}: RootState) => ({
+    isOpened: detailsPanel.isOpened,
+    header: detailsPanel.item ? renderHeader(detailsPanel.item) : null
+});
+
+const mapDispatchToProps = (dispatch: Dispatch) => ({
+    onCloseDrawer: () => {
+        dispatch(actions.TOGGLE_DETAILS_PANEL());
+    }
+});
+
+const DetailsPanelContainer = connect(mapStateToProps, mapDispatchToProps)(DetailsPanel);
+
+export default withStyles(styles)(DetailsPanelContainer);
\ No newline at end of file