mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
84 lines
1.8 KiB
TypeScript
84 lines
1.8 KiB
TypeScript
///<reference path="../../headers/common.d.ts" />
|
|
|
|
import angular from 'angular';
|
|
import config from 'app/core/config';
|
|
import _ from 'lodash';
|
|
import $ from 'jquery';
|
|
import coreModule from '../../core/core_module';
|
|
|
|
export class PlaylistSearchCtrl {
|
|
query: any;
|
|
tagsMode: boolean;
|
|
|
|
searchStarted: any;
|
|
|
|
/** @ngInject */
|
|
constructor(private $scope, private $location, private $timeout, private backendSrv, private contextSrv) {
|
|
this.query = {query: '', tag: [], starred: false, limit: 30};
|
|
|
|
$timeout(() => {
|
|
this.query.query = '';
|
|
this.searchDashboards();
|
|
}, 100);
|
|
}
|
|
|
|
searchDashboards() {
|
|
this.tagsMode = false;
|
|
var prom: any = {};
|
|
|
|
prom.promise = this.backendSrv.search(this.query).then((result) => {
|
|
return {
|
|
dashboardResult: result,
|
|
tagResult: []
|
|
};
|
|
});
|
|
|
|
this.searchStarted(prom);
|
|
}
|
|
|
|
showStarred() {
|
|
this.query.starred = !this.query.starred;
|
|
this.searchDashboards();
|
|
}
|
|
|
|
queryHasNoFilters() {
|
|
return this.query.query === '' && this.query.starred === false && this.query.tag.length === 0;
|
|
}
|
|
|
|
filterByTag(tag, evt) {
|
|
this.query.tag.push(tag);
|
|
this.searchDashboards();
|
|
if (evt) {
|
|
evt.stopPropagation();
|
|
evt.preventDefault();
|
|
}
|
|
}
|
|
|
|
getTags() {
|
|
var prom: any = {};
|
|
prom.promise = this.backendSrv.get('/api/dashboards/tags').then((result) => {
|
|
return {
|
|
dashboardResult: [],
|
|
tagResult: result
|
|
};
|
|
});
|
|
|
|
this.searchStarted(prom);
|
|
}
|
|
}
|
|
|
|
export function playlistSearchDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'public/app/features/playlist/partials/playlist_search.html',
|
|
controller: PlaylistSearchCtrl,
|
|
bindToController: true,
|
|
controllerAs: 'ctrl',
|
|
scope: {
|
|
searchStarted: '&'
|
|
},
|
|
};
|
|
}
|
|
|
|
coreModule.directive('playlistSearch', playlistSearchDirective);
|