@netdata/charts
Version:
Netdata frontend SDK and chart utilities
159 lines (158 loc) • 10.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.makeGetColor = exports.getWidth = exports["default"] = void 0;
var _d3Scale = require("d3-scale");
var _scheduler = require("scheduler");
var _canvas = require("../../helpers/canvas");
var _utilities = require("./utilities");
var _events = _interopRequireDefault(require("./events"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i["return"]) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); }
function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, _regeneratorDefine2(e, r, n, t); }
var getWidth = exports.getWidth = function getWidth(dimensions) {
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
aspectRatio = _ref.aspectRatio,
cellSize = _ref.cellSize;
var rows = (0, _utilities.getRows)(dimensions, aspectRatio);
var columns = (0, _utilities.getColumns)(rows, aspectRatio);
return (0, _utilities.getFullWidth)(columns, cellSize);
};
var getCanvasAttributes = function getCanvasAttributes(dimensions) {
var _ref2 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
aspectRatio = _ref2.aspectRatio,
cellSize = _ref2.cellSize,
padding = _ref2.padding;
var rows = (0, _utilities.getRows)(dimensions, aspectRatio);
var columns = (0, _utilities.getColumns)(rows, aspectRatio);
var width = (0, _utilities.getFullWidth)(columns, cellSize);
var height = (0, _utilities.getFullHeight)(rows, cellSize, padding);
return {
width: width,
height: height,
columns: Math.ceil(columns)
};
};
var makeGetColor = exports.makeGetColor = function makeGetColor(min, max, colorRange) {
return (0, _d3Scale.scaleLinear)().domain([min, max]).range(colorRange);
};
var _default = exports["default"] = function _default(chart, el, _ref3) {
var _marked = /*#__PURE__*/_regenerator().m(update);
var onMouseenter = _ref3.onMouseenter,
onMouseout = _ref3.onMouseout;
var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var cellSize = options.cellSize,
cellPadding = options.cellPadding,
_options$cellStroke = options.cellStroke,
cellStroke = _options$cellStroke === void 0 ? 2 : _options$cellStroke,
_options$lineWidth = options.lineWidth,
lineWidth = _options$lineWidth === void 0 ? 1 : _options$lineWidth,
_options$colorRange = options.colorRange,
colorRange = _options$colorRange === void 0 ? [chart.getThemeAttribute("themeGroupBoxesMin"), chart.getThemeAttribute("themeGroupBoxesMax")] : _options$colorRange;
var canvas = el.getContext("2d");
var backgroundEl = (0, _canvas.createCanvas)(canvas.width, canvas.height);
var backgroundCanvas = backgroundEl.getContext("2d");
var activeBox = -1;
var _deactivateBox = function deactivateBox() {};
var _activateBox = function activateBox() {};
var clearEvents = function clearEvents() {};
var clear = function clear() {
_deactivateBox();
clearEvents();
canvas.clearRect(0, 0, el.width, el.height);
backgroundCanvas.clearRect(0, 0, backgroundEl.width, backgroundEl.height);
};
function update(dimensions, pointData) {
var _getCanvasAttributes, width, height, columns, min, max, getColor, drawBox, index;
return _regenerator().w(function (_context) {
while (1) switch (_context.n) {
case 0:
_getCanvasAttributes = getCanvasAttributes(dimensions, options), width = _getCanvasAttributes.width, height = _getCanvasAttributes.height, columns = _getCanvasAttributes.columns;
if (!(!width || !height)) {
_context.n = 2;
break;
}
if (!(0, _scheduler.unstable_shouldYield)()) {
_context.n = 1;
break;
}
_context.n = 1;
return;
case 1:
return _context.a(2);
case 2:
backgroundEl.width = parseInt(width);
backgroundEl.height = parseInt(height);
backgroundCanvas.clearRect(0, 0, backgroundEl.width, backgroundEl.height);
min = chart.getAttribute("min");
max = chart.getAttribute("max");
getColor = makeGetColor(min, max, colorRange);
drawBox = function drawBox(ctx, id, index) {
ctx.beginPath();
ctx.fillStyle = getColor(chart.getRowDimensionValue(id, pointData));
var offsetX = (0, _utilities.getXPosition)(columns, index, cellSize);
var offsetY = (0, _utilities.getYPosition)(columns, index, cellSize);
if (lineWidth && cellStroke) {
ctx.clearRect(offsetX - lineWidth, offsetY - lineWidth, (0, _utilities.getCellBoxSize)(cellSize, cellPadding) + cellStroke, (0, _utilities.getCellBoxSize)(cellSize, cellPadding) + cellStroke);
}
ctx.fillRect(offsetX, offsetY, (0, _utilities.getCellBoxSize)(cellSize, cellPadding), (0, _utilities.getCellBoxSize)(cellSize, cellPadding));
};
index = 0;
case 3:
if (!(index < dimensions.length)) {
_context.n = 5;
break;
}
drawBox(backgroundCanvas, dimensions[index], index);
if (!(0, _scheduler.unstable_shouldYield)()) {
_context.n = 4;
break;
}
_context.n = 4;
return;
case 4:
++index;
_context.n = 3;
break;
case 5:
_deactivateBox();
clearEvents();
(0, _canvas.copyCanvas)(backgroundEl, el);
clearEvents = (0, _events["default"])(el, columns, dimensions.length, {
onMouseenter: onMouseenter,
onMouseout: onMouseout
}, options);
_deactivateBox = function deactivateBox() {
return activeBox !== -1 && drawBox(canvas, dimensions[activeBox], activeBox);
};
_activateBox = function activateBox(index) {
_deactivateBox();
activeBox = index;
var offsetX = (0, _utilities.getXPosition)(columns, index, cellSize);
var offsetY = (0, _utilities.getYPosition)(columns, index, cellSize);
if (lineWidth && cellStroke) {
canvas.lineWidth = lineWidth;
canvas.strokeStyle = "#fff";
canvas.strokeRect(offsetX + lineWidth, offsetY + lineWidth, (0, _utilities.getCellBoxSize)(cellSize, cellPadding) - cellStroke, (0, _utilities.getCellBoxSize)(cellSize, cellPadding) - cellStroke);
}
};
case 6:
return _context.a(2);
}
}, _marked);
}
return {
clear: clear,
update: update,
activateBox: function activateBox(index) {
return _activateBox(index);
},
deactivateBox: function deactivateBox() {
return _deactivateBox();
},
getElement: function getElement() {
return backgroundEl;
}
};
};