From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH follow-up manager] ui: backup: move change detection help tooltip behind field
Date: Thu, 10 Apr 2025 16:18:03 +0200 [thread overview]
Message-ID: <20250410141803.1616624-1-d.csapak@proxmox.com> (raw)
In-Reply-To: <20250410083333.1781596-1-d.csapak@proxmox.com>
instead of having it in a separate line. This could be confusing on
first glance, e.g. if it belongs to the line above or below.
To make it more clear, put it in line with the field itself.
Because this uses a FieldContainer now, we can use that to hide and show
both at the same time, reducing the amount of code a bit.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
this is a follow up to:
https://lore.proxmox.com/all/20250410083333.1781596-1-d.csapak@proxmox.com/
could be squashed in if wanted
www/manager6/window/Backup.js | 41 ++++++++++++++++++++---------------
1 file changed, 24 insertions(+), 17 deletions(-)
diff --git a/www/manager6/window/Backup.js b/www/manager6/window/Backup.js
index 68e9565b..70b51409 100644
--- a/www/manager6/window/Backup.js
+++ b/www/manager6/window/Backup.js
@@ -53,18 +53,10 @@ 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,
+ flex: 1,
disabled: true,
- fieldLabel: gettext('PBS change detection mode'),
name: 'pbs-change-detection-mode',
deleteEmpty: true,
value: '__default__',
@@ -75,6 +67,25 @@ Ext.define('PVE.window.Backup', {
],
});
+ let pbsChangeDetection = Ext.create('Ext.form.FieldContainer', {
+ fieldLabel: gettext('PBS change detection mode'),
+ hidden: true,
+ layout: {
+ type: 'hbox',
+ align: 'center',
+ },
+ items: [
+ pbsChangeDetectionModeSelector,
+ {
+ 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>`,
+ padding: 5,
+ },
+ ],
+ });
+
const keepNames = [
['keep-last', gettext('Keep Last')],
['keep-hourly', gettext('Keep Hourly')],
@@ -135,20 +146,17 @@ Ext.define('PVE.window.Backup', {
if (me.vmtype === 'lxc') {
pbsChangeDetectionModeSelector.setValue('__default__');
pbsChangeDetectionModeSelector.setDisabled(false);
- pbsChangeDetectionModeSelector.setHidden(false);
- pbsChangeDetectionHelp.setHidden(false);
+ pbsChangeDetection.setHidden(false);
} else {
pbsChangeDetectionModeSelector.setDisabled(true);
- pbsChangeDetectionModeSelector.setHidden(true);
- pbsChangeDetectionHelp.setHidden(true);
+ pbsChangeDetection.setHidden(true);
}
} else {
if (!compressionSelector.getEditable()) {
compressionSelector.setDisabled(false);
}
pbsChangeDetectionModeSelector.setDisabled(true);
- pbsChangeDetectionModeSelector.setHidden(true);
- pbsChangeDetectionHelp.setHidden(true);
+ pbsChangeDetection.setHidden(true);
}
@@ -231,8 +239,7 @@ Ext.define('PVE.window.Backup', {
storagesel,
modeSelector,
protectedCheckbox,
- pbsChangeDetectionHelp,
- pbsChangeDetectionModeSelector,
+ pbsChangeDetection,
],
column2: [
compressionSelector,
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
next prev parent reply other threads:[~2025-04-10 14:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-10 8:33 [pve-devel] [PATCH manager v2] ui: backup: hide change mode detection for vms and non-pbs storage Dominik Csapak
2025-04-10 14:18 ` Dominik Csapak [this message]
2025-04-11 7:29 ` [pve-devel] applied-series: " 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=20250410141803.1616624-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