Merge branch '13865-repositories'
[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 { matchWorkflowRoute, matchSshKeysRoute, matchRepositoriesRoute } 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 isWorkflowPath = ({ router }: RootState) => {
20     const pathname = router.location ? router.location.pathname : '';
21     const match = matchWorkflowRoute(pathname);
22     return !!match;
23 };
24
25 const isRepositoriesPath = ({ router }: RootState) => {
26     const pathname = router.location ? router.location.pathname : '';
27     const match = matchRepositoriesRoute(pathname);
28     return !!match;
29 };
30
31 const isSshKeysPath = ({ router }: RootState) => {
32     const pathname = router.location ? router.location.pathname : '';
33     const match = matchSshKeysRoute(pathname);
34     return !!match;
35 };
36
37 export const MainContentBar = connect((state: RootState) => ({
38     buttonVisible: !isWorkflowPath(state) && !isSshKeysPath(state) && !isRepositoriesPath(state)
39 }), {
40         onDetailsPanelToggle: toggleDetailsPanel
41     })((props: MainContentBarProps) =>
42         <Toolbar>
43             <Grid container>
44                 <Grid container item xs alignItems="center">
45                     <Breadcrumbs />
46                 </Grid>
47                 <Grid item>
48                     {props.buttonVisible && <Tooltip title="Additional Info">
49                         <IconButton color="inherit" onClick={props.onDetailsPanelToggle}>
50                             <DetailsIcon />
51                         </IconButton>
52                     </Tooltip>}
53                 </Grid>
54             </Grid>
55         </Toolbar>);