From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH manager v2] ui: backup: hide change mode detection for vms and non-pbs storage
Date: Thu, 10 Apr 2025 10:33:33 +0200 [thread overview]
Message-ID: <20250410083333.1781596-1-d.csapak@proxmox.com> (raw)
Since it does not do anything for non-pbs storages and vms, this is only
distracting in these cases, so hide the selector + tooltip help icon.
Refactor the help icon into a variable, so we can more easily
disable/hide it.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
replacement for:
https://lore.proxmox.com/pve-devel/20250410080821.1297854-1-d.csapak@proxmox.com/
changes from v1:
* hide the selctor and tooltip completely instead of disabling
* also hide it for non-pbs storages
Side note: looking at the component, I'd love to refactor it into more
"modern" extjs (view/viewmodel/controller), but for now this is IMHO
good enough.
www/manager6/window/Backup.js | 24 ++++++++++++++++++------
1 file changed, 18 insertions(+), 6 deletions(-)
diff --git a/www/manager6/window/Backup.js b/www/manager6/window/Backup.js
index cb09c7b9..68e9565b 100644
--- a/www/manager6/window/Backup.js
+++ b/www/manager6/window/Backup.js
@@ -53,8 +53,17 @@ Ext.define('PVE.window.Backup', {
},
});
+ let pbsChangeDetectionHelp = Ext.create('Ext.Component', {
+ hidden: true,
+ html: `<i class="fa fa-question-circle" data-qtip="
+ ${gettext("Mode to detect file changes and switch archive encoding format for container backups to Proxmox Backup Server. Not available for VM backups.")}
+ "></i>`,
+ });
+
let pbsChangeDetectionModeSelector = Ext.create({
xtype: 'proxmoxKVComboBox',
+ hidden: true,
+ disabled: true,
fieldLabel: gettext('PBS change detection mode'),
name: 'pbs-change-detection-mode',
deleteEmpty: true,
@@ -126,12 +135,20 @@ Ext.define('PVE.window.Backup', {
if (me.vmtype === 'lxc') {
pbsChangeDetectionModeSelector.setValue('__default__');
pbsChangeDetectionModeSelector.setDisabled(false);
+ pbsChangeDetectionModeSelector.setHidden(false);
+ pbsChangeDetectionHelp.setHidden(false);
+ } else {
+ pbsChangeDetectionModeSelector.setDisabled(true);
+ pbsChangeDetectionModeSelector.setHidden(true);
+ pbsChangeDetectionHelp.setHidden(true);
}
} else {
if (!compressionSelector.getEditable()) {
compressionSelector.setDisabled(false);
}
pbsChangeDetectionModeSelector.setDisabled(true);
+ pbsChangeDetectionModeSelector.setHidden(true);
+ pbsChangeDetectionHelp.setHidden(true);
}
@@ -214,12 +231,7 @@ Ext.define('PVE.window.Backup', {
storagesel,
modeSelector,
protectedCheckbox,
- {
- xtype: 'box',
- html: `<i class="fa fa-question-circle" data-qtip="
- ${gettext("Mode to detect file changes and switch archive encoding format for container backups to Proxmox Backup Server. Not available for VM backups.")}
- "></i>`,
- },
+ pbsChangeDetectionHelp,
pbsChangeDetectionModeSelector,
],
column2: [
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
next reply other threads:[~2025-04-10 8:34 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-10 8:33 Dominik Csapak [this message]
2025-04-10 14:18 ` [pve-devel] [PATCH follow-up manager] ui: backup: move change detection help tooltip behind field Dominik Csapak
2025-04-11 7:29 ` [pve-devel] applied-series: [PATCH manager v2] ui: backup: hide change mode detection for vms and non-pbs storage Fiona Ebner
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=20250410083333.1781596-1-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pve-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
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal