From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 5A23A1FF13C for ; Thu, 19 Feb 2026 15:58:45 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 9273819C44; Thu, 19 Feb 2026 15:57:45 +0100 (CET) From: Stefan Hanreich To: pve-devel@lists.proxmox.com Subject: [PATCH pve-manager 11/11] ui: fabrics: hook up wireguard components Date: Thu, 19 Feb 2026 15:56:44 +0100 Message-ID: <20260219145649.441418-28-s.hanreich@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260219145649.441418-1-s.hanreich@proxmox.com> References: <20260219145649.441418-1-s.hanreich@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.175 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods RDNS_NONE 0.793 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Message-ID-Hash: 2BHKBKWMM5I4XZB3IQ26VNRUAFFPWQVN X-Message-ID-Hash: 2BHKBKWMM5I4XZB3IQ26VNRUAFFPWQVN X-MailFrom: hoan@cray.proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Add the newly created Wireguard-specific components to the FabricsView, so they can be utilized to create / edit WireGuard fabrics / nodes. The reference to nodeselector has been renamed, but no further changes are necessary since it was unused in the existing components. The WireGuard components utilize the new name for setting bindings specific to the node selector component. Since WireGuard nodes can be external as well, do not show an error message if there are sections for every Proxmox VE node in the configuration, since it is still possible to create external nodes. Signed-off-by: Stefan Hanreich --- www/manager6/sdn/FabricsView.js | 12 ++++++++++++ www/manager6/sdn/fabrics/NodeEdit.js | 9 +++++++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/www/manager6/sdn/FabricsView.js b/www/manager6/sdn/FabricsView.js index 093a70f35..0362df019 100644 --- a/www/manager6/sdn/FabricsView.js +++ b/www/manager6/sdn/FabricsView.js @@ -33,6 +33,7 @@ Ext.define('PVE.sdn.Fabric.View', { const PROTOCOL_DISPLAY_NAMES = { openfabric: 'OpenFabric', ospf: 'OSPF', + wireguard: 'WireGuard', }; const displayValue = PROTOCOL_DISPLAY_NAMES[value]; if (rec.data.state === undefined || rec.data.state === null) { @@ -194,6 +195,10 @@ Ext.define('PVE.sdn.Fabric.View', { text: 'OSPF', handler: 'addOspf', }, + { + text: 'WireGuard', + handler: 'addWireGuard', + }, ], }, addNodeButton, @@ -272,6 +277,7 @@ Ext.define('PVE.sdn.Fabric.View', { const FABRIC_PANELS = { openfabric: 'PVE.sdn.Fabric.OpenFabric.Fabric.Edit', ospf: 'PVE.sdn.Fabric.Ospf.Fabric.Edit', + wireguard: 'PVE.sdn.Fabric.WireGuard.Fabric.Edit', }; return FABRIC_PANELS[protocol]; @@ -281,11 +287,17 @@ Ext.define('PVE.sdn.Fabric.View', { const NODE_PANELS = { openfabric: 'PVE.sdn.Fabric.OpenFabric.Node.Edit', ospf: 'PVE.sdn.Fabric.Ospf.Node.Edit', + wireguard: 'PVE.sdn.Fabric.WireGuard.Node.Edit', }; return NODE_PANELS[protocol]; }, + addWireGuard: function () { + let me = this; + me.openFabricAddWindow('wireguard'); + }, + addOpenfabric: function () { let me = this; me.openFabricAddWindow('openfabric'); diff --git a/www/manager6/sdn/fabrics/NodeEdit.js b/www/manager6/sdn/fabrics/NodeEdit.js index 7cbea9608..55dce3043 100644 --- a/www/manager6/sdn/fabrics/NodeEdit.js +++ b/www/manager6/sdn/fabrics/NodeEdit.js @@ -161,7 +161,7 @@ Ext.define('PVE.sdn.Fabric.Node.Edit', { return { xtype: 'pveNodeSelector', - reference: 'nodeselector', + reference: 'nodeSelector', fieldLabel: gettext('Node'), labelWidth: 120, name: 'node_id', @@ -225,6 +225,7 @@ Ext.define('PVE.sdn.Fabric.Node.Edit', { const INTERFACE_PANELS = { openfabric: 'PVE.sdn.Fabric.OpenFabric.InterfacePanel', ospf: 'PVE.sdn.Fabric.Ospf.InterfacePanel', + wireguard: 'PVE.sdn.Fabric.WireGuard.InterfacePanel', }; return INTERFACE_PANELS[protocol]; @@ -233,8 +234,12 @@ Ext.define('PVE.sdn.Fabric.Node.Edit', { getInterfaceSelector: function () { let me = this; - return Ext.create(me.getInterfacePanel(me.protocol), { + let componentName = me.getInterfacePanel(me.protocol); + + return Ext.create(componentName, { name: 'interfaces', + reference: 'interfaceSelector', + viewModel: me.getViewModel(), }); }, }); -- 2.47.3