ui: tape/BackupJobEdit: add second tab with group filters

adds a second tab and adapts the styling to our usual one (border/padding)

adds a change listener to the datastore selector to change it on the
group filters

remaining changes are mostly indentation changes

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-11-29 15:39:42 +01:00 committed by Dietmar Maurer
parent 65bd918ac3
commit 705f4b0d95

View File

@ -11,6 +11,8 @@ Ext.define('PBS.TapeManagement.BackupJobEdit', {
fieldDefaults: { labelWidth: 120 },
bodyPadding: 0,
cbindData: function(initialConfig) {
let me = this;
@ -28,6 +30,12 @@ Ext.define('PBS.TapeManagement.BackupJobEdit', {
},
items: {
xtype: 'tabpanel',
bodyPadding: 10,
border: 0,
items: [
{
title: gettext('Options'),
xtype: 'inputpanel',
onGetValues: function(values) {
let me = this;
@ -53,6 +61,12 @@ Ext.define('PBS.TapeManagement.BackupJobEdit', {
xtype: 'pbsDataStoreSelector',
fieldLabel: gettext('Local Datastore'),
name: 'store',
listeners: {
change: function(field, value) {
let me = this;
me.up('tabpanel').down('pbsGroupFilter').setLocalDatastore(value);
},
},
},
{
xtype: 'pbsMediaPoolSelector',
@ -123,15 +137,6 @@ Ext.define('PBS.TapeManagement.BackupJobEdit', {
],
columnB: [
{
fieldLabel: gettext('Backup Groups'),
xtype: 'displayfield',
name: 'group-filter',
renderer: v => v ? Ext.String.htmlEncode(v) : gettext('All'),
cbind: {
hidden: '{isCreate}',
},
},
{
fieldLabel: gettext('Comment'),
xtype: 'proxmoxtextfield',
@ -142,4 +147,24 @@ Ext.define('PBS.TapeManagement.BackupJobEdit', {
},
],
},
{
xtype: 'inputpanel',
onGetValues: function(values) {
PBS.Utils.delete_if_default(values, 'group-filter');
if (Ext.isArray(values['group-filter']) && values['group-filter'].length === 0) {
delete values['group-filter'];
values.delete = 'group-filter';
}
return values;
},
title: gettext('Group Filter'),
items: [
{
xtype: 'pbsGroupFilter',
name: 'group-filter',
},
],
},
],
},
});