X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/0d6ec80f58aa00e9542f4c69cba872016baa14d6..a94a57d2dfd24d43c5e927dadf3f5ab35b2899d5:/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..6599a3fc 100644 --- a/src/views-components/side-panel/side-panel.tsx +++ b/src/views-components/side-panel/side-panel.tsx @@ -4,12 +4,14 @@ import * as 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 { 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 } from '@material-ui/core'; +import { SidePanelButton } from '~/views-components/side-panel-button/side-panel-button'; +import { RootState } from '~/store/store'; const DRAWER_WITDH = 240; @@ -31,10 +33,15 @@ 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 }) => + + + + + ));