This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from grafana/davkal/19-editor-height
Default height for editor field
- Loading branch information
Showing
2 changed files
with
42 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |