X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/80e9a9f467827453339ddf581584762afd1748b0..1fd27a3f5cbf1ac44f2f70e0abcfb7072ed43684:/src/views-components/side-panel/side-panel.tsx diff --git a/src/views-components/side-panel/side-panel.tsx b/src/views-components/side-panel/side-panel.tsx index 70bc92b7..3c4d19f8 100644 --- a/src/views-components/side-panel/side-panel.tsx +++ b/src/views-components/side-panel/side-panel.tsx @@ -2,16 +2,21 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; -import Drawer from '@material-ui/core/Drawer'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { SidePanelTree, SidePanelTreeProps } from '~/views-components/side-panel-tree/side-panel-tree'; -import { compose, Dispatch } from 'redux'; +import { ArvadosTheme } from 'common/custom-theme'; +import { SidePanelTree, SidePanelTreeProps } from 'views-components/side-panel-tree/side-panel-tree'; +import { Dispatch } from 'redux'; import { connect } from 'react-redux'; -import { navigateFromSidePanel } from '../../store/side-panel/side-panel-action'; +import { navigateFromSidePanel } from 'store/side-panel/side-panel-action'; +import { Grid, Tooltip, IconButton } from '@material-ui/core'; +import { SidePanelButton } from 'views-components/side-panel-button/side-panel-button'; +import { RootState } from 'store/store'; +import MenuIcon from "@material-ui/icons/Menu"; +// import { IconButtonProps } from '@material-ui/core/IconButton'; +// import { toggleSidePanel } from 'store/store'; -const DRAWER_WITDH = 240; +const DRAWER_WIDTH = 240; type CssRules = 'root'; @@ -21,7 +26,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ borderRight: `1px solid ${theme.palette.divider}`, height: '100%', overflowX: 'auto', - width: DRAWER_WITDH, + width: DRAWER_WIDTH, } }); @@ -31,10 +36,23 @@ const mapDispatchToProps = (dispatch: Dispatch): SidePanelTreeProps => ({ } }); -export const SidePanel = compose( - withStyles(styles), - connect(undefined, mapDispatchToProps) -)(({ classes, ...props }: WithStyles & SidePanelTreeProps) => -
- -
); +const mapStateToProps = ({ router }: RootState) => ({ + currentRoute: router.location ? router.location.pathname : '', +}); + +export const SidePanel = withStyles(styles)( + connect(mapStateToProps, mapDispatchToProps)( + ({ classes, ...props }: WithStyles & SidePanelTreeProps & { currentRoute: string }) => + + + + + )); + +export const CollapseLeftPanelTrigger = (props) =>{ + return + {props.toggleSidePanel(props.sidepanelcollapsed)}}> + + + + }; \ No newline at end of file