]> git.proxmox.com Git - pmg-gui.git/commitdiff
quarantine: attachement info: show count & total size summary in header
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 7 Nov 2022 12:08:37 +0000 (13:08 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 7 Nov 2022 12:16:51 +0000 (13:16 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
js/AttachmentGrid.js

index f86b1260d6417027149ec9fe6e874478d7a0a1d9..aea526ba5003da01ad3d9ede56e8abb4174234fe 100644 (file)
@@ -23,6 +23,41 @@ Ext.define('PMG.grid.AttachmentGrid', {
        },
     },
 
+    controller: {
+       xclass: 'Ext.app.ViewController',
+       init: function(view) {
+           view.store.on('load', this.onLoad, this);
+       },
+       onLoad: function(store, records, success) {
+           let me = this;
+           let view = me.getView();
+           if (!success) {
+               view.updateTitleStats(-1);
+               return;
+           }
+           let totalSize = records.reduce((sum, { data }) => sum + data.size, 0);
+           view.updateTitleStats(records.length, totalSize);
+       },
+    },
+
+    updateTitleStats: function(count, totalSize) {
+       let me = this;
+       let title;
+       if (count > 0) {
+           title = Ext.String.format(gettext('{0} Attachements'), count);
+           title += ` (${Proxmox.Utils.format_size(totalSize)})`;
+           if (me.collapsible) {
+               me.expand();
+           }
+       } else {
+           title = gettext('No Attachments');
+           if (me.collapsible) {
+               me.collapse();
+           }
+       }
+       me.setTitle(title);
+    },
+
     setID: function(rec) {
        var me = this;
        if (!rec || !rec.data || !rec.data.id) {