open-consul/ui-v2/app/utils/tomography.js
John Cowen 62ba4c9722 ui: Fixes RTT display, by ensuring use of ember proxies in tomography (#5666)
Previously the tomography wasn't using ember `get` so proxy updates
(specifically here whilst receiving a blocking update) wasn't working.

This adds `get` here until we update to newer `get`less ember and also
refactors slightly removing `n` and using `distance.length` instead

Skipped tests are adding here to nag us to come back here at some point.
2019-05-01 18:22:33 +00:00

53 lines
1.4 KiB
JavaScript

// TODO: Istanbul is ignored for the moment as it's not mine,
// once I come here properly and 100% follow unignore
/* istanbul ignore file */
export default function(distance) {
return function(name, coordinates) {
var min = 999999999;
var max = -999999999;
var distances = [];
coordinates.forEach(function(node) {
if (name == node.Node) {
var segment = node.Segment;
coordinates.forEach(function(other) {
if (node.Node != other.Node && other.Segment == segment) {
var dist = distance(node, other);
distances.push({ node: other.Node, distance: dist, segment: segment });
if (dist < min) {
min = dist;
}
if (dist > max) {
max = dist;
}
}
});
distances.sort(function(a, b) {
return a.distance - b.distance;
});
}
});
var n = distances.length;
var halfN = Math.floor(n / 2);
var median;
if (n > 0) {
if (n % 2) {
// odd
median = distances[halfN].distance;
} else {
median = (distances[halfN - 1].distance + distances[halfN].distance) / 2;
}
} else {
median = 0;
min = 0;
max = 0;
}
return {
distances: distances,
min: parseInt(min * 100) / 100,
median: parseInt(median * 100) / 100,
max: parseInt(max * 100) / 100,
};
};
}