From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 55F8561C6D; Tue, 15 Sep 2020 11:54:54 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 00B2E18AAC; Tue, 15 Sep 2020 11:54:53 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 9CB7E187F8; Tue, 15 Sep 2020 11:54:47 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 675A044511; Tue, 15 Sep 2020 11:54:47 +0200 (CEST) From: Hannes Laimer To: pbs-devel@lists.proxmox.com, pve-devel@lists.proxmox.com Date: Tue, 15 Sep 2020 11:54:12 +0200 Message-Id: <20200915095420.990827-3-h.laimer@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200915095420.990827-1-h.laimer@proxmox.com> References: <20200915095420.990827-1-h.laimer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [result.data, item.id] Subject: [pbs-devel] [PATCH v4 proxmox-widget-toolkit 2/10] safe-destroy: eslint --fix X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Sep 2020 09:54:54 -0000 Signed-off-by: Hannes Laimer --- src/window/SafeDestroy.js | 58 +++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/window/SafeDestroy.js b/src/window/SafeDestroy.js index 4cc1d89..dfb0185 100644 --- a/src/window/SafeDestroy.js +++ b/src/window/SafeDestroy.js @@ -11,17 +11,17 @@ Ext.define('Proxmox.window.SafeDestroy', { buttonAlign: 'center', bodyPadding: 10, width: 450, - layout: { type:'hbox' }, + layout: { type: 'hbox' }, defaultFocus: 'confirmField', showProgress: false, config: { item: { id: undefined, - type: undefined + type: undefined, }, url: undefined, - params: {} + params: {}, }, getParams: function() { @@ -51,12 +51,12 @@ Ext.define('Proxmox.window.SafeDestroy', { removeButton.disable(); } }, - specialkey: function (field, event) { + specialkey: function(field, event) { var removeButton = this.lookupReference('removeButton'); - if (!removeButton.isDisabled() && event.getKey() == event.ENTER) { + if (!removeButton.isDisabled() && event.getKey() === event.ENTER) { removeButton.fireEvent('click', removeButton, event); } - } + }, }, 'button[reference=removeButton]': { click: function() { @@ -70,8 +70,8 @@ Ext.define('Proxmox.window.SafeDestroy', { Ext.Msg.alert('Error', response.htmlStatus); }, success: function(response, options) { - var hasProgressBar = view.showProgress && - response.result.data ? true : false; + var hasProgressBar = !!(view.showProgress && + response.result.data); if (hasProgressBar) { // stay around so we can trigger our close events @@ -82,40 +82,40 @@ Ext.define('Proxmox.window.SafeDestroy', { var win = Ext.create('Proxmox.window.TaskProgress', { upid: upid, listeners: { - destroy: function () { + destroy: function() { view.close(); - } - } + }, + }, }); win.show(); } else { view.close(); } - } + }, }); - } - } - } + }, + }, + }, }, items: [ { xtype: 'component', - cls: [ Ext.baseCSSPrefix + 'message-box-icon', + cls: [Ext.baseCSSPrefix + 'message-box-icon', Ext.baseCSSPrefix + 'message-box-warning', - Ext.baseCSSPrefix + 'dlg-icon'] + Ext.baseCSSPrefix + 'dlg-icon'], }, { xtype: 'container', flex: 1, layout: { type: 'vbox', - align: 'stretch' + align: 'stretch', }, items: [ { xtype: 'component', - reference: 'messageCmp' + reference: 'messageCmp', }, { itemId: 'confirmField', @@ -124,7 +124,7 @@ Ext.define('Proxmox.window.SafeDestroy', { name: 'confirm', labelWidth: 300, hideTrigger: true, - allowBlank: false + allowBlank: false, }, { xtype: 'proxmoxcheckbox', @@ -134,21 +134,21 @@ Ext.define('Proxmox.window.SafeDestroy', { checked: false, autoEl: { tag: 'div', - 'data-qtip': gettext('Remove from replication and backup jobs') - } - } - ] - } + 'data-qtip': gettext('Remove from replication and backup jobs'), + }, + }, + ], + }, ], buttons: [ { reference: 'removeButton', text: gettext('Remove'), - disabled: true - } + disabled: true, + }, ], - initComponent : function() { + initComponent: function() { var me = this; me.callParent(); @@ -190,5 +190,5 @@ Ext.define('Proxmox.window.SafeDestroy', { msg = gettext('Please enter the ID to confirm') + ' (' + item.id + ')'; confirmField.setFieldLabel(msg); - } + }, }); -- 2.20.1