mirror of https://github.com/grafana/grafana.git
AngularQueryEditors: Fixes to Graphite query editor and other who refer to other queries (#30154)
* AngularQueryEditors: Fixes to Graphite query editor and other who refer to other queries * Fixed missing call to old function
This commit is contained in:
parent
dc7a6c2113
commit
e09c535f3f
|
|
@ -72,9 +72,9 @@ export class QueryEditorRow extends PureComponent<Props, State> {
|
|||
}
|
||||
|
||||
getAngularQueryComponentScope(): AngularQueryComponentScope {
|
||||
const { query, onChange } = this.props;
|
||||
const { query, onChange, onRunQuery, queries } = this.props;
|
||||
const { datasource } = this.state;
|
||||
const panel = new PanelModel({});
|
||||
const panel = new PanelModel({ targets: queries });
|
||||
const dashboard = {} as DashboardModel;
|
||||
|
||||
return {
|
||||
|
|
@ -85,6 +85,7 @@ export class QueryEditorRow extends PureComponent<Props, State> {
|
|||
refresh: () => {
|
||||
// Old angular editors modify the query model and just call refresh
|
||||
onChange(query);
|
||||
onRunQuery();
|
||||
},
|
||||
render: () => () => console.log('legacy render function called, it does nothing'),
|
||||
events: panel.events,
|
||||
|
|
@ -170,12 +171,8 @@ export class QueryEditorRow extends PureComponent<Props, State> {
|
|||
this.renderAngularQueryEditor();
|
||||
};
|
||||
|
||||
onRunQuery = () => {
|
||||
this.props.onRunQuery();
|
||||
};
|
||||
|
||||
renderPluginEditor = () => {
|
||||
const { query, onChange, queries } = this.props;
|
||||
const { query, onChange, queries, onRunQuery } = this.props;
|
||||
const { datasource, data } = this.state;
|
||||
|
||||
if (datasource?.components?.QueryCtrl) {
|
||||
|
|
@ -191,7 +188,7 @@ export class QueryEditorRow extends PureComponent<Props, State> {
|
|||
query={query}
|
||||
datasource={datasource}
|
||||
onChange={onChange}
|
||||
onRunQuery={this.onRunQuery}
|
||||
onRunQuery={onRunQuery}
|
||||
data={data}
|
||||
range={getTimeSrv().timeRange()}
|
||||
queries={queries}
|
||||
|
|
@ -224,7 +221,7 @@ export class QueryEditorRow extends PureComponent<Props, State> {
|
|||
|
||||
onDisableQuery = () => {
|
||||
this.props.query.hide = !this.props.query.hide;
|
||||
this.onRunQuery();
|
||||
this.props.onRunQuery();
|
||||
this.forceUpdate();
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue