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 CE08A7495C for ; Mon, 19 Apr 2021 15:14:50 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id C0D3616265 for ; Mon, 19 Apr 2021 15:14:50 +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 2EF4A16232 for ; Mon, 19 Apr 2021 15:14:46 +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 E2CB845B8C for ; Mon, 19 Apr 2021 15:14:45 +0200 (CEST) From: Fabian Ebner To: pve-devel@lists.proxmox.com Date: Mon, 19 Apr 2021 15:14:36 +0200 Message-Id: <20210419131441.23650-3-f.ebner@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210419131441.23650-1-f.ebner@proxmox.com> References: <20210419131441.23650-1-f.ebner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.007 Adjusted score from AWL reputation of From: address 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 Subject: [pve-devel] [PATCH proxmox-widget-toolkit 2/7] safe destroy: allow specifing additional items X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Apr 2021 13:14:50 -0000 to be used to add more checkboxes for PVE's guest destroy use case. Signed-off-by: Fabian Ebner --- src/window/SafeDestroy.js | 104 ++++++++++++++++++++------------------ 1 file changed, 54 insertions(+), 50 deletions(-) diff --git a/src/window/SafeDestroy.js b/src/window/SafeDestroy.js index 91e0f2c..72e7e19 100644 --- a/src/window/SafeDestroy.js +++ b/src/window/SafeDestroy.js @@ -15,6 +15,8 @@ Ext.define('Proxmox.window.SafeDestroy', { defaultFocus: 'confirmField', showProgress: false, + additionalItems: [], + config: { item: { id: undefined, @@ -96,56 +98,6 @@ Ext.define('Proxmox.window.SafeDestroy', { }, }, - items: [ - { - xtype: 'component', - cls: [Ext.baseCSSPrefix + 'message-box-icon', - Ext.baseCSSPrefix + 'message-box-warning', - Ext.baseCSSPrefix + 'dlg-icon'], - }, - { - xtype: 'container', - flex: 1, - layout: { - type: 'vbox', - align: 'stretch', - }, - items: [ - { - xtype: 'component', - reference: 'messageCmp', - }, - { - itemId: 'confirmField', - reference: 'confirmField', - xtype: 'textfield', - name: 'confirm', - labelWidth: 300, - hideTrigger: true, - allowBlank: false, - }, - { - xtype: 'container', - reference: 'noteContainer', - flex: 1, - hidden: true, - layout: { - type: 'vbox', - align: 'middle', - }, - height: 25, - items: [ - { - xtype: 'component', - reference: 'noteCmp', - width: '300px', - style: 'font-size: smaller; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;', - }, - ], - }, - ], - }, - ], buttons: [ { reference: 'removeButton', @@ -157,6 +109,58 @@ Ext.define('Proxmox.window.SafeDestroy', { initComponent: function() { let me = this; + me.items = [ + { + xtype: 'component', + cls: [Ext.baseCSSPrefix + 'message-box-icon', + Ext.baseCSSPrefix + 'message-box-warning', + Ext.baseCSSPrefix + 'dlg-icon'], + }, + { + xtype: 'container', + flex: 1, + layout: { + type: 'vbox', + align: 'stretch', + }, + items: [ + { + xtype: 'component', + reference: 'messageCmp', + }, + { + itemId: 'confirmField', + reference: 'confirmField', + xtype: 'textfield', + name: 'confirm', + labelWidth: 300, + hideTrigger: true, + allowBlank: false, + }, + ].concat(me.additionalItems).concat([ + { + xtype: 'container', + reference: 'noteContainer', + flex: 1, + hidden: true, + layout: { + type: 'vbox', + align: 'middle', + }, + height: 25, + items: [ + { + xtype: 'component', + reference: 'noteCmp', + width: '300px', + style: 'font-size: smaller; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;', + }, + ], + }, + ]), + }, + ]; + me.callParent(); const item = me.getItem(); -- 2.20.1