mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
stackdriver: conditional template component rendering
This commit is contained in:
@@ -4,4 +4,4 @@ import './import_list/import_list';
|
|||||||
import './ds_edit_ctrl';
|
import './ds_edit_ctrl';
|
||||||
import './datasource_srv';
|
import './datasource_srv';
|
||||||
import './plugin_component';
|
import './plugin_component';
|
||||||
import './plugin_react_component';
|
import './pluginTemplateQueryComponentLoader';
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
import _ from 'lodash';
|
||||||
|
import coreModule from 'app/core/core_module';
|
||||||
|
import { importPluginModule } from './plugin_loader';
|
||||||
|
import React from 'react';
|
||||||
|
import ReactDOM from 'react-dom';
|
||||||
|
import { Provider } from 'react-redux';
|
||||||
|
import DefaultTemplateQueryCtrl from '../templating/defaultTemplateQueryCtrl';
|
||||||
|
|
||||||
|
function WrapInProvider(Component, props) {
|
||||||
|
return (
|
||||||
|
<Provider>
|
||||||
|
<Component {...props} />
|
||||||
|
</Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loadComponent(module) {
|
||||||
|
const component = await importPluginModule(module);
|
||||||
|
if (!component.TemplateQueryCtrl) {
|
||||||
|
return DefaultTemplateQueryCtrl;
|
||||||
|
} else {
|
||||||
|
return component.TemplateQueryCtrl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @ngInject */
|
||||||
|
function pluginTemplateQueryComponentLoader(datasourceSrv) {
|
||||||
|
return {
|
||||||
|
restrict: 'E',
|
||||||
|
link: async (scope, elem) => {
|
||||||
|
const component = await loadComponent(scope.currentDatasource.meta.module);
|
||||||
|
const props = { datasourceSrv, query: scope.current.query, isValid: scope.current.isValid };
|
||||||
|
ReactDOM.render(WrapInProvider(component, props), elem[0]);
|
||||||
|
scope.$on('$destroy', () => {
|
||||||
|
ReactDOM.unmountComponentAtNode(elem[0]);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
coreModule.directive('pluginTemplateQueryComponent', pluginTemplateQueryComponentLoader);
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
import _ from 'lodash';
|
|
||||||
import coreModule from 'app/core/core_module';
|
|
||||||
import { importPluginModule } from './plugin_loader';
|
|
||||||
import React from 'react';
|
|
||||||
import ReactDOM from 'react-dom';
|
|
||||||
import { Provider } from 'react-redux';
|
|
||||||
|
|
||||||
function WrapInProvider(Component, props) {
|
|
||||||
return (
|
|
||||||
<Provider>
|
|
||||||
<Component {...props} />
|
|
||||||
</Provider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @ngInject */
|
|
||||||
function pluginReactDirectiveLoader($compile, datasourceSrv, $rootScope, $q, $http, $templateCache, $timeout) {
|
|
||||||
async function getModule(scope, attrs) {
|
|
||||||
switch (attrs.type) {
|
|
||||||
case 'template-query-ctrl': {
|
|
||||||
const dsModule = await importPluginModule(scope.currentDatasource.meta.module);
|
|
||||||
console.log(dsModule);
|
|
||||||
return dsModule.TemplateQueryCtrl;
|
|
||||||
}
|
|
||||||
default: {
|
|
||||||
return $q.reject({
|
|
||||||
message: 'Could not find component type: ' + attrs.type,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
restrict: 'E',
|
|
||||||
link: async (scope, elem, attrs) => {
|
|
||||||
const component = await getModule(scope, attrs);
|
|
||||||
const props = { datasourceSrv };
|
|
||||||
ReactDOM.render(WrapInProvider(component, props), elem[0]);
|
|
||||||
|
|
||||||
scope.$on('$destroy', () => {
|
|
||||||
ReactDOM.unmountComponentAtNode(elem[0]);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
coreModule.directive('pluginReactComponent', pluginReactDirectiveLoader);
|
|
||||||
32
public/app/features/templating/defaultTemplateQueryCtrl.tsx
Normal file
32
public/app/features/templating/defaultTemplateQueryCtrl.tsx
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
import React, { PureComponent } from 'react';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
query: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class DefaultTemplateQueryCtrl extends PureComponent<Props> {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
console.log('componentDidMount');
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className="gf-form">
|
||||||
|
<span className="gf-form-label width-7">Query</span>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
className="gf-form-input"
|
||||||
|
ng-model="current.query"
|
||||||
|
placeholder="metric name or tags query"
|
||||||
|
ng-model-onblur
|
||||||
|
ng-change="runQuery()"
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,8 +17,10 @@
|
|||||||
</a>
|
</a>
|
||||||
<div class="grafana-info-box">
|
<div class="grafana-info-box">
|
||||||
<h5>What do variables do?</h5>
|
<h5>What do variables do?</h5>
|
||||||
<p>Variables enable more interactive and dynamic dashboards. Instead of hard-coding things like server or sensor names
|
<p>Variables enable more interactive and dynamic dashboards. Instead of hard-coding things like server or sensor
|
||||||
in your metric queries you can use variables in their place. Variables are shown as dropdown select boxes at the top of
|
names
|
||||||
|
in your metric queries you can use variables in their place. Variables are shown as dropdown select boxes at the
|
||||||
|
top of
|
||||||
the dashboard. These dropdowns make it easy to change the data being displayed in your dashboard.
|
the dashboard. These dropdowns make it easy to change the data being displayed in your dashboard.
|
||||||
|
|
||||||
Check out the
|
Check out the
|
||||||
@@ -77,7 +79,8 @@
|
|||||||
<div class="gf-form-inline">
|
<div class="gf-form-inline">
|
||||||
<div class="gf-form max-width-19">
|
<div class="gf-form max-width-19">
|
||||||
<span class="gf-form-label width-6">Name</span>
|
<span class="gf-form-label width-6">Name</span>
|
||||||
<input type="text" class="gf-form-input" name="name" placeholder="name" ng-model='current.name' required ng-pattern="namePattern"></input>
|
<input type="text" class="gf-form-input" name="name" placeholder="name" ng-model='current.name' required
|
||||||
|
ng-pattern="namePattern"></input>
|
||||||
</div>
|
</div>
|
||||||
<div class="gf-form max-width-19">
|
<div class="gf-form max-width-19">
|
||||||
<span class="gf-form-label width-6">
|
<span class="gf-form-label width-6">
|
||||||
@@ -87,13 +90,15 @@
|
|||||||
</info-popover>
|
</info-popover>
|
||||||
</span>
|
</span>
|
||||||
<div class="gf-form-select-wrapper max-width-17">
|
<div class="gf-form-select-wrapper max-width-17">
|
||||||
<select class="gf-form-input" ng-model="current.type" ng-options="k as v.name for (k, v) in variableTypes" ng-change="typeChanged()"></select>
|
<select class="gf-form-input" ng-model="current.type" ng-options="k as v.name for (k, v) in variableTypes"
|
||||||
|
ng-change="typeChanged()"></select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="gf-form" ng-show="ctrl.form.name.$error.pattern">
|
<div class="gf-form" ng-show="ctrl.form.name.$error.pattern">
|
||||||
<span class="gf-form-label gf-form-label--error">Template names cannot begin with '__', that's reserved for Grafana's global variables</span>
|
<span class="gf-form-label gf-form-label--error">Template names cannot begin with '__', that's reserved for
|
||||||
|
Grafana's global variables</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="gf-form-inline">
|
<div class="gf-form-inline">
|
||||||
@@ -127,14 +132,16 @@
|
|||||||
Step count <tip>How many times should the current time range be divided to calculate the value</tip>
|
Step count <tip>How many times should the current time range be divided to calculate the value</tip>
|
||||||
</span>
|
</span>
|
||||||
<div class="gf-form-select-wrapper max-width-10" ng-show="current.auto">
|
<div class="gf-form-select-wrapper max-width-10" ng-show="current.auto">
|
||||||
<select class="gf-form-input" ng-model="current.auto_count" ng-options="f for f in [1,2,3,4,5,10,20,30,40,50,100,200,300,400,500]" ng-change="runQuery()"></select>
|
<select class="gf-form-input" ng-model="current.auto_count" ng-options="f for f in [1,2,3,4,5,10,20,30,40,50,100,200,300,400,500]"
|
||||||
|
ng-change="runQuery()"></select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="gf-form">
|
<div class="gf-form">
|
||||||
<span class="gf-form-label" ng-show="current.auto">
|
<span class="gf-form-label" ng-show="current.auto">
|
||||||
Min interval <tip>The calculated value will not go below this threshold</tip>
|
Min interval <tip>The calculated value will not go below this threshold</tip>
|
||||||
</span>
|
</span>
|
||||||
<input type="text" class="gf-form-input max-width-10" ng-show="current.auto" ng-model="current.auto_min" ng-change="runQuery()" placeholder="10s"></input>
|
<input type="text" class="gf-form-input max-width-10" ng-show="current.auto" ng-model="current.auto_min" ng-change="runQuery()"
|
||||||
|
placeholder="10s"></input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -143,7 +150,8 @@
|
|||||||
<h5 class="section-heading">Custom Options</h5>
|
<h5 class="section-heading">Custom Options</h5>
|
||||||
<div class="gf-form">
|
<div class="gf-form">
|
||||||
<span class="gf-form-label width-14">Values separated by comma</span>
|
<span class="gf-form-label width-14">Values separated by comma</span>
|
||||||
<input type="text" class="gf-form-input" ng-model='current.query' ng-blur="runQuery()" placeholder="1, 10, 20, myvalue" required></input>
|
<input type="text" class="gf-form-input" ng-model='current.query' ng-blur="runQuery()" placeholder="1, 10, 20, myvalue"
|
||||||
|
required></input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -170,7 +178,8 @@
|
|||||||
<div class="gf-form max-width-21">
|
<div class="gf-form max-width-21">
|
||||||
<span class="gf-form-label width-7">Data source</span>
|
<span class="gf-form-label width-7">Data source</span>
|
||||||
<div class="gf-form-select-wrapper max-width-14">
|
<div class="gf-form-select-wrapper max-width-14">
|
||||||
<select class="gf-form-input" ng-model="current.datasource" ng-options="f.value as f.name for f in datasources" ng-change="datasourceChanged()" required>
|
<select class="gf-form-input" ng-model="current.datasource" ng-options="f.value as f.name for f in datasources"
|
||||||
|
ng-change="datasourceChanged()" required>
|
||||||
<option value="" ng-if="false"></option>
|
<option value="" ng-if="false"></option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
@@ -190,14 +199,14 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<rebuild-on-change property="currentDatasource">
|
<rebuild-on-change property="currentDatasource">
|
||||||
<plugin-react-component type="template-query-ctrl">
|
<plugin-template-query-component>
|
||||||
</plugin-react-component>
|
</plugin-template-query-component>
|
||||||
</rebuild-on-change>
|
</rebuild-on-change>
|
||||||
|
|
||||||
<div class="gf-form">
|
<!-- <div class="gf-form">
|
||||||
<span class="gf-form-label width-7">Query</span>
|
<span class="gf-form-label width-7">Query</span>
|
||||||
<input type="text" class="gf-form-input" ng-model='current.query' placeholder="metric name or tags query" ng-model-onblur ng-change="runQuery()" required></input>
|
<input type="text" class="gf-form-input" ng-model='current.query' placeholder="metric name or tags query" ng-model-onblur ng-change="runQuery()" required></input>
|
||||||
</div>
|
</div> -->
|
||||||
<div class="gf-form">
|
<div class="gf-form">
|
||||||
<span class="gf-form-label width-7">
|
<span class="gf-form-label width-7">
|
||||||
Regex
|
Regex
|
||||||
@@ -205,7 +214,8 @@
|
|||||||
Optional, if you want to extract part of a series name or metric node segment.
|
Optional, if you want to extract part of a series name or metric node segment.
|
||||||
</info-popover>
|
</info-popover>
|
||||||
</span>
|
</span>
|
||||||
<input type="text" class="gf-form-input" ng-model='current.regex' placeholder="/.*-(.*)-.*/" ng-model-onblur ng-change="runQuery()"></input>
|
<input type="text" class="gf-form-input" ng-model='current.regex' placeholder="/.*-(.*)-.*/" ng-model-onblur
|
||||||
|
ng-change="runQuery()"></input>
|
||||||
</div>
|
</div>
|
||||||
<div class="gf-form max-width-21">
|
<div class="gf-form max-width-21">
|
||||||
<span class="gf-form-label width-7">
|
<span class="gf-form-label width-7">
|
||||||
@@ -215,7 +225,8 @@
|
|||||||
</info-popover>
|
</info-popover>
|
||||||
</span>
|
</span>
|
||||||
<div class="gf-form-select-wrapper max-width-14">
|
<div class="gf-form-select-wrapper max-width-14">
|
||||||
<select class="gf-form-input" ng-model="current.sort" ng-options="f.value as f.text for f in sortOptions" ng-change="runQuery()"></select>
|
<select class="gf-form-input" ng-model="current.sort" ng-options="f.value as f.text for f in sortOptions"
|
||||||
|
ng-change="runQuery()"></select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -226,7 +237,8 @@
|
|||||||
<div class="gf-form">
|
<div class="gf-form">
|
||||||
<label class="gf-form-label width-12">Type</label>
|
<label class="gf-form-label width-12">Type</label>
|
||||||
<div class="gf-form-select-wrapper max-width-18">
|
<div class="gf-form-select-wrapper max-width-18">
|
||||||
<select class="gf-form-input" ng-model="current.query" ng-options="f.value as f.text for f in datasourceTypes" ng-change="runQuery()"></select>
|
<select class="gf-form-input" ng-model="current.query" ng-options="f.value as f.text for f in datasourceTypes"
|
||||||
|
ng-change="runQuery()"></select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -241,7 +253,8 @@
|
|||||||
|
|
||||||
</info-popover>
|
</info-popover>
|
||||||
</label>
|
</label>
|
||||||
<input type="text" class="gf-form-input max-width-18" ng-model='current.regex' placeholder="/.*-(.*)-.*/" ng-model-onblur ng-change="runQuery()"></input>
|
<input type="text" class="gf-form-input max-width-18" ng-model='current.regex' placeholder="/.*-(.*)-.*/"
|
||||||
|
ng-model-onblur ng-change="runQuery()"></input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -250,7 +263,8 @@
|
|||||||
<div class="gf-form max-width-21">
|
<div class="gf-form max-width-21">
|
||||||
<span class="gf-form-label width-8">Data source</span>
|
<span class="gf-form-label width-8">Data source</span>
|
||||||
<div class="gf-form-select-wrapper max-width-14">
|
<div class="gf-form-select-wrapper max-width-14">
|
||||||
<select class="gf-form-input" ng-model="current.datasource" ng-options="f.value as f.name for f in datasources" required ng-change="validate()">
|
<select class="gf-form-input" ng-model="current.datasource" ng-options="f.value as f.name for f in datasources"
|
||||||
|
required ng-change="validate()">
|
||||||
<option value="" ng-if="false"></option>
|
<option value="" ng-if="false"></option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
@@ -260,17 +274,10 @@
|
|||||||
<div class="section gf-form-group" ng-show="variableTypes[current.type].supportsMulti">
|
<div class="section gf-form-group" ng-show="variableTypes[current.type].supportsMulti">
|
||||||
<h5 class="section-heading">Selection Options</h5>
|
<h5 class="section-heading">Selection Options</h5>
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<gf-form-switch class="gf-form"
|
<gf-form-switch class="gf-form" label="Multi-value" label-class="width-10" tooltip="Enables multiple values to be selected at the same time"
|
||||||
label="Multi-value"
|
checked="current.multi" on-change="runQuery()">
|
||||||
label-class="width-10"
|
|
||||||
tooltip="Enables multiple values to be selected at the same time"
|
|
||||||
checked="current.multi"
|
|
||||||
on-change="runQuery()">
|
|
||||||
</gf-form-switch>
|
</gf-form-switch>
|
||||||
<gf-form-switch class="gf-form"
|
<gf-form-switch class="gf-form" label="Include All option" label-class="width-10" checked="current.includeAll"
|
||||||
label="Include All option"
|
|
||||||
label-class="width-10"
|
|
||||||
checked="current.includeAll"
|
|
||||||
on-change="runQuery()">
|
on-change="runQuery()">
|
||||||
</gf-form-switch>
|
</gf-form-switch>
|
||||||
</div>
|
</div>
|
||||||
@@ -286,11 +293,13 @@
|
|||||||
</gf-form-switch>
|
</gf-form-switch>
|
||||||
<div class="gf-form last" ng-if="current.useTags">
|
<div class="gf-form last" ng-if="current.useTags">
|
||||||
<span class="gf-form-label width-10">Tags query</span>
|
<span class="gf-form-label width-10">Tags query</span>
|
||||||
<input type="text" class="gf-form-input" ng-model='current.tagsQuery' placeholder="metric name or tags query" ng-model-onblur></input>
|
<input type="text" class="gf-form-input" ng-model='current.tagsQuery' placeholder="metric name or tags query"
|
||||||
|
ng-model-onblur></input>
|
||||||
</div>
|
</div>
|
||||||
<div class="gf-form" ng-if="current.useTags">
|
<div class="gf-form" ng-if="current.useTags">
|
||||||
<li class="gf-form-label width-10">Tag values query</li>
|
<li class="gf-form-label width-10">Tag values query</li>
|
||||||
<input type="text" class="gf-form-input" ng-model='current.tagValuesQuery' placeholder="apps.$tag.*" ng-model-onblur></input>
|
<input type="text" class="gf-form-input" ng-model='current.tagValuesQuery' placeholder="apps.$tag.*"
|
||||||
|
ng-model-onblur></input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -317,4 +326,3 @@
|
|||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
import React, { PureComponent } from 'react';
|
import React, { PureComponent } from 'react';
|
||||||
|
import DatasourceSrv from 'app/features/plugins/datasource_srv';
|
||||||
|
|
||||||
interface Props {}
|
interface Props {
|
||||||
|
query: string;
|
||||||
|
datasourceSrv: DatasourceSrv;
|
||||||
|
isValid: any;
|
||||||
|
}
|
||||||
|
|
||||||
export class StackdriverTemplateQueryCtrl extends PureComponent<Props> {
|
export class StackdriverTemplateQueryCtrl extends PureComponent<Props> {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
|||||||
Reference in New Issue
Block a user