mirror of https://github.com/linkerd/linkerd2.git
73 lines
1.6 KiB
JavaScript
73 lines
1.6 KiB
JavaScript
import _ from 'lodash';
|
|
import { apiErrorPropType } from './util/ApiHelpers.jsx';
|
|
import ErrorBanner from './ErrorBanner.jsx';
|
|
import MetricsTable from './MetricsTable.jsx';
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { Spin } from 'antd';
|
|
import withREST from './util/withREST.jsx';
|
|
import { metricsPropType, processSingleResourceRollup } from './util/MetricUtils.jsx';
|
|
import 'whatwg-fetch';
|
|
|
|
export class ResourceListBase extends React.Component {
|
|
static defaultProps = {
|
|
error: null
|
|
}
|
|
|
|
static propTypes = {
|
|
data: PropTypes.arrayOf(metricsPropType.isRequired).isRequired,
|
|
error: apiErrorPropType,
|
|
loading: PropTypes.bool.isRequired,
|
|
resource: PropTypes.string.isRequired,
|
|
}
|
|
|
|
banner = () => {
|
|
const {error} = this.props;
|
|
|
|
if (!error) {
|
|
return;
|
|
}
|
|
|
|
return <ErrorBanner message={error} />;
|
|
}
|
|
|
|
content = () => {
|
|
const {data, loading, error} = this.props;
|
|
|
|
if (loading && !error) {
|
|
return <Spin size="large" />;
|
|
}
|
|
|
|
let processedMetrics = [];
|
|
if (_.has(data, '[0]')) {
|
|
processedMetrics = processSingleResourceRollup(data[0]);
|
|
}
|
|
|
|
return (
|
|
<MetricsTable
|
|
resource={this.props.resource}
|
|
metrics={processedMetrics} />
|
|
);
|
|
}
|
|
|
|
render() {
|
|
|
|
return (
|
|
<div className="page-content">
|
|
<div>
|
|
{this.banner()}
|
|
{this.content()}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withREST(
|
|
ResourceListBase,
|
|
({api, resource}) => [api.fetchMetrics(api.urlsForResource(resource))],
|
|
{
|
|
resetProps: ['resource'],
|
|
},
|
|
);
|