// 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, Redirect, Route, Switch } from 'react-router-dom' import { connect } from 'react-redux' import { Masthead } from 'patternfly-react' import logo from './images/logo.png' import { routes } from './routes' import { setTenantAction } from './reducers' class App extends React.Component { static propTypes = { info: PropTypes.object, tenant: PropTypes.object, location: PropTypes.object, dispatch: PropTypes.func } state = { menuCollapsed: true } onNavToggleClick = () => { this.setState({ menuCollapsed: !this.state.menuCollapsed }) } onNavClick = () => { this.setState({ menuCollapsed: true }) } constructor() { super() this.menu = routes() } renderMenu() { const { location } = this.props const activeItem = this.menu.find( item => location.pathname === item.to ) return ( ) } renderContent = () => { const { tenant } = this.props const allRoutes = [] this.menu // Do not include '/tenants' route in white-label setup .filter(item => (tenant.whiteLabel && !item.globalRoute) || !tenant.whiteLabel) .forEach((item, index) => { allRoutes.push( ) }) return ( {allRoutes} ) } componentDidUpdate() { // This method is called when info property is updated const { tenant, info } = this.props if (info.capabilities) { let tenantName, whiteLabel if (info.tenant) { // White label whiteLabel = true tenantName = info.tenant } else if (!info.tenant) { // Multi tenant, look for tenant name in url whiteLabel = false const match = matchPath( this.props.location.pathname, {path: '/t/:tenant'}) if (match) { tenantName = match.params.tenant } else { tenantName = '' } } // Set tenant only if it changed to prevent DidUpdate loop if (typeof tenant.name === 'undefined' || tenant.name !== tenantName) { this.props.dispatch(setTenantAction(tenantName, whiteLabel)) } } } render() { const { menuCollapsed } = this.state const { tenant } = this.props if (typeof tenant.name === 'undefined') { return (

Loading...

) } return (
{tenant.name && this.renderMenu()}
{!menuCollapsed && (
{tenant.name && this.renderMenu()}
)}
{this.renderContent()}
) } } // This connect the info state from the store to the info property of the App. export default withRouter(connect( state => ({ info: state.info, tenant: state.tenant }) )(App))