mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
182 lines
4.0 KiB
TypeScript
182 lines
4.0 KiB
TypeScript
import $ from 'jquery';
|
|
import React, { Component } from 'react';
|
|
import moment from 'moment';
|
|
|
|
import 'vendor/flot/jquery.flot';
|
|
import 'vendor/flot/jquery.flot.time';
|
|
import * as dateMath from 'app/core/utils/datemath';
|
|
import TimeSeries from 'app/core/time_series2';
|
|
|
|
import Legend from './Legend';
|
|
|
|
const MAX_NUMBER_OF_TIME_SERIES = 20;
|
|
|
|
// Copied from graph.ts
|
|
function time_format(ticks, min, max) {
|
|
if (min && max && ticks) {
|
|
const range = max - min;
|
|
const secPerTick = range / ticks / 1000;
|
|
const oneDay = 86400000;
|
|
const oneYear = 31536000000;
|
|
|
|
if (secPerTick <= 45) {
|
|
return '%H:%M:%S';
|
|
}
|
|
if (secPerTick <= 7200 || range <= oneDay) {
|
|
return '%H:%M';
|
|
}
|
|
if (secPerTick <= 80000) {
|
|
return '%m/%d %H:%M';
|
|
}
|
|
if (secPerTick <= 2419200 || range <= oneYear) {
|
|
return '%m/%d';
|
|
}
|
|
return '%Y-%m';
|
|
}
|
|
|
|
return '%H:%M';
|
|
}
|
|
|
|
const FLOT_OPTIONS = {
|
|
legend: {
|
|
show: false,
|
|
},
|
|
series: {
|
|
lines: {
|
|
linewidth: 1,
|
|
zero: false,
|
|
},
|
|
shadowSize: 0,
|
|
},
|
|
grid: {
|
|
minBorderMargin: 0,
|
|
markings: [],
|
|
backgroundColor: null,
|
|
borderWidth: 0,
|
|
// hoverable: true,
|
|
clickable: true,
|
|
color: '#a1a1a1',
|
|
margin: { left: 0, right: 0 },
|
|
labelMarginX: 0,
|
|
},
|
|
// selection: {
|
|
// mode: 'x',
|
|
// color: '#666',
|
|
// },
|
|
// crosshair: {
|
|
// mode: 'x',
|
|
// },
|
|
};
|
|
|
|
class Graph extends Component<any, any> {
|
|
state = {
|
|
showAllTimeSeries: false,
|
|
};
|
|
|
|
getGraphData() {
|
|
const { data } = this.props;
|
|
|
|
return this.state.showAllTimeSeries ? data : data.slice(0, MAX_NUMBER_OF_TIME_SERIES);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.draw();
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (
|
|
prevProps.data !== this.props.data ||
|
|
prevProps.options !== this.props.options ||
|
|
prevProps.split !== this.props.split ||
|
|
prevProps.height !== this.props.height
|
|
) {
|
|
this.draw();
|
|
}
|
|
}
|
|
|
|
onShowAllTimeSeries = () => {
|
|
this.setState(
|
|
{
|
|
showAllTimeSeries: true,
|
|
},
|
|
this.draw
|
|
);
|
|
};
|
|
|
|
draw() {
|
|
const { options: userOptions } = this.props;
|
|
const data = this.getGraphData();
|
|
|
|
const $el = $(`#${this.props.id}`);
|
|
if (!data) {
|
|
$el.empty();
|
|
return;
|
|
}
|
|
const series = data.map((ts: TimeSeries) => ({
|
|
color: ts.color,
|
|
label: ts.label,
|
|
data: ts.getFlotPairs('null'),
|
|
}));
|
|
|
|
const ticks = $el.width() / 100;
|
|
let { from, to } = userOptions.range;
|
|
if (!moment.isMoment(from)) {
|
|
from = dateMath.parse(from, false);
|
|
}
|
|
if (!moment.isMoment(to)) {
|
|
to = dateMath.parse(to, true);
|
|
}
|
|
const min = from.valueOf();
|
|
const max = to.valueOf();
|
|
const dynamicOptions = {
|
|
xaxis: {
|
|
mode: 'time',
|
|
min: min,
|
|
max: max,
|
|
label: 'Datetime',
|
|
ticks: ticks,
|
|
timeformat: time_format(ticks, min, max),
|
|
},
|
|
};
|
|
const options = {
|
|
...FLOT_OPTIONS,
|
|
...dynamicOptions,
|
|
...userOptions,
|
|
};
|
|
$.plot($el, series, options);
|
|
}
|
|
|
|
render() {
|
|
const { height, loading } = this.props;
|
|
const data = this.getGraphData();
|
|
|
|
if (!loading && data.length === 0) {
|
|
return (
|
|
<div className="panel-container">
|
|
<div className="muted m-a-1">The queries returned no time series to graph.</div>
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div>
|
|
{this.props.data.length > MAX_NUMBER_OF_TIME_SERIES &&
|
|
!this.state.showAllTimeSeries && (
|
|
<div className="time-series-disclaimer">
|
|
<i className="fa fa-fw fa-warning disclaimer-icon" />
|
|
{`Showing only ${MAX_NUMBER_OF_TIME_SERIES} time series. `}
|
|
<span className="show-all-time-series" onClick={this.onShowAllTimeSeries}>{`Show all ${
|
|
this.props.data.length
|
|
}`}</span>
|
|
</div>
|
|
)}
|
|
<div className="panel-container">
|
|
<div id={this.props.id} className="explore-graph" style={{ height }} />
|
|
<Legend data={data} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Graph;
|