// 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 PropTypes from 'prop-types' import { connect } from 'react-redux' import { Link } from 'react-router-dom' import { Table } from 'patternfly-react' import { fetchBuilds } from '../api' import TableFilters from '../containers/TableFilters' class BuildsPage extends TableFilters { static propTypes = { tenant: PropTypes.object } constructor () { super() this.prepareTableHeaders() this.state = { builds: null, currentFilterType: this.filterTypes[0], activeFilters: [], currentValue: '' } } updateData = (filters) => { let queryString = '' if (filters) { filters.forEach(item => queryString += '&' + item.key + '=' + item.value) } this.setState({builds: null}) fetchBuilds(this.props.tenant.apiPrefix, queryString).then(response => { this.setState({builds: response.data}) }) } componentDidMount () { document.title = 'Zuul Builds' if (this.props.tenant.name) { this.updateData(this.getFilterFromUrl()) } } componentDidUpdate (prevProps) { if (this.props.tenant.name !== prevProps.tenant.name) { this.updateData(this.getFilterFromUrl()) } } prepareTableHeaders() { const headerFormat = value =>
Loading...
}