ui: sys config: code cleanup/refactoring

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-01-12 12:38:45 +01:00
parent 50c0840146
commit 5dfe3b66ab

View File

@ -9,9 +9,9 @@ Ext.define('PBS.SystemConfiguration', {
tools: [PBS.Utils.get_help_tool("sysadmin-network-configuration")], tools: [PBS.Utils.get_help_tool("sysadmin-network-configuration")],
items: [ items: [
{ {
title: gettext('Network/Time'),
itemId: 'network',
xtype: 'panel', xtype: 'panel',
title: gettext(' Network/Time'),
itemId: 'network',
layout: { layout: {
type: 'vbox', type: 'vbox',
align: 'stretch', align: 'stretch',
@ -24,20 +24,20 @@ Ext.define('PBS.SystemConfiguration', {
}, },
items: [ items: [
{ {
title: gettext('Time'),
xtype: 'proxmoxNodeTimeView', xtype: 'proxmoxNodeTimeView',
title: gettext('Time'),
nodename: 'localhost', nodename: 'localhost',
}, },
{ {
title: gettext('DNS'),
xtype: 'proxmoxNodeDNSView', xtype: 'proxmoxNodeDNSView',
title: gettext('DNS'),
nodename: 'localhost', nodename: 'localhost',
}, },
{ {
xtype: 'proxmoxNodeNetworkView',
title: gettext('Network Interfaces'),
flex: 1, flex: 1,
minHeight: 200, minHeight: 200,
title: gettext('Network Interfaces'),
xtype: 'proxmoxNodeNetworkView',
showApplyBtn: true, showApplyBtn: true,
types: ['bond', 'bridge'], types: ['bond', 'bridge'],
nodename: 'localhost', nodename: 'localhost',
@ -77,14 +77,10 @@ Ext.define('PBS.SystemConfiguration', {
me.callParent(); me.callParent();
let networktime = me.getComponent('network'); let networktime = me.getComponent('network');
Ext.Array.forEach(networktime.query(), function(item) { networktime.query()?.forEach(el => el.relayEvents(networktime, ['activate', 'deactivate', 'destroy']));
item.relayEvents(networktime, ['activate', 'deactivate', 'destroy']);
});
let options = me.getComponent('other-options'); let options = me.getComponent('other-options');
Ext.Array.forEach(options.query(), function(item) { options.query()?.forEach(el => el.relayEvents(options, ['activate', 'deactivate', 'destroy']));
item.relayEvents(options, ['activate', 'deactivate', 'destroy']);
});
}, },
}); });