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 F16B11FF146 for ; Tue, 12 May 2026 19:35:21 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id BA7E51D4E3; Tue, 12 May 2026 19:33:01 +0200 (CEST) From: Stefan Hanreich To: pve-devel@lists.proxmox.com Subject: [PATCH pve-manager v5 27/29] ui: fabrics: hook up wireguard components Date: Tue, 12 May 2026 19:31:42 +0200 Message-ID: <20260512173145.596958-28-s.hanreich@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260512173145.596958-1-s.hanreich@proxmox.com> References: <20260512173145.596958-1-s.hanreich@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1778607004768 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.616 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 SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: U7ZJ5LK5IGEVMKLYHBTWEOINGEM7UUHW X-Message-ID-Hash: U7ZJ5LK5IGEVMKLYHBTWEOINGEM7UUHW X-MailFrom: s.hanreich@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 | 8 ++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/www/manager6/sdn/FabricsView.js b/www/manager6/sdn/FabricsView.js index 21b88bab5..7da1990db 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) { @@ -198,6 +199,10 @@ Ext.define('PVE.sdn.Fabric.View', { text: 'OSPF', handler: 'addOspf', }, + { + text: 'WireGuard', + handler: 'addWireGuard', + }, ], }, addNodeButton, @@ -276,6 +281,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]; @@ -285,11 +291,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..31d328647 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,11 @@ 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', }); }, }); -- 2.47.3