UNPKG

@netdata/charts

Version:

Netdata frontend SDK and chart utilities

90 lines 4.16 kB
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, useState, useRef } from "react"; import ReactDOM from "react-dom"; import { useAttributeValue } from "../../provider"; 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 Labels from "./labels"; import { jsx as _jsx } 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 stretch = "width"; 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 target = _ref.target, label = _ref.label, groupLabel = _ref.groupLabel, data = _ref.data, id = _ref.id; var dropRef = useRef(); var updatePositionRef = useRef(); var _useState = useState(rightBottomAlign), _useState2 = _slicedToArray(_useState, 2), align = _useState2[0], setAlign = _useState2[1]; updatePositionRef.current = useMakeUpdatePosition(target, dropRef, align, stretch); useEffect(function () { if (!(target !== null && target !== void 0 && target.getBoundingClientRect) || !dropRef.current) return; var _target$getBoundingCl = target.getBoundingClientRect(), targetRight = _target$getBoundingCl.right, targetBottom = _target$getBoundingCl.bottom; var winHeight = window.innerHeight; var winWidth = window.innerWidth; var _dropRef$current$getB = dropRef.current.getBoundingClientRect(), width = _dropRef$current$getB.width, height = _dropRef$current$getB.height; var left = targetRight + width > winWidth; var top = targetBottom + height > winHeight; setAlign(getAlign(left, top)); }, [target]); useEffect(function () { updatePositionRef.current(); }, [align]); var el = useDropElement(); var chartId = useAttributeValue("id"); return /*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(DropContainer, { "data-toolbox": chartId, ref: dropRef, width: { max: "100%" }, column: true, "data-testid": "drop", sx: { pointerEvents: "none" }, children: /*#__PURE__*/_jsx(Labels, { "data-testid": "chartPopover", label: label, groupLabel: groupLabel, data: data, id: id }) }), el); }; export default Popover;