UNPKG

@netdata/charts

Version:

Netdata frontend SDK and chart utilities

83 lines 6.22 kB
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); } 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; } function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } import React from "react"; import styled, { css } from "styled-components"; import { Flex } from "@netdata/netdata-ui"; import { useInitialLoading, useAttributeValue } from "../provider"; import { useHovered } from "../useHover"; import ChartContainer from "../chartContainer"; import Popover from "./popover"; import NavigationToolbox from "./navigationToolbox"; import Skeleton from "./skeleton"; import Overlays from "./overlays"; import { Processing } from "./overlays/proceeded"; import cursorStyle from "../helpers/cursorStyle"; import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; var chartLibraries = { dygraph: css(["&{.default .dygraph-axis-label{color:#35414a;}.dark .dygraph-axis-label{color:#fff;}.dygraph-label-rotate-right{text-align:center;transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-o-transform:rotate(-90deg);-ms-transform:rotate(-90deg);}.dygraph-annotation{position:absolute;z-index:10;overflow:hidden;border:1px solid;}}", ""], cursorStyle) }; var StyledContainer = styled(Flex).withConfig({ displayName: "chartContentWrapper__StyledContainer", componentId: "sc-ngouqx-0" })(["", ""], function (_ref) { var chartLibrary = _ref.chartLibrary; return chartLibraries[chartLibrary] || ""; }); export var ContentWrapper = function ContentWrapper(props) { return /*#__PURE__*/_jsx(Flex, _objectSpread({ position: "relative", column: true, flex: true, overflow: "hidden", "data-testid": "contentWrapper" }, props)); }; export var Container = function Container(props) { var chartLibrary = useAttributeValue("chartLibrary"); var navigation = useAttributeValue("navigation"); return /*#__PURE__*/_jsx(StyledContainer, _objectSpread({ chartLibrary: chartLibrary, position: "relative", flex: true, "data-testid": "chartContentWrapper", height: "100%", width: "100%", overflow: "hidden", navigation: navigation }, props)); }; var ChartContentWrapper = function ChartContentWrapper(_ref2) { var uiName = _ref2.uiName; var id = useAttributeValue("id"); var _useHovered = useHovered({ isOut: function isOut(node) { return !node || !node.closest("[data-toolbox=\"".concat(id, "\"]")) && !node.closest("[data-chartid=\"".concat(id, "\"]")); } }), _useHovered2 = _slicedToArray(_useHovered, 2), ref = _useHovered2[0], hovered = _useHovered2[1]; var initialLoading = useInitialLoading(); var hasToolbox = useAttributeValue("hasToolbox"); var hasHoverPopover = useAttributeValue("hasHoverPopover"); var processing = useAttributeValue("processing"); return /*#__PURE__*/_jsxs(Container, { ref: ref, children: [!initialLoading && /*#__PURE__*/_jsx(ChartContainer, {}), !initialLoading && /*#__PURE__*/_jsx(Overlays, { uiName: uiName }), initialLoading && /*#__PURE__*/_jsx(Skeleton, {}), hasToolbox && hovered && /*#__PURE__*/_jsx(NavigationToolbox, {}), processing && /*#__PURE__*/_jsx(Processing, {}), hasHoverPopover && /*#__PURE__*/_jsx(Popover, { uiName: uiName })] }); }; export default ChartContentWrapper;