ui: tape/TapeRestore: allow preselecting a datastore

for that we need to split the prefilter additions, else
we always filter the snaphots too and giving 'undefined' filters
all snapshots...

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-05-26 15:48:10 +02:00 committed by Thomas Lamprecht
parent 68ac8976eb
commit e01689978e
2 changed files with 25 additions and 13 deletions

View File

@ -161,6 +161,11 @@ Ext.define('PBS.TapeManagement.BackupOverview', {
text: store,
'media-set-uuid': entry['media-set-uuid'],
iconCls: 'fa fa-database',
restore: true,
'media-set': media_set,
prefilter: {
store,
},
tapes: {},
};
}

View File

@ -732,19 +732,26 @@ Ext.define('PBS.TapeManagement.SnapshotGrid', {
let me = this;
me.callParent();
if (me.prefilter !== undefined) {
me.store.filters.add(
{
id: 'x-gridfilter-store',
property: 'store',
operator: 'in',
value: [me.prefilter.store],
},
{
id: 'x-gridfilter-snapshot',
property: 'snapshot',
value: me.prefilter.snapshot,
},
);
if (me.prefilter.store !== undefined) {
me.store.filters.add(
{
id: 'x-gridfilter-store',
property: 'store',
operator: 'in',
value: [me.prefilter.store],
},
);
}
if (me.prefilter.snapshot !== undefined) {
me.store.filters.add(
{
id: 'x-gridfilter-snapshot',
property: 'snapshot',
value: me.prefilter.snapshot,
},
);
}
}
me.mon(me.store, 'filterchange', () => me.checkChange());