From afbf2e10f3e04b323936dbff044b99488aced71c Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Fri, 16 Jul 2021 10:53:27 +0200 Subject: [PATCH] ui: datastore/Content: add 'Prune All' button since the api call always starts a real worker, we cannot have a preview. It would also be very hard to show that for all groups in a non-confusing way. We reuse the pbsPruneInputPanel and add the dry-run field there conditionally. Signed-off-by: Dominik Csapak --- www/datastore/Content.js | 34 ++++++++++++++++++++++++++++++++++ www/window/DataStoreEdit.js | 15 +++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/www/datastore/Content.js b/www/datastore/Content.js index ac8ae1cc..57693785 100644 --- a/www/datastore/Content.js +++ b/www/datastore/Content.js @@ -340,6 +340,35 @@ Ext.define('PBS.DataStoreContent', { }); }, + pruneAll: function() { + let me = this; + let view = me.getView(); + + if (!view.datastore) return; + + Ext.create('Proxmox.window.Edit', { + title: `Prune Datastore '${view.datastore}'`, + onlineHelp: 'maintenance_pruning', + + method: 'POST', + submitText: "Prune", + autoShow: true, + isCreate: true, + showTaskViewer: true, + + taskDone: () => me.reload(), + + url: `/api2/extjs/admin/datastore/${view.datastore}/prune-datastore`, + + items: [ + { + xtype: 'pbsPruneInputPanel', + dryrun: true, + }, + ], + }); + }, + onVerify: function(view, rI, cI, item, e, rec) { let me = this; view = me.getView(); @@ -865,6 +894,11 @@ Ext.define('PBS.DataStoreContent', { confirmMsg: gettext('Do you want to verify all snapshots now?'), handler: 'verifyAll', }, + { + xtype: 'proxmoxButton', + text: gettext('Prune All'), + handler: 'pruneAll', + }, '->', { xtype: 'tbtext', diff --git a/www/window/DataStoreEdit.js b/www/window/DataStoreEdit.js index fbf0da5b..ed23ad11 100644 --- a/www/window/DataStoreEdit.js +++ b/www/window/DataStoreEdit.js @@ -6,6 +6,9 @@ Ext.define('PBS.panel.PruneInputPanel', { onlineHelp: 'maintenance_pruning', + // show/hide dry-run field + dryrun: false, + cbindData: function() { let me = this; me.isCreate = !!me.isCreate; @@ -65,6 +68,18 @@ Ext.define('PBS.panel.PruneInputPanel', { }, ], + columnB: [ + { + xtype: 'proxmoxcheckbox', + name: 'dry-run', + fieldLabel: gettext('Dry Run'), + cbind: { + hidden: '{!dryrun}', + disabled: '{!dryrun}', + }, + }, + ], + }); Ext.define('PBS.DataStoreEdit', { extend: 'Proxmox.window.Edit', -- 2.39.2