grafana/public/app/features/playlist/playlists_ctrl.ts
Ivana Huckova 1c58202b26
@grafana/ui: Replace various icons using Icon component (#23442)
* Replace icons in dashboard and settings

* Replace icons in alerting

* Update batch of icons

* Implement icons accross various files

* Style updates

* Search: Fix recent and starred icons

* Update styling and details

* Replace new icon created by unicons

* Fix e2e test, styling

* Minor styling updates

Co-authored-by: Clarity-89 <homes89@ukr.net>
2020-04-12 22:20:02 +02:00

62 lines
1.8 KiB
TypeScript

import { IScope } from 'angular';
import _ from 'lodash';
import { AppEvents } from '@grafana/data';
import { getBackendSrv } from '@grafana/runtime';
import coreModule from '../../core/core_module';
import { NavModelSrv } from 'app/core/nav_model_srv';
import { AppEventEmitter, CoreEvents } from 'app/types';
import { promiseToDigest } from '../../core/utils/promiseToDigest';
export class PlaylistsCtrl {
playlists: any;
navModel: any;
/** @ngInject */
constructor(private $scope: IScope & AppEventEmitter, navModelSrv: NavModelSrv) {
this.navModel = navModelSrv.getNav('dashboards', 'playlists', 0);
promiseToDigest($scope)(
getBackendSrv()
.get('/api/playlists')
.then((result: any) => {
this.playlists = result.map((item: any) => {
item.startUrl = `playlists/play/${item.id}`;
return item;
});
})
);
}
removePlaylistConfirmed(playlist: any) {
_.remove(this.playlists, { id: playlist.id });
promiseToDigest(this.$scope)(
getBackendSrv()
.delete('/api/playlists/' + playlist.id)
.then(
() => {
this.$scope.appEvent(AppEvents.alertSuccess, ['Playlist deleted']);
},
() => {
this.$scope.appEvent(AppEvents.alertError, ['Unable to delete playlist']);
this.playlists.push(playlist);
}
)
);
}
removePlaylist(playlist: any) {
this.$scope.appEvent(CoreEvents.showConfirmModal, {
title: 'Delete',
text: 'Are you sure you want to delete playlist ' + playlist.name + '?',
yesText: 'Delete',
icon: 'trash-alt',
onConfirm: () => {
this.removePlaylistConfirmed(playlist);
},
});
}
}
coreModule.controller('PlaylistsCtrl', PlaylistsCtrl);