From: Dominik Csapak <d.csapak@proxmox.com>
To: pbs-devel@lists.proxmox.com
Subject: [pbs-devel] [PATCH proxmox-backup 4/4] ui: tape/TapeInventory: add 'Set Tape Location' button
Date: Thu, 11 Feb 2021 14:11:20 +0100 [thread overview]
Message-ID: <20210211131120.25849-4-d.csapak@proxmox.com> (raw)
In-Reply-To: <20210211131120.25849-1-d.csapak@proxmox.com>
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
www/tape/TapeInventory.js | 54 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 53 insertions(+), 1 deletion(-)
diff --git a/www/tape/TapeInventory.js b/www/tape/TapeInventory.js
index ed45ab88..4bac4072 100644
--- a/www/tape/TapeInventory.js
+++ b/www/tape/TapeInventory.js
@@ -28,6 +28,48 @@ Ext.define('PBS.TapeManagement.TapeInventory', {
controller: {
xclass: 'Ext.app.ViewController',
+ moveToVault: function() {
+ let me = this;
+ let view = me.getView();
+ let selection = view.getSelection();
+ if (!selection || selection.length < 1) {
+ return;
+ }
+ let label = selection[0].data['label-text'];
+ let inVault = selection[0].data.location.startsWith('vault-');
+ let vault = "";
+ if (inVault) {
+ vault = selection[0].data.location.slice("vault-".length);
+ }
+ Ext.create('Proxmox.window.Edit', {
+ title: gettext('Set Tape Location'),
+ url: `/api2/extjs/tape/media/move`,
+ method: 'POST',
+ items: [
+ {
+ xtype: 'displayfield',
+ name: 'label-text',
+ value: label,
+ submitValue: true,
+ fieldLabel: gettext('Media'),
+ },
+ {
+ xtype: 'proxmoxtextfield',
+ fieldLabel: gettext('Vault'),
+ name: 'vault-name',
+ value: vault,
+ emptyText: gettext('On-site'),
+ skipEmpty: true,
+ },
+ ],
+ listeners: {
+ destroy: function() {
+ me.reload();
+ },
+ },
+ }).show();
+ },
+
reload: function() {
this.getView().getStore().rstore.load();
},
@@ -57,6 +99,16 @@ Ext.define('PBS.TapeManagement.TapeInventory', {
sorters: 'label-text',
},
+ tbar: [
+ {
+ xtype: 'proxmoxButton',
+ text: gettext('Set Tape Location'),
+ disabled: true,
+ handler: 'moveToVault',
+ enableFn: (rec) => !rec.data.location.startsWith('online-'),
+ },
+ ],
+
columns: [
{
text: gettext('Label'),
@@ -83,7 +135,7 @@ Ext.define('PBS.TapeManagement.TapeInventory', {
flex: 1,
renderer: function(value) {
if (value === 'offline') {
- return `<i class="fa fa-circle-o"></i> ${gettext("Offline")}`;
+ return `<i class="fa fa-circle-o"></i> ${gettext("Offline")} (${gettext('On-site')})`;
} else if (value.startsWith('online-')) {
let location = value.substring(value.indexOf('-') + 1);
return `<i class="fa fa-dot-circle-o"></i> ${gettext("Online")} - ${location}`;
--
2.20.1
next prev parent reply other threads:[~2021-02-11 13:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-11 13:11 [pbs-devel] [PATCH proxmox-backup 1/4] proxmox-tape: change lookup_drive_name to extract_drive_name Dominik Csapak
2021-02-11 13:11 ` [pbs-devel] [PATCH proxmox-backup 2/4] api2/tape/media: add 'move' api call Dominik Csapak
2021-02-11 13:11 ` [pbs-devel] [PATCH proxmox-backup 3/4] api2/types/tape/media_location: fix deserialization of MediaLocation::Vault Dominik Csapak
2021-02-11 13:11 ` Dominik Csapak [this message]
2021-02-11 13:24 ` [pbs-devel] applied: [PATCH proxmox-backup 1/4] proxmox-tape: change lookup_drive_name to extract_drive_name Dietmar Maurer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210211131120.25849-4-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox