@netdata/charts
Version:
Netdata frontend SDK and chart utilities
130 lines (129 loc) • 6.26 kB
JavaScript
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
import React, { useEffect, useLayoutEffect, useState, useRef, Fragment } from "react";
import { Flex } from "@netdata/netdata-ui";
import ReactDOM from "react-dom";
import DropContainer from "@netdata/netdata-ui/dist/components/drops/drop/container";
import useMakeUpdatePosition from "@netdata/netdata-ui/dist/components/drops/drop/useMakeUpdatePosition";
import useDropElement from "@netdata/netdata-ui/dist/hooks/useDropElement";
import { unregister } from "../../../helpers/makeListeners";
import { useChart } from "../../provider";
import Dimensions from "./dimensions";
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
var leftTopAlign = {
right: "left",
bottom: "top"
};
var leftBottomAlign = {
right: "left",
top: "bottom"
};
var rightTopAlign = {
left: "right",
bottom: "top"
};
var rightBottomAlign = {
left: "right",
top: "bottom"
};
var canHideTarget = false;
var getAlign = function getAlign(left, top) {
if (left && top) return leftTopAlign;
if (left) return leftBottomAlign;
if (top) return rightTopAlign;
return rightBottomAlign;
};
var Popover = function Popover(_ref) {
var uiName = _ref.uiName;
var chart = useChart();
var dropRef = useRef();
var _useState = useState(),
_useState2 = _slicedToArray(_useState, 2),
target = _useState2[0],
setTarget = _useState2[1];
var targetRef = useRef();
var updatePositionRef = useRef();
var _useState3 = useState(false),
_useState4 = _slicedToArray(_useState3, 2),
open = _useState4[0],
setOpen = _useState4[1];
var _useState5 = useState(rightBottomAlign),
_useState6 = _slicedToArray(_useState5, 2),
align = _useState6[0],
setAlign = _useState6[1];
targetRef.current = target;
updatePositionRef.current = useMakeUpdatePosition(target, dropRef, align, undefined, canHideTarget);
useEffect(function () {
return unregister(chart.getUI(uiName).on("mousemove", function (event) {
if (chart.sdk.getRoot().getAttribute("autofetchOnHovering") || chart.getAttribute("panning") || chart.getAttribute("highlighting")) return;
var offsetX = event.offsetX || event.layerX;
var offsetY = event.offsetY || event.layerY;
if (!targetRef.current) {
setOpen(true);
return;
}
targetRef.current.style.left = "".concat(offsetX, "px");
targetRef.current.style.top = "".concat(offsetY, "px");
setOpen(true);
if (!dropRef.current) return;
updatePositionRef.current();
var _dropRef$current$getB = dropRef.current.getBoundingClientRect(),
width = _dropRef$current$getB.width,
height = _dropRef$current$getB.height;
var left = offsetX + width > window.innerWidth;
var top = offsetY + height > window.innerHeight;
setAlign(getAlign(left, top));
}), chart.getUI(uiName).on("mouseout", function () {
return setOpen(false);
}), chart.onAttributeChange("panning", function (panning) {
return panning && setOpen(false);
}), chart.onAttributeChange("highlighting", function (panning) {
return panning && setOpen(false);
}));
}, [chart]);
// After the DropContainer first mounts on open, position it (and recompute
// align based on overflow) before paint so the very first frame shows the
// popover at the cursor with the correct alignment.
useLayoutEffect(function () {
var _updatePositionRef$cu;
if (!open || !targetRef.current || !dropRef.current) return;
(_updatePositionRef$cu = updatePositionRef.current) === null || _updatePositionRef$cu === void 0 || _updatePositionRef$cu.call(updatePositionRef);
var offsetX = parseFloat(targetRef.current.style.left) || 0;
var offsetY = parseFloat(targetRef.current.style.top) || 0;
var _dropRef$current$getB2 = dropRef.current.getBoundingClientRect(),
width = _dropRef$current$getB2.width,
height = _dropRef$current$getB2.height;
var left = offsetX + width > window.innerWidth;
var top = offsetY + height > window.innerHeight;
var next = getAlign(left, top);
if (next !== align) setAlign(next);
}, [open]);
var el = useDropElement();
return /*#__PURE__*/_jsxs(Fragment, {
children: [/*#__PURE__*/_jsx(Flex, {
ref: function ref(r) {
return setTarget(r);
},
position: "absolute"
}), open && /*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(DropContainer, {
"data-toolbox": chart.getId(),
margin: [align.top ? 2 : -2, align.right ? -2 : 2],
ref: dropRef,
column: true,
"data-testid": "drop",
sx: {
pointerEvents: "none"
},
zIndex: 101,
children: /*#__PURE__*/_jsx(Dimensions, {
uiName: uiName,
"data-testid": "chartPopover"
})
}), el)]
});
};
export default Popover;