| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- // Libraries
- import React, { SFC, PureComponent } from 'react';
- import Remarkable from 'remarkable';
- import _ from 'lodash';
- // Components
- import './../../panel/metrics_tab';
- import { EditorTabBody } from './EditorTabBody';
- import { DataSourcePicker } from './DataSourcePicker';
- import { QueryInspector } from './QueryInspector';
- import { QueryOptions } from './QueryOptions';
- import { AngularQueryComponentScope } from 'app/features/panel/metrics_tab';
- // Services
- import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
- import { getBackendSrv, BackendSrv } from 'app/core/services/backend_srv';
- import { getAngularLoader, AngularComponent } from 'app/core/services/AngularLoader';
- import config from 'app/core/config';
- // Types
- import { PanelModel } from '../panel_model';
- import { DashboardModel } from '../dashboard_model';
- import { DataSourceSelectItem, DataQuery } from 'app/types';
- interface Props {
- panel: PanelModel;
- dashboard: DashboardModel;
- }
- interface State {
- currentDS: DataSourceSelectItem;
- helpContent: JSX.Element;
- isLoadingHelp: boolean;
- isPickerOpen: boolean;
- isAddingMixed: boolean;
- }
- interface LoadingPlaceholderProps {
- text: string;
- }
- const LoadingPlaceholder: SFC<LoadingPlaceholderProps> = ({ text }) => <h2>{text}</h2>;
- export class QueriesTab extends PureComponent<Props, State> {
- element: HTMLElement;
- component: AngularComponent;
- datasources: DataSourceSelectItem[] = getDatasourceSrv().getMetricSources();
- backendSrv: BackendSrv = getBackendSrv();
- constructor(props) {
- super(props);
- const { panel } = props;
- this.state = {
- currentDS: this.datasources.find(datasource => datasource.value === panel.datasource),
- isLoadingHelp: false,
- helpContent: null,
- isPickerOpen: false,
- isAddingMixed: false,
- };
- }
- getAngularQueryComponentScope(): AngularQueryComponentScope {
- const { panel, dashboard } = this.props;
- return {
- panel: panel,
- dashboard: dashboard,
- refresh: () => panel.refresh(),
- render: () => panel.render,
- addQuery: this.onAddQuery,
- moveQuery: this.onMoveQuery,
- removeQuery: this.onRemoveQuery,
- events: panel.events,
- };
- }
- componentDidMount() {
- if (!this.element) {
- return;
- }
- const loader = getAngularLoader();
- const template = '<metrics-tab />';
- const scopeProps = {
- ctrl: this.getAngularQueryComponentScope(),
- };
- this.component = loader.load(this.element, scopeProps, template);
- }
- componentWillUnmount() {
- if (this.component) {
- this.component.destroy();
- }
- }
- onChangeDataSource = datasource => {
- const { panel } = this.props;
- const { currentDS } = 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 (currentDS) {
- // if switching from mixed
- if (currentDS.meta.mixed) {
- for (const target of panel.targets) {
- delete target.datasource;
- }
- } else if (currentDS.meta.id !== datasource.meta.id) {
- // we are changing data source type, clear queries
- panel.targets = [{ refId: 'A' }];
- }
- }
- panel.datasource = datasource.value;
- panel.refresh();
- this.setState({
- currentDS: datasource,
- });
- };
- loadHelp = () => {
- const { currentDS } = this.state;
- const hasHelp = currentDS.meta.hasQueryHelp;
- if (hasHelp) {
- this.setState({
- helpContent: <h3>Loading help...</h3>,
- isLoadingHelp: true,
- });
- this.backendSrv
- .get(`/api/plugins/${currentDS.meta.id}/markdown/query_help`)
- .then(res => {
- const md = new Remarkable();
- const helpHtml = md.render(res);
- this.setState({
- helpContent: <div className="markdown-html" dangerouslySetInnerHTML={{ __html: helpHtml }} />,
- isLoadingHelp: false,
- });
- })
- .catch(() => {
- this.setState({
- helpContent: <h3>'Error occured when loading help'</h3>,
- isLoadingHelp: false,
- });
- });
- }
- };
- renderQueryInspector = () => {
- const { panel } = this.props;
- return <QueryInspector panel={panel} LoadingPlaceholder={LoadingPlaceholder} />;
- };
- renderHelp = () => {
- const { helpContent, isLoadingHelp } = this.state;
- return isLoadingHelp ? <LoadingPlaceholder text="Loading help..." /> : helpContent;
- };
- onAddQuery = (query?: Partial<DataQuery>) => {
- this.props.panel.addQuery(query);
- this.forceUpdate();
- };
- onAddQueryClick = () => {
- if (this.state.currentDS.meta.mixed) {
- this.setState({ isAddingMixed: true });
- return;
- }
- this.props.panel.addQuery();
- this.component.digest();
- this.forceUpdate();
- };
- onRemoveQuery = (query: DataQuery) => {
- const { panel } = this.props;
- const index = _.indexOf(panel.targets, query);
- panel.targets.splice(index, 1);
- panel.refresh();
- this.forceUpdate();
- };
- onMoveQuery = (query: DataQuery, direction: number) => {
- const { panel } = this.props;
- const index = _.indexOf(panel.targets, query);
- _.move(panel.targets, index, index + direction);
- this.forceUpdate();
- };
- renderToolbar = () => {
- const { currentDS } = this.state;
- return (
- <DataSourcePicker
- datasources={this.datasources}
- onChangeDataSource={this.onChangeDataSource}
- current={currentDS}
- />
- );
- };
- renderMixedPicker = () => {
- return (
- <DataSourcePicker
- datasources={this.datasources}
- onChangeDataSource={this.onAddMixedQuery}
- current={null}
- autoFocus={true}
- onBlur={this.onMixedPickerBlur}
- />
- );
- };
- onAddMixedQuery = datasource => {
- this.onAddQuery({ datasource: datasource.name });
- this.component.digest();
- this.setState({ isAddingMixed: false });
- };
- onMixedPickerBlur = () => {
- this.setState({ isAddingMixed: false });
- };
- render() {
- const { panel } = this.props;
- const { currentDS, isAddingMixed } = this.state;
- const { hasQueryHelp } = currentDS.meta;
- const queryInspector = {
- title: 'Query Inspector',
- render: this.renderQueryInspector,
- };
- const dsHelp = {
- title: '',
- icon: 'fa fa-question',
- disabled: !hasQueryHelp,
- onClick: this.loadHelp,
- render: this.renderHelp,
- };
- return (
- <EditorTabBody heading="Data" renderToolbar={this.renderToolbar} toolbarItems={[queryInspector, dsHelp]}>
- <>
- <div className="panel-option-section">
- <div className="panel-option-section__header">Queries</div>
- <div className="panel-option-section__body panel-option-section__body--queries">
- <div className="query-editor-rows gf-form-group">
- <div ref={element => (this.element = element)} />
- <div className="gf-form-query">
- <div className="gf-form gf-form-query-letter-cell">
- <label className="gf-form-label">
- <span className="gf-form-query-letter-cell-carret muted">
- <i className="fa fa-caret-down" />
- </span>
- <span className="gf-form-query-letter-cell-letter">{panel.getNextQueryLetter()}</span>
- </label>
- {!isAddingMixed && (
- <button className="btn btn-secondary gf-form-btn" onClick={this.onAddQueryClick}>
- Add Query
- </button>
- )}
- {isAddingMixed && this.renderMixedPicker()}
- </div>
- </div>
- </div>
- </div>
- </div>
- <div className="panel-option-section">
- <div className="panel-option-section__header">Options</div>
- <div className="panel-option-section__body">
- <QueryOptions panel={panel} datasource={currentDS} />
- </div>
- </div>
- </>
- </EditorTabBody>
- );
- }
- }
|