in source/html/js/app/mappers/nodes/mediastore.js [7:96]
const update_containers = function() {
const local_svg_node = svg_node;
const current = connections.get_current();
const url = current[0];
const api_key = current[1];
const nodes = model.nodes;
const rgb = "#D5DBDB";
const node_type = "MediaStore Container";
return new Promise((resolve, reject) => {
server.get(url + "/cached/mediastore-container", api_key).then((cache_entries) => {
for (let cache_entry of cache_entries) {
const container = JSON.parse(cache_entry.data);
const name = container.Name;
const id = container.ARN;
const node_data = {
"cache_update": cache_entry.updated,
"id": id,
"region": cache_entry.region,
"shape": "image",
"image": {
"unselected": null,
"selected": null
},
"header": "<b>MediaStore Container:</b> " + name,
"data": container,
"title": "MediaStore Container",
"name": name,
"size": 55,
"render": {
normal_unselected: (function() {
const local_node_type = node_type;
const local_name = name;
const local_rgb = rgb;
const local_id = id;
return function() {
return local_svg_node.unselected(local_node_type, local_name, local_rgb, local_id);
};
})(),
normal_selected: (function() {
const local_node_type = node_type;
const local_name = name;
const local_rgb = rgb;
const local_id = id;
return function() {
return local_svg_node.selected(local_node_type, local_name, local_rgb, local_id);
};
})(),
alert_unselected: (function() {
const local_node_type = node_type;
const local_name = name;
const local_id = id;
return function() {
return local_svg_node.unselected(local_node_type, local_name, "#ff0000", local_id);
};
})(),
alert_selected: (function() {
const local_node_type = node_type;
const local_name = name;
const local_id = id;
return function() {
return local_svg_node.selected(local_node_type, local_name, "#ff0000", local_id);
};
})()
},
"console_link": (function() {
const id = container.Name;
const region = container.ARN.split(":")[3];
return function() {
const html = `https://${region}.console.aws.amazon.com/mediastore/home/containers/${id}`;
return html;
};
})(),
"cloudwatch_link": (function() {
return function() {
const html = `https://console.aws.amazon.com/cloudwatch/home`;
return html;
};
})()
};
node_data.image.selected = node_data.render.normal_selected();
node_data.image.unselected = node_data.render.normal_unselected();
nodes.update(node_data);
}
resolve();
}).catch(function(error) {
console.log(error);
reject(error);
});
});
};