mirror of https://github.com/portainer/portainer
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
import angular from 'angular';
|
|
|
|
class KubernetesResourcePoolsController {
|
|
/* @ngInject */
|
|
constructor($async, $state, Notifications, ModalService, KubernetesResourcePoolService) {
|
|
this.$async = $async;
|
|
this.$state = $state;
|
|
this.Notifications = Notifications;
|
|
this.ModalService = ModalService;
|
|
this.KubernetesResourcePoolService = KubernetesResourcePoolService;
|
|
|
|
this.onInit = this.onInit.bind(this);
|
|
this.getResourcePools = this.getResourcePools.bind(this);
|
|
this.getResourcePoolsAsync = this.getResourcePoolsAsync.bind(this);
|
|
this.removeAction = this.removeAction.bind(this);
|
|
this.removeActionAsync = this.removeActionAsync.bind(this);
|
|
}
|
|
|
|
async removeActionAsync(selectedItems) {
|
|
let actionCount = selectedItems.length;
|
|
for (const pool of selectedItems) {
|
|
try {
|
|
await this.KubernetesResourcePoolService.delete(pool);
|
|
this.Notifications.success('Namespace successfully removed', pool.Namespace.Name);
|
|
const index = this.resourcePools.indexOf(pool);
|
|
this.resourcePools.splice(index, 1);
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to remove namespace');
|
|
} finally {
|
|
--actionCount;
|
|
if (actionCount === 0) {
|
|
this.$state.reload(this.$state.current);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
removeAction(selectedItems) {
|
|
this.ModalService.confirmDeletion(
|
|
'Do you want to remove the selected namespace(s)? All the resources associated to the selected namespace(s) will be removed too.',
|
|
(confirmed) => {
|
|
if (confirmed) {
|
|
return this.$async(this.removeActionAsync, selectedItems);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
async getResourcePoolsAsync() {
|
|
try {
|
|
this.resourcePools = await this.KubernetesResourcePoolService.get();
|
|
} catch (err) {
|
|
this.Notifications.error('Failure', err, 'Unable to retreive namespaces');
|
|
}
|
|
}
|
|
|
|
getResourcePools() {
|
|
return this.$async(this.getResourcePoolsAsync);
|
|
}
|
|
|
|
async onInit() {
|
|
this.state = {
|
|
viewReady: false,
|
|
};
|
|
|
|
await this.getResourcePools();
|
|
|
|
this.state.viewReady = true;
|
|
}
|
|
|
|
$onInit() {
|
|
return this.$async(this.onInit);
|
|
}
|
|
}
|
|
|
|
export default KubernetesResourcePoolsController;
|
|
angular.module('portainer.kubernetes').controller('KubernetesResourcePoolsController', KubernetesResourcePoolsController);
|