Fixed somethings in the arrows.
This commit is contained in:
parent
1edc4674e2
commit
3b85e3c80f
|
@ -43,13 +43,13 @@ if (is_ajax ()) {
|
|||
$status = modules_get_agentmodule_status($arrow['to_module']);
|
||||
else
|
||||
$status = null;
|
||||
$temp['to_status'] = 2; //$status;
|
||||
$temp['to_status'] = $status;
|
||||
|
||||
if (!empty($arrow['to_module']))
|
||||
$status = modules_get_agentmodule_status($arrow['to_module']);
|
||||
else
|
||||
$status = null;
|
||||
$temp['from_status'] = 2; //$status;
|
||||
$temp['from_status'] = $status;
|
||||
|
||||
$temp['graph_id'] = $arrow['graph_id'];
|
||||
|
||||
|
|
|
@ -343,9 +343,7 @@ MapController.prototype.get_arrow_from_id = function(id) {
|
|||
return null;
|
||||
}
|
||||
else {
|
||||
arrow = arrow[0];
|
||||
|
||||
return self.get_arrow(arrow['to'], arrow['from']);
|
||||
return arrow[0];
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -2880,6 +2878,4 @@ function update_node(data_graph_id) {
|
|||
case 'square':
|
||||
break;
|
||||
}
|
||||
|
||||
console.log(new_label, new_shape);
|
||||
}
|
||||
|
|
|
@ -104,7 +104,11 @@ NetworkmapController.prototype.get_arrow_AMMA = function(id_to, id_from) {
|
|||
if (arrow_to !== null && arrow_from !== null) {
|
||||
// There is one arrow for A-M-M-A
|
||||
arrow_to = self.get_arrow_from_id(arrow_to['graph_id']);
|
||||
arrow_to = self.get_arrow(
|
||||
arrow_to['to'], arrow_to['from']);
|
||||
arrow_from = self.get_arrow_from_id(arrow_from['graph_id']);
|
||||
arrow_from = self.get_arrow(
|
||||
arrow_from['to'], arrow_from['from']);
|
||||
|
||||
arrow['graph_id'] = arrow_to['arrow']['graph_id'] + "" +
|
||||
arrow_MM['arrow']['graph_id'] + "" +
|
||||
|
@ -182,6 +186,8 @@ NetworkmapController.prototype.get_arrows_AMA = function(id_to, id_from) {
|
|||
|| (type_from != ITEM_TYPE_MODULE_NETWORKMAP)) {
|
||||
|
||||
var arrow = self.get_arrow_from_id(edge['graph_id']);
|
||||
arrow = self.get_arrow(
|
||||
arrow['to'], arrow['from']);
|
||||
|
||||
var temp = {};
|
||||
|
||||
|
@ -380,6 +386,8 @@ NetworkmapController.prototype.update_node = function(id) {
|
|||
}
|
||||
|
||||
NetworkmapController.prototype.update_arrow = function(graph_id) {
|
||||
var self = this;
|
||||
|
||||
var arrow = self.get_arrow_from_id(graph_id);
|
||||
|
||||
if ((arrow['type'] == "AMA") || (arrow['type'] == "AMMA")) {
|
||||
|
@ -1850,7 +1858,7 @@ NetworkmapController.prototype.refresh_arrows = function() {
|
|||
var params = {};
|
||||
params["refresh_arrows_open"] = 1;
|
||||
params["id_map"] = self._id;
|
||||
params["page"] = "include/ajax/map.ajax2";
|
||||
params["page"] = "include/ajax/map.ajax";
|
||||
|
||||
var arrows_AMA_or_AMMA = $.grep(edges,
|
||||
function(edge) {
|
||||
|
|
Loading…
Reference in New Issue