Query deactivation
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
|
||||
|
||||
<div class="pull-right">
|
||||
|
||||
<a class="btn btn-mini" ng-click="querySrv.list[id].enable=false;dashboard.refresh();dismiss();" class="pointer">Deactivate</a>
|
||||
<a class="btn btn-mini" ng-class="{active:querySrv.list[id].pin}" ng-click="toggle_pin(id);dismiss();" class="pointer">Pin <i class="icon-pushpin"></i></a>
|
||||
<input class="btn btn-mini" ng-click="dashboard.refresh();dismiss();" type="submit"/ value="Close">
|
||||
</div>
|
||||
|
||||
@@ -2,11 +2,12 @@
|
||||
<div ng-repeat="id in (unPinnedQueries = (querySrv.ids|pinnedQuery:false))" ng-class="{'short-query': unPinnedQueries.length>1}">
|
||||
<form class="form-search" style="position:relative;margin-bottom:5px;" ng-submit="refresh()">
|
||||
<span class="begin-query">
|
||||
<i class="pointer" ng-class="queryIcon(querySrv.list[id].type)" data-unique="1" bs-popover="'app/panels/query/meta.html'" data-placement="bottomLeft" ng-style="{color: querySrv.list[id].color}"></i>
|
||||
<i class="pointer" ng-class="queryIcon(querySrv.list[id].type)" ng-show="querySrv.list[id].enable" data-unique="1" bs-popover="'app/panels/query/meta.html'" data-placement="bottomLeft" ng-style="{color: querySrv.list[id].color}"></i>
|
||||
<i class="pointer icon-circle-blank" ng-click="querySrv.list[id].enable=true;dashboard.refresh();" ng-hide="querySrv.list[id].enable" bs-tooltip="'Activate query'" ng-style="{color: querySrv.list[id].color}"></i>
|
||||
<i class="icon-remove-sign pointer remove-query" ng-show="querySrv.ids.length > 1" ng-click="querySrv.remove(id);refresh()"></i>
|
||||
</span>
|
||||
<span>
|
||||
<input class="search-query panel-query" ng-class="{ 'input-block-level': unPinnedQueries.length==1, 'last-query': $last, 'has-remove': querySrv.ids.length > 1 }" bs-typeahead="panel.history" data-min-length=0 data-items=100 type="text" ng-model="querySrv.list[id].query" />
|
||||
<input class="search-query panel-query" ng-disabled="!querySrv.list[id].enable" ng-class="{ 'input-block-level': unPinnedQueries.length==1, 'last-query': $last, 'has-remove': querySrv.ids.length > 1 }" bs-typeahead="panel.history" data-min-length=0 data-items=100 type="text" ng-model="querySrv.list[id].query" />
|
||||
</span>
|
||||
<span class="end-query">
|
||||
<i class="icon-search pointer" ng-click="refresh()" ng-show="$last"></i>
|
||||
@@ -17,7 +18,9 @@
|
||||
<div style="display:inline-block" ng-repeat="id in querySrv.ids|pinnedQuery:true">
|
||||
<span class="pointer" ng-show="$first" ng-click="panel.pinned = !panel.pinned"><span class="pins">Pinned</span> <i ng-class="{'icon-caret-right':panel.pinned,'icon-caret-left':!panel.pinned}"></i></span>
|
||||
<span ng-show="panel.pinned" class="badge pinned">
|
||||
<i class="icon-circle pointer" ng-style="{color: querySrv.list[id].color}" data-unique="1" bs-popover="'app/panels/query/meta.html'" data-placement="bottomLeft"></i><span bs-tooltip="querySrv.list[id].query"> {{querySrv.list[id].alias || querySrv.list[id].query}}</span>
|
||||
<i class="icon-circle pointer" ng-show="querySrv.list[id].enable" ng-style="{color: querySrv.list[id].color}" data-unique="1" bs-popover="'app/panels/query/meta.html'" data-placement="bottomLeft"></i>
|
||||
<i class="pointer icon-circle-blank" bs-tooltip="'Activate query'" ng-click="querySrv.list[id].enable=true;dashboard.refresh();" ng-hide="querySrv.list[id].enable" ng-style="{color: querySrv.list[id].color}"></i>
|
||||
<span bs-tooltip="querySrv.list[id].query"> {{querySrv.list[id].alias || querySrv.list[id].query}}</span>
|
||||
</span>
|
||||
</div>
|
||||
<span style="display:inline-block" ng-show="unPinnedQueries.length == 0">
|
||||
|
||||
@@ -22,6 +22,11 @@
|
||||
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
||||
box-sizing: border-box; /* Opera/IE 8+ */
|
||||
}
|
||||
|
||||
.query-disabled {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.form-search:hover .has-remove {
|
||||
padding-left: 50px !important;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,8 @@ function (angular, _, config, kbn) {
|
||||
var _query = {
|
||||
alias: '',
|
||||
pin: false,
|
||||
type: 'lucene'
|
||||
type: 'lucene',
|
||||
enable: true
|
||||
};
|
||||
|
||||
// Defaults for specific query types
|
||||
@@ -214,15 +215,15 @@ function (angular, _, config, kbn) {
|
||||
switch(config.mode)
|
||||
{
|
||||
case 'all':
|
||||
return self.ids;
|
||||
return _.pluck(_.where(self.list,{enable:true}),'id');
|
||||
case 'pinned':
|
||||
return _.pluck(_.where(self.list,{pin:true}),'id');
|
||||
return _.pluck(_.where(self.list,{pin:true,enable:true}),'id');
|
||||
case 'unpinned':
|
||||
return _.difference(self.ids,_.pluck(_.where(self.list,{pin:true}),'id'));
|
||||
return _.difference(self.ids,_.pluck(_.where(self.list,{pin:true,enable:true}),'id'));
|
||||
case 'selected':
|
||||
return _.intersection(self.ids,config.ids);
|
||||
return _.intersection(_.pluck(_.where(self.list,{enable:true}),'id'),config.ids);
|
||||
default:
|
||||
return self.ids;
|
||||
return _.pluck(_.where(self.list,{enable:true}),'id');
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+2
-1
@@ -436,7 +436,8 @@ textarea[disabled],
|
||||
input[readonly],
|
||||
select[readonly],
|
||||
textarea[readonly] {
|
||||
color: @white;
|
||||
color: @gray;
|
||||
background: @grayDarker;
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
|
||||
Reference in New Issue
Block a user