mirror of https://github.com/rancher/dashboard.git
37 lines
933 B
JavaScript
37 lines
933 B
JavaScript
import { insertAt } from '@shell/utils/array';
|
|
import namespace from '@shell/models/namespace';
|
|
|
|
export default class HciNamespace extends namespace {
|
|
get _availableActions() {
|
|
const out = super._availableActions;
|
|
const remove = out.findIndex(a => a.action === 'promptRemove');
|
|
|
|
const promptRemove = {
|
|
action: 'promptRemove',
|
|
altAction: 'remove',
|
|
label: this.t('action.remove'),
|
|
icon: 'icon icon-trash',
|
|
bulkable: true,
|
|
enabled: this.canDelete,
|
|
bulkAction: 'promptRemove',
|
|
weight: -10,
|
|
};
|
|
|
|
if (remove > -1) {
|
|
out.splice(remove, 1);
|
|
}
|
|
|
|
insertAt(out, out.length - 1, promptRemove);
|
|
|
|
return out;
|
|
}
|
|
|
|
promptRemove(resources = this) {
|
|
this.$dispatch('promptModal', {
|
|
resources,
|
|
warningMessageKey: 'promptRemove.confirmRelatedResource',
|
|
component: 'ConfirmRelatedToRemoveDialog'
|
|
});
|
|
}
|
|
}
|