From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 046FCB293 for ; Wed, 9 Aug 2023 10:38:09 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 99B8511EC5 for ; Wed, 9 Aug 2023 10:38:07 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Wed, 9 Aug 2023 10:38:06 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 607EE43BDF for ; Wed, 9 Aug 2023 10:38:06 +0200 (CEST) From: Markus Frank To: pve-devel@lists.proxmox.com Date: Wed, 9 Aug 2023 10:37:37 +0200 Message-Id: <20230809083739.100024-10-m.frank@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230809083739.100024-1-m.frank@proxmox.com> References: <20230809083739.100024-1-m.frank@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.055 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 Subject: [pve-devel] [PATCH manager v7 09/11] ui: ResourceMapTree for DIR X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2023 08:38:09 -0000 Signed-off-by: Markus Frank --- www/manager6/Makefile | 1 + www/manager6/dc/Config.js | 10 +++++++ www/manager6/dc/DIRMapView.js | 50 +++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 www/manager6/dc/DIRMapView.js diff --git a/www/manager6/Makefile b/www/manager6/Makefile index ba559751..4c1fcdbb 100644 --- a/www/manager6/Makefile +++ b/www/manager6/Makefile @@ -180,6 +180,7 @@ JSSRC= \ dc/RealmSyncJob.js \ dc/PCIMapView.js \ dc/USBMapView.js \ + dc/DIRMapView.js \ lxc/CmdMenu.js \ lxc/Config.js \ lxc/CreateWizard.js \ diff --git a/www/manager6/dc/Config.js b/www/manager6/dc/Config.js index 04ed04f0..f7ba1799 100644 --- a/www/manager6/dc/Config.js +++ b/www/manager6/dc/Config.js @@ -312,6 +312,16 @@ Ext.define('PVE.dc.Config', { title: gettext('USB Devices'), flex: 1, }, + { + xtype: 'splitter', + collapsible: false, + performCollapse: false, + }, + { + xtype: 'pveDcDIRMapView', + title: gettext('Directories'), + flex: 1, + }, ], }, ); diff --git a/www/manager6/dc/DIRMapView.js b/www/manager6/dc/DIRMapView.js new file mode 100644 index 00000000..a4304c1b --- /dev/null +++ b/www/manager6/dc/DIRMapView.js @@ -0,0 +1,50 @@ +Ext.define('pve-resource-dir-tree', { + extend: 'Ext.data.Model', + idProperty: 'internalId', + fields: ['type', 'text', 'path', 'id', 'description', 'digest'], +}); + +Ext.define('PVE.dc.DIRMapView', { + extend: 'PVE.tree.ResourceMapTree', + alias: 'widget.pveDcDIRMapView', + + editWindowClass: 'PVE.window.DIRMapEditWindow', + baseUrl: '/cluster/mapping/dir', + mapIconCls: 'fa fa-folder', + entryIdProperty: 'path', + + store: { + sorters: 'text', + model: 'pve-resource-dir-tree', + data: {}, + }, + + columns: [ + { + xtype: 'treecolumn', + text: gettext('ID/Node'), + dataIndex: 'text', + width: 200, + }, + { + text: gettext('xattr'), + dataIndex: 'xattr', + }, + { + text: gettext('acl'), + dataIndex: 'acl', + }, + { + text: gettext('submounts'), + dataIndex: 'submounts', + }, + { + header: gettext('Comment'), + dataIndex: 'description', + renderer: function(value, _meta, record) { + return value ?? record.data.comment; + }, + flex: 1, + }, + ], +}); -- 2.39.2