ui/app/components/modal-drain-node/component.js

41 lines
928 B
JavaScript

import { inject as service } from '@ember/service';
import { get } from '@ember/object';
import { alias } from '@ember/object/computed';
import Component from '@ember/component';
import ModalBase from 'shared/mixins/modal-base';
import layout from './template';
import { eachLimit } from 'async';
export default Component.extend(ModalBase, {
growl: service(),
layout,
classNames: ['medium-modal'],
selection: {},
resources: alias('modalService.modalOpts.resources'),
init() {
this._super(...arguments);
this.selection = {};
},
actions: {
drain() {
const nodeDrainInput = { ...get(this, 'selection') };
const resources = get(this, 'resources').slice();
eachLimit(resources, 5, (resource, cb) => {
if ( !resource ) {
return cb();
}
resource.doAction('drain', nodeDrainInput).finally(cb);
});
this.send('cancel');
},
},
});