Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Merge pull request #23 from grafana/davkal/19-editor-height
Browse files Browse the repository at this point in the history
Default height for editor field
  • Loading branch information
davkal authored Jan 23, 2019
2 parents 7a15572 + 6262182 commit 7aab4dc
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 22 deletions.
18 changes: 8 additions & 10 deletions src/editor/editor_component.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@

import React, { Component } from 'react';
import React, {Component} from 'react';

import coreModule from 'grafana/app/core/core_module';


import FluxQueryField from './FluxQueryField';
import flux from './flux';

Expand All @@ -20,28 +18,28 @@ class Editor extends Component<any, any> {
}

handleChangeQuery = value => {
const { index, change } = this.props;
const { query } = this.state;
const {index, change} = this.props;
const {query} = this.state;
const edited = query !== value;
this.setState({ edited, query: value });
this.setState({edited, query: value});
if (change) {
change(value, index);
}
};

handlePressEnter = () => {
const { execute } = this.props;
const {execute} = this.props;
if (execute) {
execute();
}
};

render() {
const { database, request } = this.props;
const { edited, query } = this.state;
const {database, request} = this.props;
const {edited, query} = this.state;

return (
<div className="gf-form-input">
<div className="gf-form-input" style={{height: 'initial'}}>
<FluxQueryField
defaultDatabase={database}
initialQuery={edited ? null : query}
Expand Down
46 changes: 34 additions & 12 deletions src/partials/query.editor.html
Original file line number Diff line number Diff line change
@@ -1,32 +1,54 @@
<query-editor-row query-ctrl="ctrl" can-collapse="true">

<div class="gf-form" style="align-items: stretch">
<flux-editor class="gf-form-input" database="ctrl.defaultDatabase" request="ctrl.requestMetadata" style="border: none" query="ctrl.target.query"
change="ctrl.onChange" execute="ctrl.onExecute"></flux-editor>
<flux-editor
database="ctrl.defaultDatabase"
request="ctrl.requestMetadata"
style="border: none; width: 100%"
query="ctrl.target.query"
change="ctrl.onChange"
execute="ctrl.onExecute"
></flux-editor>
<!-- Result preview -->
<textarea rows="10" class="gf-form-input" ng-model="ctrl.dataPreview" readonly></textarea>
<textarea
rows="10"
class="gf-form-input"
ng-model="ctrl.dataPreview"
readonly
></textarea>
</div>
<div class="gf-form-inline">
<div class="gf-form">
<label class="gf-form-label query-keyword">FORMAT AS</label>
<div class="gf-form-select-wrapper">
<select class="gf-form-input gf-size-auto" ng-model="ctrl.target.resultFormat" ng-options="f.value as f.text for f in ctrl.resultFormats"
ng-change="ctrl.refresh()"></select>
<select
class="gf-form-input gf-size-auto"
ng-model="ctrl.target.resultFormat"
ng-options="f.value as f.text for f in ctrl.resultFormats"
ng-change="ctrl.refresh()"
></select>
</div>
</div>
<div class="gf-form" ng-if="ctrl.panelCtrl.loading">
<label class="gf-form-label">
<i class="fa fa-spinner fa-spin"></i> Loading</label>
<label class="gf-form-label"> <i class="fa fa-spinner fa-spin"></i> Loading</label>
</div>
<div class="gf-form" ng-if="!ctrl.panelCtrl.loading">
<label class="gf-form-label">Result tables</label>
<input type="text" class="gf-form-input" ng-model="ctrl.resultTableCount" disabled="disabled">
<input
type="text"
class="gf-form-input"
ng-model="ctrl.resultTableCount"
disabled="disabled"
/>
<label class="gf-form-label">Result records</label>
<input type="text" class="gf-form-input" ng-model="ctrl.resultRecordCount" disabled="disabled">
<input
type="text"
class="gf-form-input"
ng-model="ctrl.resultRecordCount"
disabled="disabled"
/>
</div>
<div class="gf-form gf-form--grow">
<div class="gf-form-label gf-form-label--grow"></div>
</div>
</div>

</query-editor-row>
</query-editor-row>

0 comments on commit 7aab4dc

Please sign in to comment.