Skip to content

Commit

Permalink
feat: new icons
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-girard committed Dec 8, 2023
1 parent 0eef50f commit 5f3d80e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 20 deletions.
10 changes: 7 additions & 3 deletions ad_miner/sources/js/graph.js
@@ -1,8 +1,8 @@
var icon_group_options = {
cluster_Group: {
image: url_with_color('Group_cluster', 'none', 'rgba(252,147,3,1)'),
image: url_with_color('Group_cluster', 'none', 'none', 'rgba(252,147,3,1)'),
},
Unknown: { image: url_with_color('Unknown', 'none', 'rgba(77,77,77,1)') },
Unknown: { image: url_with_color('Unknown', 'none', 'none', 'rgba(77,77,77,1)') },
};

var list_type_icone = [
Expand All @@ -16,12 +16,15 @@ var list_type_icone = [
'User',
'Foreignsecurityprincipal',
'Unknown',
'Device',
'AZTenant',
'AZRole'
];
var list_attribute = ['ghost', 'da', 'none'];
var list_temporality = ['start', 'intermediate', 'end'];

//cluster_Group = ;
//intermediate_Unknown = url_with_color(Unknown, "none", "rgba(77,77,77,1)");
//intermediate_Unknown = url_with_color('Unknown', "none", "none", "rgba(77,77,77,1)");

for (var i = 0; i < list_type_icone.length; i++) {
for (var j = 0; j < list_attribute.length; j++) {
Expand All @@ -34,6 +37,7 @@ for (var i = 0; i < list_type_icone.length; i++) {
} else {
var color = '#c01c28';
}


icon_group_options[
list_temporality[k] +
Expand Down

0 comments on commit 5f3d80e

Please sign in to comment.