mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
78 lines
1.6 KiB
TypeScript
78 lines
1.6 KiB
TypeScript
import coreModule from '../../core/core_module';
|
|
|
|
export class PlaylistSearchCtrl {
|
|
query: any;
|
|
tagsMode: boolean;
|
|
|
|
searchStarted: any;
|
|
|
|
/** @ngInject */
|
|
constructor($timeout, private backendSrv) {
|
|
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);
|