]> git.proxmox.com Git - pve-manager.git/blobdiff - www/manager6/qemu/Config.js
ui: eslint: fix various spacing related issues
[pve-manager.git] / www / manager6 / qemu / Config.js
index 38496f4fc56825e080d05d8b7f8d59cfb06cd843..ce2a768697715af64c2223aa585bac291f077772 100644 (file)
@@ -6,20 +6,21 @@ Ext.define('PVE.qemu.Config', {
 
     initComponent: function() {
         var me = this;
+       var vm = me.pveSelNode.data;
 
-       var nodename = me.pveSelNode.data.node;
+       var nodename = vm.node;
        if (!nodename) {
            throw "no node name specified";
        }
 
-       var vmid = me.pveSelNode.data.vmid;
+       var vmid = vm.vmid;
        if (!vmid) {
            throw "no VM ID specified";
        }
 
-       var template = !!me.pveSelNode.data.template;
+       var template = !!vm.template;
 
-       var running = !!me.pveSelNode.data.uptime;
+       var running = !!vm.uptime;
 
        var caps = Ext.state.Manager.get('GuiCap');
 
@@ -27,7 +28,7 @@ Ext.define('PVE.qemu.Config', {
 
        me.statusStore = Ext.create('Proxmox.data.ObjectStore', {
            url: '/api2/json' + base_url + '/status/current',
-           interval: 1000
+           interval: 1000,
        });
 
        var vm_command = function(cmd, params) {
@@ -38,7 +39,7 @@ Ext.define('PVE.qemu.Config', {
                method: 'POST',
                failure: function(response, opts) {
                    Ext.Msg.alert('Error', response.htmlStatus);
-               }
+               },
            });
        };
 
@@ -49,7 +50,7 @@ Ext.define('PVE.qemu.Config', {
            handler: function() {
                vm_command('resume');
            },
-           iconCls: 'fa fa-play'
+           iconCls: 'fa fa-play',
        });
 
        var startBtn = Ext.create('Ext.Button', {
@@ -59,7 +60,7 @@ Ext.define('PVE.qemu.Config', {
            handler: function() {
                vm_command('start');
            },
-           iconCls: 'fa fa-play'
+           iconCls: 'fa fa-play',
        });
 
        var migrateBtn = Ext.create('Ext.Button', {
@@ -70,23 +71,24 @@ Ext.define('PVE.qemu.Config', {
                var win = Ext.create('PVE.window.Migrate', {
                    vmtype: 'qemu',
                    nodename: nodename,
-                   vmid: vmid
+                   vmid: vmid,
                });
                win.show();
            },
-           iconCls: 'fa fa-send-o'
+           iconCls: 'fa fa-send-o',
        });
 
        var moreBtn = Ext.create('Proxmox.button.Button', {
            text: gettext('More'),
-           menu: { items: [
+           menu: {
+ items: [
                {
                    text: gettext('Clone'),
                    iconCls: 'fa fa-fw fa-clone',
                    hidden: caps.vms['VM.Clone'] ? false : true,
                    handler: function() {
                        PVE.window.Clone.wrap(nodename, vmid, template, 'qemu');
-                   }
+                   },
                },
                {
                    text: gettext('Convert to template'),
@@ -102,21 +104,21 @@ Ext.define('PVE.qemu.Config', {
                            method: 'POST',
                            failure: function(response, opts) {
                                Ext.Msg.alert('Error', response.htmlStatus);
-                           }
+                           },
                        });
-                   }
+                   },
                },
                {
                    iconCls: 'fa fa-heartbeat ',
                    hidden: !caps.nodes['Sys.Console'],
                    text: gettext('Manage HA'),
                    handler: function() {
-                       var ha = me.pveSelNode.data.hastate;
+                       var ha = vm.hastate;
                        Ext.create('PVE.ha.VMResourceEdit', {
                            vmid: vmid,
-                           isCreate: (!ha || ha === 'unmanaged')
+                           isCreate: (!ha || ha === 'unmanaged'),
                        }).show();
-                   }
+                   },
                },
                {
                    text: gettext('Remove'),
@@ -125,12 +127,13 @@ Ext.define('PVE.qemu.Config', {
                    handler: function() {
                        Ext.create('PVE.window.SafeDestroy', {
                            url: base_url,
-                           item: { type: 'VM', id: vmid }
+                           item: { type: 'VM', id: vmid },
                        }).show();
                    },
-                   iconCls: 'fa fa-trash-o'
-               }
-           ]}
+                   iconCls: 'fa fa-trash-o',
+               },
+           ]
+},
        });
 
        var shutdownBtn = Ext.create('PVE.button.Split', {
@@ -143,51 +146,89 @@ Ext.define('PVE.qemu.Config', {
            },
            menu: {
                items: [{
+                   text: gettext('Reboot'),
+                   disabled: !caps.vms['VM.PowerMgmt'],
+                   tooltip: Ext.String.format(gettext('Shutdown, apply pending changes and reboot {0}'), 'VM'),
+                   confirmMsg: Proxmox.Utils.format_task_description('qmreboot', vmid),
+                   handler: function() {
+                       vm_command("reboot");
+                   },
+                   iconCls: 'fa fa-refresh',
+               }, {
+                   text: gettext('Pause'),
+                   disabled: !caps.vms['VM.PowerMgmt'],
+                   confirmMsg: Proxmox.Utils.format_task_description('qmpause', vmid),
+                   handler: function() {
+                       vm_command("suspend");
+                   },
+                   iconCls: 'fa fa-pause',
+               }, {
+                   text: gettext('Hibernate'),
+                   disabled: !caps.vms['VM.PowerMgmt'],
+                   confirmMsg: Proxmox.Utils.format_task_description('qmsuspend', vmid),
+                   tooltip: gettext('Suspend to disk'),
+                   handler: function() {
+                       vm_command("suspend", { todisk: 1 });
+                   },
+                   iconCls: 'fa fa-download',
+               }, {
                    text: gettext('Stop'),
                    disabled: !caps.vms['VM.PowerMgmt'],
                    dangerous: true,
+                   tooltip: Ext.String.format(gettext('Stop {0} immediately'), 'VM'),
                    confirmMsg: Proxmox.Utils.format_task_description('qmstop', vmid),
                    handler: function() {
                        vm_command("stop", { timeout: 30 });
                    },
-                   iconCls: 'fa fa-stop'
-               },{
+                   iconCls: 'fa fa-stop',
+               }, {
                    text: gettext('Reset'),
                    disabled: !caps.vms['VM.PowerMgmt'],
+                   tooltip: Ext.String.format(gettext('Reset {0} immediately'), 'VM'),
                    confirmMsg: Proxmox.Utils.format_task_description('qmreset', vmid),
                    handler: function() {
                        vm_command("reset");
                    },
-                   iconCls: 'fa fa-bolt'
-               }]
+                   iconCls: 'fa fa-bolt',
+               }],
            },
-           iconCls: 'fa fa-power-off'
+           iconCls: 'fa fa-power-off',
        });
 
-       var vm = me.pveSelNode.data;
-
        var consoleBtn = Ext.create('PVE.button.ConsoleButton', {
            disabled: !caps.vms['VM.Console'],
            hidden: template,
            consoleType: 'kvm',
            consoleName: vm.name,
            nodename: nodename,
-           vmid: vmid
+           vmid: vmid,
+       });
+
+       var statusTxt = Ext.create('Ext.toolbar.TextItem', {
+           data: {
+               lock: undefined,
+           },
+           tpl: [
+               '<tpl if="lock">',
+               '<i class="fa fa-lg fa-lock"></i> ({lock})',
+               '</tpl>',
+           ],
        });
 
        Ext.apply(me, {
            title: Ext.String.format(gettext("Virtual Machine {0} on node '{1}'"), vm.text, nodename),
            hstateid: 'kvmtab',
-           tbar: [ resumeBtn, startBtn, shutdownBtn, migrateBtn, consoleBtn, moreBtn ],
+           tbarSpacing: false,
+           tbar: [statusTxt, '->', resumeBtn, startBtn, shutdownBtn, migrateBtn, consoleBtn, moreBtn],
            defaults: { statusStore: me.statusStore },
            items: [
                {
                    title: gettext('Summary'),
-                   xtype: 'pveQemuSummary',
+                   xtype: 'pveGuestSummary',
                    iconCls: 'fa fa-book',
-                   itemId: 'summary'
-               }
-           ]
+                   itemId: 'summary',
+               },
+           ],
        });
 
        if (caps.vms['VM.Console'] && !template) {
@@ -198,7 +239,7 @@ Ext.define('PVE.qemu.Config', {
                xtype: 'pveNoVncConsole',
                vmid: vmid,
                consoleType: 'kvm',
-               nodename: nodename
+               nodename: nodename,
            });
        }
 
@@ -207,19 +248,19 @@ Ext.define('PVE.qemu.Config', {
                title: gettext('Hardware'),
                itemId: 'hardware',
                iconCls: 'fa fa-desktop',
-               xtype: 'PVE.qemu.HardwareView'
+               xtype: 'PVE.qemu.HardwareView',
            },
            {
                title: 'Cloud-Init',
                itemId: 'cloudinit',
                iconCls: 'fa fa-cloud',
-               xtype: 'pveCiPanel'
+               xtype: 'pveCiPanel',
            },
            {
                title: gettext('Options'),
                iconCls: 'fa fa-gear',
                itemId: 'options',
-               xtype: 'PVE.qemu.Options'
+               xtype: 'PVE.qemu.Options',
            },
            {
                title: gettext('Task History'),
@@ -227,8 +268,8 @@ Ext.define('PVE.qemu.Config', {
                xtype: 'proxmoxNodeTasks',
                iconCls: 'fa fa-list',
                nodename: nodename,
-               vmidFilter: vmid
-           }
+               vmidFilter: vmid,
+           },
        );
 
        if (caps.vms['VM.Monitor'] && !template) {
@@ -236,7 +277,7 @@ Ext.define('PVE.qemu.Config', {
                title: gettext('Monitor'),
                iconCls: 'fa fa-eye',
                itemId: 'monitor',
-               xtype: 'pveQemuMonitor'
+               xtype: 'pveQemuMonitor',
            });
        }
 
@@ -245,22 +286,24 @@ Ext.define('PVE.qemu.Config', {
                title: gettext('Backup'),
                iconCls: 'fa fa-floppy-o',
                xtype: 'pveBackupView',
-               itemId: 'backup'
+               itemId: 'backup',
            },
            {
                title: gettext('Replication'),
                iconCls: 'fa fa-retweet',
                xtype: 'pveReplicaView',
-               itemId: 'replication'
+               itemId: 'replication',
            });
        }
 
-       if ((caps.vms['VM.Snapshot'] || caps.vms['VM.Snapshot.Rollback']) && !template) {
+       if ((caps.vms['VM.Snapshot'] || caps.vms['VM.Snapshot.Rollback'] ||
+           caps.vms['VM.Audit']) && !template) {
            me.items.push({
                title: gettext('Snapshots'),
                iconCls: 'fa fa-history',
-               xtype: 'pveQemuSnapshotTree',
-               itemId: 'snapshot'
+               type: 'qemu',
+               xtype: 'pveGuestSnapshotTree',
+               itemId: 'snapshot',
            });
        }
 
@@ -273,7 +316,7 @@ Ext.define('PVE.qemu.Config', {
                    allow_iface: true,
                    base_url: base_url + '/firewall/rules',
                    list_refs_url: base_url + '/firewall/refs',
-                   itemId: 'firewall'
+                   itemId: 'firewall',
                },
                {
                    xtype: 'pveFirewallOptions',
@@ -283,7 +326,7 @@ Ext.define('PVE.qemu.Config', {
                    title: gettext('Options'),
                    base_url: base_url + '/firewall/options',
                    fwtype: 'vm',
-                   itemId: 'firewall-options'
+                   itemId: 'firewall-options',
                },
                {
                    xtype: 'pveFirewallAliases',
@@ -291,7 +334,7 @@ Ext.define('PVE.qemu.Config', {
                    groups: ['firewall'],
                    iconCls: 'fa fa-external-link',
                    base_url: base_url + '/firewall/aliases',
-                   itemId: 'firewall-aliases'
+                   itemId: 'firewall-aliases',
                },
                {
                    xtype: 'pveIPSet',
@@ -300,7 +343,7 @@ Ext.define('PVE.qemu.Config', {
                    iconCls: 'fa fa-list-ol',
                    base_url: base_url + '/firewall/ipset',
                    list_refs_url: base_url + '/firewall/refs',
-                   itemId: 'firewall-ipset'
+                   itemId: 'firewall-ipset',
                },
                {
                    title: gettext('Log'),
@@ -309,8 +352,8 @@ Ext.define('PVE.qemu.Config', {
                    onlineHelp: 'chapter_pve_firewall',
                    itemId: 'firewall-fwlog',
                    xtype: 'proxmoxLogView',
-                   url: '/api2/extjs' + base_url + '/firewall/log'
-               }
+                   url: '/api2/extjs' + base_url + '/firewall/log',
+               },
            );
        }
 
@@ -320,17 +363,19 @@ Ext.define('PVE.qemu.Config', {
                title: gettext('Permissions'),
                iconCls: 'fa fa-unlock',
                itemId: 'permissions',
-               path: '/vms/' + vmid
+               path: '/vms/' + vmid,
            });
        }
 
        me.callParent();
 
+       var prevQMPStatus = 'unknown';
         me.mon(me.statusStore, 'load', function(s, records, success) {
            var status;
            var qmpstatus;
            var spice = false;
            var xtermjs = false;
+           var lock;
 
            if (!success) {
                status = qmpstatus = 'unknown';
@@ -341,17 +386,20 @@ Ext.define('PVE.qemu.Config', {
                qmpstatus = rec ? rec.data.value : 'unknown';
                rec = s.data.get('template');
                template = rec.data.value || false;
+               rec = s.data.get('lock');
+               lock = rec ? rec.data.value : undefined;
 
                spice = s.data.get('spice') ? true : false;
                xtermjs = s.data.get('serial') ? true : false;
-
            }
 
            if (template) {
                return;
            }
 
-           if (qmpstatus === 'prelaunch' || qmpstatus === 'paused' || qmpstatus === 'suspended') {
+           var resume = (['prelaunch', 'paused', 'suspended'].indexOf(qmpstatus) !== -1);
+
+           if (resume || lock === 'suspended') {
                startBtn.setVisible(false);
                resumeBtn.setVisible(true);
            } else {
@@ -362,10 +410,25 @@ Ext.define('PVE.qemu.Config', {
            consoleBtn.setEnableSpice(spice);
            consoleBtn.setEnableXtermJS(xtermjs);
 
-           startBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status === 'running' || template);
+           statusTxt.update({ lock: lock });
+
+           let guest_running = status === 'running' &&
+               !(qmpstatus === "shutdown" || qmpstatus === "prelaunch");
+           startBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || template || guest_running);
+
            shutdownBtn.setDisabled(!caps.vms['VM.PowerMgmt'] || status !== 'running');
            me.down('#removeBtn').setDisabled(!caps.vms['VM.Allocate'] || status !== 'stopped');
            consoleBtn.setDisabled(template);
+
+           let wasStopped = ['prelaunch', 'stopped', 'suspended'].indexOf(prevQMPStatus) !== -1;
+           if (wasStopped && qmpstatus === 'running') {
+               let con = me.down('#console');
+               if (con) {
+                   con.reload();
+               }
+           }
+
+           prevQMPStatus = qmpstatus;
        });
 
        me.on('afterrender', function() {
@@ -375,5 +438,5 @@ Ext.define('PVE.qemu.Config', {
        me.on('destroy', function() {
            me.statusStore.stopUpdate();
        });
-   }
+   },
 });