pve-manager/www/manager6/ceph/Crush.js
Thomas Lamprecht a4f1a33d09 ui: ceph crush: code cleanups
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2021-04-23 18:55:46 +02:00

53 lines
1.1 KiB
JavaScript

Ext.define('PVE.node.CephCrushMap', {
extend: 'Ext.panel.Panel',
alias: ['widget.pveNodeCephCrushMap'],
bodyStyle: 'white-space:pre',
bodyPadding: 5,
border: false,
stateful: true,
stateId: 'layout-ceph-crush',
scrollable: true,
load: function() {
var me = this;
Proxmox.Utils.API2Request({
url: me.url,
waitMsgTarget: me,
failure: function(response, opts) {
me.update(gettext('Error') + " " + response.htmlStatus);
var msg = response.htmlStatus;
PVE.Utils.showCephInstallOrMask(
me.ownerCt,
msg,
me.pveSelNode.data.node,
win => me.mon(win, 'cephInstallWindowClosed', () => me.load()),
);
},
success: function(response, opts) {
var data = response.result.data;
me.update(Ext.htmlEncode(data));
},
});
},
initComponent: function() {
let me = this;
let nodename = me.pveSelNode.data.node;
if (!nodename) {
throw "no node name specified";
}
Ext.apply(me, {
url: `/nodes/${nodename}/ceph/crush`,
listeners: {
activate: () => me.load(),
},
});
me.callParent();
me.load();
},
});