add compute nodes with store, service and all dialogs
[arvados-workbench2.git] / src / views-components / main-content-bar / main-content-bar.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from "react";
6 import { Toolbar, IconButton, Tooltip, Grid } from "@material-ui/core";
7 import { DetailsIcon } from "~/components/icon/icon";
8 import { Breadcrumbs } from "~/views-components/breadcrumbs/breadcrumbs";
9 import { connect } from 'react-redux';
10 import { RootState } from '~/store/store';
11 import * as Routes from '~/routes/routes';
12 import { toggleDetailsPanel } from '~/store/details-panel/details-panel-action';
13
14 interface MainContentBarProps {
15     onDetailsPanelToggle: () => void;
16     buttonVisible: boolean;
17 }
18
19 const isButtonVisible = ({ router }: RootState) => {
20     const pathname = router.location ? router.location.pathname : '';
21     return !Routes.matchWorkflowRoute(pathname) && !Routes.matchVirtualMachineRoute(pathname) &&
22         !Routes.matchRepositoriesRoute(pathname) && !Routes.matchSshKeysRoute(pathname) &&
23         !Routes.matchKeepServicesRoute(pathname) && !Routes.matchComputeNodesRoute(pathname);
24 };
25
26 export const MainContentBar = connect((state: RootState) => ({
27     buttonVisible: isButtonVisible(state)
28 }), {
29         onDetailsPanelToggle: toggleDetailsPanel
30     })((props: MainContentBarProps) =>
31         <Toolbar>
32             <Grid container>
33                 <Grid container item xs alignItems="center">
34                     <Breadcrumbs />
35                 </Grid>
36                 <Grid item>
37                     {props.buttonVisible && <Tooltip title="Additional Info">
38                         <IconButton color="inherit" onClick={props.onDetailsPanelToggle}>
39                             <DetailsIcon />
40                         </IconButton>
41                     </Tooltip>}
42                 </Grid>
43             </Grid>
44         </Toolbar>);