| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- import React, { SFC, PureComponent } from 'react';
- import DataSourceOption from './DataSourceOption';
- import { getAngularLoader, AngularComponent } from 'app/core/services/AngularLoader';
- import { EditorTabBody } from './EditorTabBody';
- import { DataSourcePicker } from './DataSourcePicker';
- import { PanelModel } from '../panel_model';
- import { DashboardModel } from '../dashboard_model';
- import './../../panel/metrics_tab';
- import config from 'app/core/config';
- import { QueryInspector } from './QueryInspector';
- import { TimeRangeOptions } from './TimeRangeOptions';
- // Services
- import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
- import { getBackendSrv, BackendSrv } from 'app/core/services/backend_srv';
- import { DataSourceSelectItem } from 'app/types';
- import Remarkable from 'remarkable';
- interface Props {
- panel: PanelModel;
- dashboard: DashboardModel;
- }
- interface Help {
- isLoading: boolean;
- helpHtml: any;
- }
- interface State {
- currentDatasource: DataSourceSelectItem;
- help: Help;
- hideTimeOverride: boolean;
- }
- interface LoadingPlaceholderProps {
- text: string;
- }
- const LoadingPlaceholder: SFC<LoadingPlaceholderProps> = ({ text }) => <h2>{text}</h2>;
- export class QueriesTab extends PureComponent<Props, State> {
- element: any;
- component: AngularComponent;
- datasources: DataSourceSelectItem[] = getDatasourceSrv().getMetricSources();
- backendSrv: BackendSrv = getBackendSrv();
- constructor(props) {
- super(props);
- const { panel } = props;
- this.state = {
- currentDatasource: this.datasources.find(datasource => datasource.value === panel.datasource),
- help: {
- isLoading: false,
- helpHtml: null,
- },
- hideTimeOverride: false,
- };
- }
- componentDidMount() {
- if (!this.element) {
- return;
- }
- const { panel, dashboard } = this.props;
- const loader = getAngularLoader();
- const template = '<metrics-tab />';
- const scopeProps = {
- ctrl: {
- panel: panel,
- dashboard: dashboard,
- refresh: () => panel.refresh(),
- },
- };
- this.component = loader.load(this.element, scopeProps, template);
- }
- componentWillUnmount() {
- if (this.component) {
- this.component.destroy();
- }
- }
- onChangeDataSource = datasource => {
- const { panel } = this.props;
- const { currentDatasource } = this.state;
- // switching to mixed
- if (datasource.meta.mixed) {
- panel.targets.forEach(target => {
- target.datasource = panel.datasource;
- if (!target.datasource) {
- target.datasource = config.defaultDatasource;
- }
- });
- } else if (currentDatasource && currentDatasource.meta.mixed) {
- panel.targets.forEach(target => {
- delete target.datasource;
- });
- }
- panel.datasource = datasource.value;
- panel.refresh();
- this.setState(prevState => ({
- ...prevState,
- currentDatasource: datasource,
- }));
- };
- loadHelp = () => {
- const { currentDatasource } = this.state;
- const hasHelp = currentDatasource.meta.hasQueryHelp;
- if (hasHelp) {
- this.setState(prevState => ({
- ...prevState,
- help: {
- helpHtml: <h2>Loading help...</h2>,
- isLoading: true,
- },
- }));
- this.backendSrv
- .get(`/api/plugins/${currentDatasource.meta.id}/markdown/query_help`)
- .then(res => {
- const md = new Remarkable();
- const helpHtml = md.render(res); // TODO: Clean out dangerous code? Previous: this.helpHtml = this.$sce.trustAsHtml(md.render(res));
- this.setState(prevState => ({
- ...prevState,
- help: {
- helpHtml: <div className="markdown-html" dangerouslySetInnerHTML={{ __html: helpHtml }} />,
- isLoading: false,
- },
- }));
- })
- .catch(() => {
- this.setState(prevState => ({
- ...prevState,
- help: {
- helpHtml: 'Error occured when loading help',
- isLoading: false,
- },
- }));
- });
- }
- };
- renderOptions = close => {
- const { currentDatasource } = this.state;
- const { queryOptions } = currentDatasource.meta;
- const { panel } = this.props;
- const onChangeFn = (panelKey: string) => {
- return (value: string | number) => {
- panel[panelKey] = value;
- panel.refresh();
- };
- };
- const allOptions = {
- cacheTimeout: {
- label: 'Cache timeout',
- placeholder: '60',
- name: 'cacheTimeout',
- value: panel.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',
- value: panel.maxDataPoints,
- tooltipInfo: (
- <>
- The maximum data points the query should return. For graphs this is automatically set to one data point per
- pixel.
- </>
- ),
- },
- minInterval: {
- label: 'Min time interval',
- placeholder: '0',
- name: 'minInterval',
- value: panel.interval,
- 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.
- </>
- ),
- },
- };
- const dsOptions = queryOptions
- ? Object.keys(queryOptions).map(key => {
- const options = allOptions[key];
- return <DataSourceOption key={key} {...options} onChange={onChangeFn(allOptions[key].panelKey || key)} />;
- })
- : null;
- return (
- <>
- <TimeRangeOptions panel={this.props.panel} />
- {dsOptions}
- </>
- );
- };
- renderQueryInspector = () => {
- const { panel } = this.props;
- return <QueryInspector panel={panel} LoadingPlaceholder={LoadingPlaceholder} />;
- };
- renderHelp = () => {
- const { helpHtml, isLoading } = this.state.help;
- return isLoading ? <LoadingPlaceholder text="Loading help..." /> : helpHtml;
- };
- render() {
- const { currentDatasource } = this.state;
- const { hasQueryHelp } = currentDatasource.meta;
- const dsInformation = {
- title: currentDatasource.name,
- imgSrc: currentDatasource.meta.info.logos.small,
- render: closeOpenView => (
- <DataSourcePicker
- datasources={this.datasources}
- onChangeDataSource={ds => {
- closeOpenView();
- this.onChangeDataSource(ds);
- }}
- />
- ),
- };
- const queryInspector = {
- title: 'Query Inspector',
- render: this.renderQueryInspector,
- };
- const dsHelp = {
- title: '',
- icon: 'fa fa-question',
- disabled: !hasQueryHelp,
- onClick: this.loadHelp,
- render: this.renderHelp,
- };
- const options = {
- title: 'Time Range',
- icon: '',
- disabled: false,
- render: this.renderOptions,
- };
- return (
- <EditorTabBody heading="Queries" main={dsInformation} toolbarItems={[options, queryInspector, dsHelp]}>
- <>
- <div ref={element => (this.element = element)} style={{ width: '100%' }} />
- </>
- </EditorTabBody>
- );
- }
- }
|