mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-01 10:29:04 +00:00

this implements the new StatusView class for guests and templates using the new pveStatusView, we do not split the status panels per lxc/qemu, but for Template/Guest this makes more sense, since the information which lxc and qemu guests have are more similar than what you want to display for templates/guests Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
70 lines
1.2 KiB
JavaScript
70 lines
1.2 KiB
JavaScript
Ext.define('PVE.panel.TemplateStatusView',{
|
|
extend: 'PVE.panel.StatusView',
|
|
alias: 'widget.pveTemplateStatusView',
|
|
|
|
defaults: {
|
|
xtype: 'pveInfoWidget',
|
|
printBar: false,
|
|
padding: '5 0 0 20',
|
|
width: 400
|
|
},
|
|
items: [
|
|
{
|
|
xtype: 'box',
|
|
padding: '20 0 0 0'
|
|
},
|
|
{
|
|
itemId: 'node',
|
|
title: gettext('Node')
|
|
},
|
|
{
|
|
xtype: 'box',
|
|
padding: '20 0 0 0'
|
|
},
|
|
{
|
|
itemId: 'cpus',
|
|
title: gettext('Processors'),
|
|
textField: 'cpus'
|
|
},
|
|
{
|
|
itemId: 'memory',
|
|
title: gettext('Memory'),
|
|
textField: 'maxmem',
|
|
renderer: PVE.Utils.render_size
|
|
},
|
|
{
|
|
itemId: 'swap',
|
|
title: gettext('Swap'),
|
|
textField: 'maxswap',
|
|
renderer: PVE.Utils.render_size
|
|
},
|
|
{
|
|
itemId: 'disk',
|
|
title: gettext('Bootdisk size'),
|
|
textField: 'maxdisk',
|
|
renderer: PVE.Utils.render_size
|
|
},
|
|
{
|
|
xtype: 'box',
|
|
padding: '25 0 0 0'
|
|
}
|
|
],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
var name = me.pveSelNode.data.name;
|
|
if (!name) {
|
|
throw "no name specified";
|
|
}
|
|
|
|
me.title = name;
|
|
|
|
me.callParent();
|
|
if (me.pveSelNode.data.type !== 'lxc') {
|
|
me.remove(me.getComponent('swap'));
|
|
}
|
|
me.getComponent('node').updateValue(me.pveSelNode.data.node);
|
|
}
|
|
});
|