UNPKG

@netdata/charts

Version:

Netdata frontend SDK and chart utilities

99 lines (98 loc) 5.64 kB
"use strict"; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var _react = _interopRequireWildcard(require("react")); var _reactDom = _interopRequireDefault(require("react-dom")); var _provider = require("../../provider"); var _container = _interopRequireDefault(require("@netdata/netdata-ui/dist/components/drops/drop/container")); var _useMakeUpdatePosition = _interopRequireDefault(require("@netdata/netdata-ui/dist/components/drops/drop/useMakeUpdatePosition")); var _useDropElement = _interopRequireDefault(require("@netdata/netdata-ui/dist/hooks/useDropElement")); var _labels = _interopRequireDefault(require("./labels")); var _jsxRuntime = require("react/jsx-runtime"); function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; } function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); } 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; } 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 = (0, _react.useRef)(); var updatePositionRef = (0, _react.useRef)(); var _useState = (0, _react.useState)(rightBottomAlign), _useState2 = _slicedToArray(_useState, 2), align = _useState2[0], setAlign = _useState2[1]; updatePositionRef.current = (0, _useMakeUpdatePosition["default"])(target, dropRef, align, stretch); (0, _react.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]); (0, _react.useEffect)(function () { updatePositionRef.current(); }, [align]); var el = (0, _useDropElement["default"])(); var chartId = (0, _provider.useAttributeValue)("id"); return /*#__PURE__*/_reactDom["default"].createPortal(/*#__PURE__*/(0, _jsxRuntime.jsx)(_container["default"], { "data-toolbox": chartId, ref: dropRef, width: { max: "100%" }, column: true, "data-testid": "drop", sx: { pointerEvents: "none" }, children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_labels["default"], { "data-testid": "chartPopover", label: label, groupLabel: groupLabel, data: data, id: id }) }), el); }; var _default = exports["default"] = Popover;