2018-12-13 07:28:44 -06:00
|
|
|
// Libraries
|
2019-07-30 08:49:32 -05:00
|
|
|
import React, { PureComponent, ChangeEvent, FocusEvent, ReactText } from 'react';
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
// Utils
|
2019-07-08 12:12:02 -05:00
|
|
|
import { rangeUtil } from '@grafana/data';
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
// Components
|
2019-07-08 12:12:02 -05:00
|
|
|
import {
|
|
|
|
DataSourceSelectItem,
|
|
|
|
EventsWithValidation,
|
|
|
|
Input,
|
|
|
|
InputStatus,
|
|
|
|
Switch,
|
|
|
|
ValidationEvents,
|
|
|
|
FormLabel,
|
|
|
|
} from '@grafana/ui';
|
2019-03-05 03:49:45 -06:00
|
|
|
import { DataSourceOption } from './DataSourceOption';
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
// Types
|
2019-03-18 09:41:46 -05:00
|
|
|
import { PanelModel } from '../state';
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
const timeRangeValidationEvents: ValidationEvents = {
|
|
|
|
[EventsWithValidation.onBlur]: [
|
|
|
|
{
|
|
|
|
rule: value => {
|
|
|
|
if (!value) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-07-08 12:12:02 -05:00
|
|
|
return rangeUtil.isValidTimeSpan(value);
|
2018-12-13 07:28:44 -06:00
|
|
|
},
|
|
|
|
errorMessage: 'Not a valid timespan',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
const emptyToNull = (value: string) => {
|
|
|
|
return value === '' ? null : value;
|
|
|
|
};
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
panel: PanelModel;
|
|
|
|
datasource: DataSourceSelectItem;
|
|
|
|
}
|
|
|
|
|
2018-12-18 09:39:59 -06:00
|
|
|
interface State {
|
|
|
|
relativeTime: string;
|
|
|
|
timeShift: string;
|
2019-03-05 03:49:45 -06:00
|
|
|
cacheTimeout: string;
|
2019-07-30 08:49:32 -05:00
|
|
|
maxDataPoints: string | ReactText;
|
2019-03-05 03:49:45 -06:00
|
|
|
interval: string;
|
|
|
|
hideTimeOverride: boolean;
|
2018-12-18 09:39:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
export class QueryOptions extends PureComponent<Props, State> {
|
2019-07-30 08:49:32 -05:00
|
|
|
allOptions: any = {
|
2019-03-05 03:49:45 -06:00
|
|
|
cacheTimeout: {
|
|
|
|
label: 'Cache timeout',
|
|
|
|
placeholder: '60',
|
|
|
|
name: 'cacheTimeout',
|
|
|
|
tooltipInfo: (
|
|
|
|
<>
|
|
|
|
If your time series store has a query cache this option can override the default cache timeout. Specify a
|
|
|
|
numeric value in seconds.
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
maxDataPoints: {
|
|
|
|
label: 'Max data points',
|
|
|
|
placeholder: 'auto',
|
|
|
|
name: 'maxDataPoints',
|
|
|
|
tooltipInfo: (
|
|
|
|
<>
|
|
|
|
The maximum data points the query should return. For graphs this is automatically set to one data point per
|
2019-09-05 07:04:01 -05:00
|
|
|
pixel. For some data sources this can also be capped in the datasource settings page.
|
2019-03-05 03:49:45 -06:00
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
minInterval: {
|
|
|
|
label: 'Min time interval',
|
|
|
|
placeholder: '0',
|
|
|
|
name: 'minInterval',
|
|
|
|
panelKey: 'interval',
|
|
|
|
tooltipInfo: (
|
|
|
|
<>
|
|
|
|
A lower limit for the auto group by time interval. Recommended to be set to write frequency, for example{' '}
|
|
|
|
<code>1m</code> if your data is written every minute. Access auto interval via variable{' '}
|
|
|
|
<code>$__interval</code> for time range string and <code>$__interval_ms</code> for numeric variable that can
|
|
|
|
be used in math expressions.
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2019-07-30 08:49:32 -05:00
|
|
|
constructor(props: Props) {
|
2018-12-18 09:39:59 -06:00
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
relativeTime: props.panel.timeFrom || '',
|
|
|
|
timeShift: props.panel.timeShift || '',
|
2019-03-05 03:49:45 -06:00
|
|
|
cacheTimeout: props.panel.cacheTimeout || '',
|
|
|
|
maxDataPoints: props.panel.maxDataPoints || '',
|
|
|
|
interval: props.panel.interval || '',
|
|
|
|
hideTimeOverride: props.panel.hideTimeOverride || false,
|
2018-12-18 09:39:59 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-03-05 03:49:45 -06:00
|
|
|
onRelativeTimeChange = (event: ChangeEvent<HTMLInputElement>) => {
|
2018-12-18 09:39:59 -06:00
|
|
|
this.setState({
|
|
|
|
relativeTime: event.target.value,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-03-05 03:49:45 -06:00
|
|
|
onTimeShiftChange = (event: ChangeEvent<HTMLInputElement>) => {
|
2018-12-18 09:39:59 -06:00
|
|
|
this.setState({
|
|
|
|
timeShift: event.target.value,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-03-05 03:49:45 -06:00
|
|
|
onOverrideTime = (event: FocusEvent<HTMLInputElement>, status: InputStatus) => {
|
|
|
|
const { value } = event.target;
|
2018-12-13 07:28:44 -06:00
|
|
|
const { panel } = this.props;
|
|
|
|
const emptyToNullValue = emptyToNull(value);
|
|
|
|
if (status === InputStatus.Valid && panel.timeFrom !== emptyToNullValue) {
|
|
|
|
panel.timeFrom = emptyToNullValue;
|
|
|
|
panel.refresh();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-03-05 03:49:45 -06:00
|
|
|
onTimeShift = (event: FocusEvent<HTMLInputElement>, status: InputStatus) => {
|
|
|
|
const { value } = event.target;
|
2018-12-13 07:28:44 -06:00
|
|
|
const { panel } = this.props;
|
|
|
|
const emptyToNullValue = emptyToNull(value);
|
|
|
|
if (status === InputStatus.Valid && panel.timeShift !== emptyToNullValue) {
|
|
|
|
panel.timeShift = emptyToNullValue;
|
|
|
|
panel.refresh();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
onToggleTimeOverride = () => {
|
|
|
|
const { panel } = this.props;
|
2019-03-05 03:49:45 -06:00
|
|
|
this.setState({ hideTimeOverride: !this.state.hideTimeOverride }, () => {
|
|
|
|
panel.hideTimeOverride = this.state.hideTimeOverride;
|
|
|
|
panel.refresh();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
onDataSourceOptionBlur = (panelKey: string) => () => {
|
|
|
|
const { panel } = this.props;
|
|
|
|
|
2019-07-30 08:49:32 -05:00
|
|
|
// @ts-ignore
|
2019-03-05 03:49:45 -06:00
|
|
|
panel[panelKey] = this.state[panelKey];
|
2018-12-13 07:28:44 -06:00
|
|
|
panel.refresh();
|
|
|
|
};
|
|
|
|
|
2019-03-05 03:49:45 -06:00
|
|
|
onDataSourceOptionChange = (panelKey: string) => (event: ChangeEvent<HTMLInputElement>) => {
|
|
|
|
this.setState({ ...this.state, [panelKey]: event.target.value });
|
|
|
|
};
|
|
|
|
|
|
|
|
renderOptions = () => {
|
|
|
|
const { datasource } = this.props;
|
2019-01-08 08:54:12 -06:00
|
|
|
const { queryOptions } = datasource.meta;
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
if (!queryOptions) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Object.keys(queryOptions).map(key => {
|
2019-03-05 03:49:45 -06:00
|
|
|
const options = this.allOptions[key];
|
|
|
|
const panelKey = options.panelKey || key;
|
|
|
|
return (
|
|
|
|
<DataSourceOption
|
|
|
|
key={key}
|
|
|
|
{...options}
|
|
|
|
onChange={this.onDataSourceOptionChange(panelKey)}
|
|
|
|
onBlur={this.onDataSourceOptionBlur(panelKey)}
|
2019-07-30 08:49:32 -05:00
|
|
|
// @ts-ignore
|
2019-03-05 03:49:45 -06:00
|
|
|
value={this.state[panelKey]}
|
|
|
|
/>
|
|
|
|
);
|
2018-12-13 07:28:44 -06:00
|
|
|
});
|
2019-03-05 03:49:45 -06:00
|
|
|
};
|
2018-12-13 07:28:44 -06:00
|
|
|
|
2018-12-18 09:39:59 -06:00
|
|
|
render() {
|
2019-03-05 03:49:45 -06:00
|
|
|
const { hideTimeOverride } = this.state;
|
2018-12-18 09:39:59 -06:00
|
|
|
const { relativeTime, timeShift } = this.state;
|
2018-12-13 07:28:44 -06:00
|
|
|
return (
|
|
|
|
<div className="gf-form-inline">
|
|
|
|
{this.renderOptions()}
|
|
|
|
|
|
|
|
<div className="gf-form">
|
2019-01-16 07:46:57 -06:00
|
|
|
<FormLabel>Relative time</FormLabel>
|
2018-12-13 07:28:44 -06:00
|
|
|
<Input
|
|
|
|
type="text"
|
|
|
|
className="width-6"
|
|
|
|
placeholder="1h"
|
2018-12-18 09:39:59 -06:00
|
|
|
onChange={this.onRelativeTimeChange}
|
2018-12-13 07:28:44 -06:00
|
|
|
onBlur={this.onOverrideTime}
|
|
|
|
validationEvents={timeRangeValidationEvents}
|
|
|
|
hideErrorMessage={true}
|
2018-12-18 09:39:59 -06:00
|
|
|
value={relativeTime}
|
2018-12-13 07:28:44 -06:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="gf-form">
|
|
|
|
<span className="gf-form-label">Time shift</span>
|
|
|
|
<Input
|
|
|
|
type="text"
|
|
|
|
className="width-6"
|
|
|
|
placeholder="1h"
|
2018-12-18 09:39:59 -06:00
|
|
|
onChange={this.onTimeShiftChange}
|
2018-12-13 07:28:44 -06:00
|
|
|
onBlur={this.onTimeShift}
|
|
|
|
validationEvents={timeRangeValidationEvents}
|
|
|
|
hideErrorMessage={true}
|
2018-12-18 09:39:59 -06:00
|
|
|
value={timeShift}
|
2018-12-13 07:28:44 -06:00
|
|
|
/>
|
|
|
|
</div>
|
2019-03-05 04:43:25 -06:00
|
|
|
{(timeShift || relativeTime) && (
|
|
|
|
<div className="gf-form-inline">
|
|
|
|
<Switch label="Hide time info" checked={hideTimeOverride} onChange={this.onToggleTimeOverride} />
|
|
|
|
</div>
|
|
|
|
)}
|
2018-12-13 07:28:44 -06:00
|
|
|
</div>
|
|
|
|
);
|
2018-12-18 09:39:59 -06:00
|
|
|
}
|
2018-12-13 07:28:44 -06:00
|
|
|
}
|