stores the color-map into a global list of overrides. on update, also parse
the values from the browser localstore. Also emits a GlobalEvent
'loadedUiOptions' so that e.g. the tags can listen to that and refresh their
colors

also saves the list of 'allowed-tags' into PVE.Utils

Signed-off-by: Dominik Csapak <d.csa...@proxmox.com>
---
changes from v8:
* also parses the allowed tag into the taglist now (and don't parse it
  from the tree anymore, since that should be the same)
 www/manager6/Utils.js | 60 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 59 insertions(+), 1 deletion(-)

diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js
index 29bf667b4..9cd3bd6c2 100644
--- a/www/manager6/Utils.js
+++ b/www/manager6/Utils.js
@@ -1860,10 +1860,68 @@ Ext.define('PVE.Utils', {
            url: '/ui-options',
            method: 'GET',
            success: function(response) {
-               PVE.UIOptions = response?.result?.data ?? {};
+               PVE.UIOptions = response?.result?.data ?? {
+                   'allowed-tags': [],
+               };
+               let colors = PVE.UIOptions?.['tag-style']?.['color-map'];
+               let shape = PVE.UIOptions?.['tag-style']?.shape;
+
+               PVE.Utils.updateTagSettings(colors, shape);
+               PVE.Utils.updateTagList(PVE.UIOptions['allowed-tags']);
+               if (colors) {
+                   // refresh tree once
+                   PVE.data.ResourceStore.fireEvent('load');
+                   Ext.GlobalEvents.fireEvent('loadedUiOptions');
+               }
            },
        });
     },
+
+    tagList: new Set(),
+
+    updateTagList: function(tags) {
+       PVE.Utils.tagList = [...new Set([...tags])].sort();
+    },
+
+    parseTagOverrides: function(overrides) {
+       let colors = {};
+       (overrides || "").split(';').forEach(color => {
+           if (!color) {
+               return;
+           }
+           let [tag, color_hex, font_hex] = color.split(':');
+           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 (font_hex) {
+               colors[tag].push(parseInt(font_hex.slice(0, 2), 16));
+               colors[tag].push(parseInt(font_hex.slice(2, 4), 16));
+               colors[tag].push(parseInt(font_hex.slice(4, 6), 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);
+       Ext.GlobalEvents.fireEvent('tag-color-override');
+    },
+
+    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,
-- 
2.30.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to