1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
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';
14 interface MainContentBarProps {
15 onDetailsPanelToggle: () => void;
16 buttonVisible: boolean;
19 const isButtonVisible = ({ router }: RootState) => {
20 const pathname = router.location ? router.location.pathname : '';
21 return !Routes.matchWorkflowRoute(pathname) && !Routes.matchUserVirtualMachineRoute(pathname) &&
22 !Routes.matchAdminVirtualMachineRoute(pathname) && !Routes.matchRepositoriesRoute(pathname) &&
23 !Routes.matchSshKeysAdminRoute(pathname) && !Routes.matchSshKeysUserRoute(pathname) &&
24 !Routes.matchSiteManagerRoute(pathname) &&
25 !Routes.matchKeepServicesRoute(pathname) && !Routes.matchComputeNodesRoute(pathname) &&
26 !Routes.matchApiClientAuthorizationsRoute(pathname) && !Routes.matchUsersRoute(pathname) &&
27 !Routes.matchMyAccountRoute(pathname) && !Routes.matchLinksRoute(pathname);
30 export const MainContentBar = connect((state: RootState) => ({
31 buttonVisible: isButtonVisible(state)
33 onDetailsPanelToggle: toggleDetailsPanel
34 })((props: MainContentBarProps) =>
37 <Grid container item xs alignItems="center">
41 {props.buttonVisible && <Tooltip title="Additional Info">
42 <IconButton color="inherit" onClick={props.onDetailsPanelToggle}>