1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from 'react';
6 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
7 import { ArvadosTheme } from '~/common/custom-theme';
8 import { SidePanelTree, SidePanelTreeProps } from '~/views-components/side-panel-tree/side-panel-tree';
9 import { compose, Dispatch } from 'redux';
10 import { connect } from 'react-redux';
11 import { navigateFromSidePanel } from '../../store/side-panel/side-panel-action';
12 import { Grid } from '@material-ui/core';
13 import { SidePanelButton } from '~/views-components/side-panel-button/side-panel-button';
14 import { RootState } from '~/store/store';
16 const DRAWER_WITDH = 240;
18 type CssRules = 'root';
20 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
22 background: theme.palette.background.paper,
23 borderRight: `1px solid ${theme.palette.divider}`,
30 const mapDispatchToProps = (dispatch: Dispatch): SidePanelTreeProps => ({
31 onItemActivation: id => {
32 dispatch<any>(navigateFromSidePanel(id));
36 const mapStateToProps = (state: RootState) => ({
39 export const SidePanel = withStyles(styles)(
40 connect(mapStateToProps, mapDispatchToProps)(
41 ({ classes, ...props }: WithStyles<CssRules> & SidePanelTreeProps) =>
44 <SidePanelTree {...props} />