mirror of https://github.com/grafana/grafana.git
95 lines
2.5 KiB
TypeScript
95 lines
2.5 KiB
TypeScript
import React from 'react';
|
|
import _ from 'lodash';
|
|
|
|
import { MetricSelect } from 'app/core/components/Select/MetricSelect';
|
|
import { getAggregationOptionsByMetric } from '../functions';
|
|
import { TemplateSrv } from 'app/features/templating/template_srv';
|
|
|
|
export interface Props {
|
|
onChange: (metricDescriptor) => void;
|
|
templateSrv: TemplateSrv;
|
|
metricDescriptor: {
|
|
valueType: string;
|
|
metricKind: string;
|
|
};
|
|
crossSeriesReducer: string;
|
|
groupBys: string[];
|
|
children?: (renderProps: any) => JSX.Element;
|
|
}
|
|
|
|
export interface State {
|
|
aggOptions: any[];
|
|
displayAdvancedOptions: boolean;
|
|
}
|
|
|
|
export class Aggregations extends React.Component<Props, State> {
|
|
state: State = {
|
|
aggOptions: [],
|
|
displayAdvancedOptions: false,
|
|
};
|
|
|
|
componentDidMount() {
|
|
this.setAggOptions(this.props);
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps: Props) {
|
|
this.setAggOptions(nextProps);
|
|
}
|
|
|
|
setAggOptions({ metricDescriptor }: Props) {
|
|
let aggOptions = [];
|
|
if (metricDescriptor) {
|
|
aggOptions = [
|
|
{
|
|
label: 'Aggregations',
|
|
expanded: true,
|
|
options: getAggregationOptionsByMetric(metricDescriptor.valueType, metricDescriptor.metricKind).map(a => ({
|
|
...a,
|
|
label: a.text,
|
|
})),
|
|
},
|
|
];
|
|
}
|
|
this.setState({ aggOptions });
|
|
}
|
|
|
|
onToggleDisplayAdvanced = () => {
|
|
this.setState(state => ({
|
|
displayAdvancedOptions: !state.displayAdvancedOptions,
|
|
}));
|
|
};
|
|
|
|
render() {
|
|
const { displayAdvancedOptions, aggOptions } = this.state;
|
|
const { templateSrv, onChange, crossSeriesReducer } = this.props;
|
|
|
|
return (
|
|
<>
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<label className="gf-form-label query-keyword width-9">Aggregation</label>
|
|
<MetricSelect
|
|
onChange={onChange}
|
|
value={crossSeriesReducer}
|
|
variables={templateSrv.variables}
|
|
options={aggOptions}
|
|
placeholder="Select Reducer"
|
|
className="width-15"
|
|
/>
|
|
</div>
|
|
<div className="gf-form gf-form--grow">
|
|
<label className="gf-form-label gf-form-label--grow">
|
|
<a onClick={this.onToggleDisplayAdvanced}>
|
|
<>
|
|
<i className={`fa fa-caret-${displayAdvancedOptions ? 'down' : 'right'}`} /> Advanced Options
|
|
</>
|
|
</a>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
{this.props.children(this.state.displayAdvancedOptions)}
|
|
</>
|
|
);
|
|
}
|
|
}
|