// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; import { Toolbar, IconButton, Tooltip, Grid } from "@material-ui/core"; import { DetailsIcon } from "~/components/icon/icon"; import { Breadcrumbs } from "~/views-components/breadcrumbs/breadcrumbs"; import { detailsPanelActions } from "~/store/details-panel/details-panel-action"; import { connect } from 'react-redux'; import { RootState } from '~/store/store'; import { matchWorkflowRoute } from '~/routes/routes'; interface MainContentBarProps { onDetailsPanelToggle: () => void; buttonVisible: boolean; } const isWorkflowPath = ({ router }: RootState) => { const pathname = router.location ? router.location.pathname : ''; const match = matchWorkflowRoute(pathname); return !!match; }; export const MainContentBar = connect((state: RootState) => ({ buttonVisible: !isWorkflowPath(state) }), { onDetailsPanelToggle: detailsPanelActions.TOGGLE_DETAILS_PANEL })((props: MainContentBarProps) => {props.buttonVisible ? : null} );