// 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 { withAuth } from 'oidc-react' import { TimedToastNotification, ToastNotificationList, } from 'patternfly-react' import * as moment_tz from 'moment-timezone' import { Brand, Button, ButtonVariant, Dropdown, DropdownItem, DropdownToggle, DropdownSeparator, KebabToggle, Nav, NavItem, NavList, NotificationBadge, Page, PageHeader, PageHeaderTools, PageHeaderToolsGroup, PageHeaderToolsItem, } from '@patternfly/react-core' import { BellIcon, BookIcon, ChevronDownIcon, CodeIcon, ServiceIcon, UsersIcon, } from '@patternfly/react-icons' import AuthContainer from './containers/auth/Auth' import ErrorBoundary from './containers/ErrorBoundary' import { Fetching } from './containers/Fetching' import SelectTz from './containers/timezone/SelectTz' import ConfigModal from './containers/config/Config' import logo from './images/logo.svg' import { clearNotification } from './actions/notifications' import { fetchTenantStatusAction, clearTenantStatusAction } from './actions/tenantStatus' import { fetchTenantsIfNeeded } from './actions/tenants' import { routes } from './routes' import { setTenantAction } from './actions/tenant' import { configureAuthFromTenant, configureAuthFromInfo } from './actions/auth' import { getHomepageUrl } from './api' import AuthCallbackPage from './pages/AuthCallback' import AuthRequiredPage from './pages/AuthRequired' class App extends React.Component { static propTypes = { notifications: PropTypes.array, tenantStatus: PropTypes.object, tenantStatusReady: PropTypes.bool, info: PropTypes.object, tenant: PropTypes.object, tenants: PropTypes.object, timezone: PropTypes.string, location: PropTypes.object, history: PropTypes.object, dispatch: PropTypes.func, isKebabDropdownOpen: PropTypes.bool, user: PropTypes.object, auth: PropTypes.object, signIn: PropTypes.func, } state = { isTenantDropdownOpen: 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