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) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id BE0D86AF9C for ; Mon, 8 Mar 2021 10:06:38 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id B07431C0DF for ; Mon, 8 Mar 2021 10:06:08 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id EFF741C0CE for ; Mon, 8 Mar 2021 10:06:07 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id BA91B45812 for ; Mon, 8 Mar 2021 10:06:07 +0100 (CET) From: Dominik Csapak To: pbs-devel@lists.proxmox.com Date: Mon, 8 Mar 2021 10:06:06 +0100 Message-Id: <20210308090607.28658-1-d.csapak@proxmox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.197 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [PATCH proxmox-backup 1/2] ui: tape/DriveStatus: add cartridge memory grid X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Mar 2021 09:06:38 -0000 that the user can load when a tape is inserted Signed-off-by: Dominik Csapak --- www/tape/DriveStatus.js | 84 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 82 insertions(+), 2 deletions(-) diff --git a/www/tape/DriveStatus.js b/www/tape/DriveStatus.js index deb8d952..ec1b9fb9 100644 --- a/www/tape/DriveStatus.js +++ b/www/tape/DriveStatus.js @@ -8,12 +8,17 @@ Ext.define('PBS.TapeManagement.DriveStatus', { cbindData: function(config) { let me = this; me.setTitle(`${gettext('Drive')}: ${me.drive}`); + let baseurl = `/api2/json/tape/drive/${me.drive}/`; return { - driveStatusUrl: `/api2/json/tape/drive/${me.drive}/status`, + driveStatusUrl: `${baseurl}/status`, + cartridgeMemoryUrl: `${baseurl}/cartridge-memory`, }; }, - scrollable: true, + layout: { + type: 'vbox', + align: 'stretch', + }, bodyPadding: 5, @@ -40,6 +45,9 @@ Ext.define('PBS.TapeManagement.DriveStatus', { let online = statusFlags.indexOf('ONLINE') !== -1; let vm = me.getViewModel(); vm.set('online', online); + if (!online) { + me.lookup('cartridgegrid').getStore().removeAll(); + } }, onStateLoad: function(store) { @@ -193,6 +201,18 @@ Ext.define('PBS.TapeManagement.DriveStatus', { }, ], }, + { + xtype: 'pbsDriveCartridgeMemoryGrid', + flex: 1, + padding: 5, + reference: 'cartridgegrid', + bind: { + disabled: '{!online}', + }, + cbind: { + url: '{cartridgeMemoryUrl}', + }, + }, ], }); @@ -257,6 +277,66 @@ Ext.define('PBS.TapeManagement.DriveStatusGrid', { }, }); +Ext.define('PBS.TapeManagement.CartridgeMemoryGrid', { + extend: 'Ext.grid.Panel', + alias: 'widget.pbsDriveCartridgeMemoryGrid', + + title: gettext('Cartridge Memory'), + + emptyText: gettext('Not Loaded yet'), + viewConfig: { + deferEmptyText: false, + }, + + controller: { + xclass: 'Ext.app.ViewController', + + loadCartridgeMemory: function() { + console.log(this); + this.getView().getStore().load(); + }, + + init: function(view) { + if (!view.url) { + throw "no url given"; + } + + view.getStore().getProxy().setUrl(view.url); + }, + }, + + store: { + proxy: { + type: 'proxmox', + }, + }, + + tbar: [ + { + text: gettext('Reload'), + handler: 'loadCartridgeMemory', + }, + ], + + columns: [ + { + text: gettext('ID'), + dataIndex: 'id', + width: 60, + }, + { + text: gettext('Name'), + dataIndex: 'name', + flex: 2, + }, + { + text: gettext('Value'), + dataIndex: 'value', + flex: 1, + }, + ], +}); + Ext.define('PBS.TapeManagement.DriveInfoPanel', { extend: 'Ext.panel.Panel', alias: 'widget.pbsDriveInfoPanel', -- 2.20.1