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 4A370CB8F for ; Tue, 12 Apr 2022 15:34:33 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 6719018023 for ; Tue, 12 Apr 2022 15:34:31 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (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 3A6A21018F for ; Tue, 12 Apr 2022 15:34:25 +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 13A0241694 for ; Tue, 12 Apr 2022 15:34:25 +0200 (CEST) From: Dominik Csapak To: pve-devel@lists.proxmox.com Date: Tue, 12 Apr 2022 15:34:15 +0200 Message-Id: <20220412133423.1021857-8-d.csapak@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220412133423.1021857-1-d.csapak@proxmox.com> References: <20220412133423.1021857-1-d.csapak@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.088 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment POISEN_SPAM_PILL_3 0.1 random spam to be learned in bayes SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH manager v6 03/11] ui: parse and save tag color overrides from /version 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: Tue, 12 Apr 2022 13:34:33 -0000 into a global list of overrides. on update, also parse the values from the browser localstore Signed-off-by: Dominik Csapak --- www/manager6/Utils.js | 39 +++++++++++++++++++++++++++++++++++++++ www/manager6/Workspace.js | 13 +++++++++++++ 2 files changed, 52 insertions(+) diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js index fe5be283..61d93b5d 100644 --- a/www/manager6/Utils.js +++ b/www/manager6/Utils.js @@ -1815,6 +1815,45 @@ Ext.define('PVE.Utils', { return undefined; }, + + parseTagOverrides: function(overrides) { + let colors = {}; + (overrides || "").split(/[;, ]/).forEach(color => { + if (!color) { + return; + } + let [tag, color_hex] = color.split('=', 2); + let r = parseInt(color_hex.slice(0, 2), 16); + let g = parseInt(color_hex.slice(2, 4), 16); + let b = parseInt(color_hex.slice(4, 6), 16); + colors[tag] = [r, g, b]; + if (color_hex.length === 13) { + colors[tag].push(parseInt(color_hex.slice(7, 9), 16)); + colors[tag].push(parseInt(color_hex.slice(9, 11), 16)); + colors[tag].push(parseInt(color_hex.slice(11, 13), 16)); + } + }); + return colors; + }, + + tagOverrides: {}, + + updateTagOverrides: function(colors) { + let sp = Ext.state.Manager.getProvider(); + let color_state = sp.get('colors', ''); + let browser_colors = PVE.Utils.parseTagOverrides(color_state); + PVE.Utils.tagOverrides = Ext.apply({}, browser_colors, colors); + }, + + updateTagSettings: function(overrides, style) { + PVE.Utils.updateTagOverrides(PVE.Utils.parseTagOverrides(overrides ?? "")); + + if (style === undefined || style === '__default__') { + style = 'circle'; + } + + Ext.ComponentQuery.query('pveResourceTree')[0].setUserCls(`proxmox-tags-${style}`); + }, }, singleton: true, diff --git a/www/manager6/Workspace.js b/www/manager6/Workspace.js index 37d772b8..d9875c18 100644 --- a/www/manager6/Workspace.js +++ b/www/manager6/Workspace.js @@ -155,6 +155,7 @@ Ext.define('PVE.StdWorkspace', { success: function(response) { PVE.VersionInfo = response.result.data; me.updateVersionInfo(); + me.updateTags(); }, }); @@ -213,6 +214,18 @@ Ext.define('PVE.StdWorkspace', { ui.updateLayout(); }, + updateTags: function() { + let me = this; + let colors = PVE.VersionInfo?.['tag-colors']; + let style = PVE.VersionInfo?.['tag-tree-style']; + + PVE.Utils.updateTagSettings(colors, style); + if (colors) { + // refresh tree once + PVE.data.ResourceStore.fireEvent('load'); + } + }, + initComponent: function() { let me = this; -- 2.30.2