UNPKG

@netdata/charts

Version:

Netdata frontend SDK and chart utilities

49 lines 3.27 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 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, { Fragment } from "react"; import { Flex } from "@netdata/netdata-ui"; import { useAttributeValue, useIsMinimal } from "../provider"; import Toolbox from "../toolbox"; import FilterToolbox from "../filterToolbox"; import Separator from "../line/separator"; import { Title } from "../title"; import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; export var Container = function Container(props) { var isMinimal = useIsMinimal(); return /*#__PURE__*/_jsx(Flex, _objectSpread(_objectSpread({ alignItems: "center", justifyContent: "start", padding: [1, 2], gap: 0.5, "data-testid": "chartHeader", height: "25px" }, !isMinimal && { background: "mainChartHeaderBg", border: { side: "bottom", color: "borderSecondary" } }), props)); }; var Header = function Header(_ref) { var hasFilters = _ref.hasFilters; var isMinimal = useIsMinimal(); var leftHeaderElements = useAttributeValue("leftHeaderElements"); var hasToolbox = useAttributeValue("hasToolbox"); var hideTitle = useAttributeValue("hideTitle"); var focused = useAttributeValue("focused"); return /*#__PURE__*/_jsxs(Container, { children: [leftHeaderElements.map(function (Element, index, arr) { return /*#__PURE__*/_jsxs(Fragment, { children: [/*#__PURE__*/_jsx(Element, {}), arr[index + 1] ? /*#__PURE__*/_jsx(Separator, {}) : null] }, index); }), !hideTitle && /*#__PURE__*/_jsx(Title, {}), isMinimal && hasFilters && /*#__PURE__*/_jsx(FilterToolbox, { opacity: focused ? 1 : 0.7 }), hasToolbox && /*#__PURE__*/_jsx(Toolbox, {})] }); }; export default Header;