// Copyright 2018 Red Hat, Inc // // Licensed under the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. You may obtain // a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the // License for the specific language governing permissions and limitations // under the License. // The App is the parent component of every pages. Each page content is // rendered by the Route object according to the current location. import React from 'react' import PropTypes from 'prop-types' import { matchPath, withRouter } from 'react-router' import { Link, NavLink, Redirect, Route, Switch } from 'react-router-dom' import { connect } from 'react-redux' import { TimedToastNotification, ToastNotificationList, } from 'patternfly-react' import * as moment from 'moment' import { Brand, Button, ButtonVariant, Drawer, DrawerActions, DrawerCloseButton, DrawerContent, DrawerContentBody, DrawerPanelContent, Dropdown, DropdownItem, KebabToggle, Nav, NavItem, NavList, NotificationBadge, NotificationDrawer, NotificationDrawerBody, NotificationDrawerHeader, NotificationDrawerList, NotificationDrawerListItem, NotificationDrawerListItemBody, NotificationDrawerListItemHeader, Page, PageHeader, PageHeaderTools, PageHeaderToolsGroup, PageHeaderToolsItem, } from '@patternfly/react-core' import { BellIcon, BookIcon, CodeIcon, UsersIcon, } from '@patternfly/react-icons' import ErrorBoundary from './containers/ErrorBoundary' import { Fetching } from './containers/Fetching' import SelectTz from './containers/timezone/SelectTz' import logo from './images/logo.svg' import { clearError } from './actions/errors' import { fetchConfigErrorsAction } from './actions/configErrors' import { routes } from './routes' import { setTenantAction } from './actions/tenant' class App extends React.Component { static propTypes = { errors: PropTypes.array, configErrors: PropTypes.array, info: PropTypes.object, tenant: PropTypes.object, timezone: PropTypes.string, location: PropTypes.object, history: PropTypes.object, dispatch: PropTypes.func, isKebabDropdownOpen: PropTypes.bool, } state = { showErrors: false, } renderMenu() { const { tenant } = this.props if (tenant.name) { return ( ) } else { // Return an empty navigation bar in case we don't have an active tenant return