// 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. import * as React from 'react' import { connect } from 'react-redux' import PropTypes from 'prop-types' import { Link } from 'react-router-dom' import { BuildIcon, CubeIcon, CubesIcon, DesktopIcon, FolderIcon, HomeIcon, RepositoryIcon, TrendUpIcon, ThumbtackIcon, } from '@patternfly/react-icons' import { Table, TableHeader, TableBody, TableVariant, } from '@patternfly/react-table' import { Fetching } from '../containers/Fetching' import { fetchTenantsIfNeeded } from '../actions/tenants' import { PageSection, PageSectionVariants } from '@patternfly/react-core' import { IconProperty } from '../Misc' class TenantsPage extends React.Component { static propTypes = { remoteData: PropTypes.object, dispatch: PropTypes.func } updateData = (force) => { this.props.dispatch(fetchTenantsIfNeeded(force)) } componentDidMount() { document.title = 'Zuul Tenants' this.updateData() } // TODO: fix Refreshable class to work with tenant less page. componentDidUpdate() { } render() { const { remoteData } = this.props if (remoteData.isFetching) { return } const tenants = remoteData.tenants.map((tenant) => { return { cells: [ { title: ({tenant.name}) }, { title: (Status) }, { title: (Projects) }, { title: (Jobs) }, { title: (Builds) }, { title: (Buildsets) }, { title: (Autoholds) }, tenant.projects, tenant.queue ] } }) const columns = [ { title: } value="Name" />, dataLabel: 'Name', }, { title: } value="Status" />, dataLabel: 'Status', }, { title: } value="Projects" />, dataLabel: 'Projects', }, { title: } value="Jobs" />, dataLabel: 'Jobs', }, { title: } value="Builds" />, dataLabel: 'Builds', }, { title: } value="Buildsets" />, dataLabel: 'Buildsets', }, { title: } value="Autoholds" />, dataLabel: 'Autoholds', }, { title: } value="Project count" />, dataLabel: 'Project count', }, { title: } value="Queue" />, dataLabel: 'Queue', } ] return (
) } } export default connect(state => ({ remoteData: state.tenants }))(TenantsPage)