@netdata/netdata-ui
Version:
netdata UI kit
61 lines (60 loc) • 2.6 kB
JavaScript
"use strict";
exports.__esModule = true;
exports["default"] = void 0;
var _react = _interopRequireDefault(require("react"));
var _box = _interopRequireDefault(require("../templates/box"));
var _flex = _interopRequireDefault(require("../templates/flex"));
var _excluded = ["background", "className", "color", "containerWidth", "height", "value", "width", "ref"];
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
var ProgressBar = function ProgressBar(_ref) {
var _ref$background = _ref.background,
background = _ref$background === void 0 ? "nodeBadgeBackground" : _ref$background,
className = _ref.className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? "text" : _ref$color,
_ref$containerWidth = _ref.containerWidth,
containerWidth = _ref$containerWidth === void 0 ? "100%" : _ref$containerWidth,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 2 : _ref$height,
value = _ref.value,
width = _ref.width,
ref = _ref.ref,
rest = _objectWithoutPropertiesLoose(_ref, _excluded);
value = Array.isArray(value) ? value : [value || {
width: width,
color: color
}];
return /*#__PURE__*/_react["default"].createElement(_flex["default"], _extends({
background: background,
border: {
side: "all",
color: background
},
className: className,
"data-testid": "progressBar",
height: height,
ref: ref,
round: "2px",
width: containerWidth
}, rest), value.map(function (_ref2, index, arr) {
var color = _ref2.color,
width = _ref2.width;
return width === "0%" ? null : /*#__PURE__*/_react["default"].createElement(_box["default"], {
background: color,
border: {
side: "all",
color: color
},
"data-testid": "progressBar-progress" + width,
height: "100%",
key: width + "-" + index,
position: "relative",
round: !index ? "2px 0 0 2px" : arr.length - 1 === index ? "0 2px 2px 0" : "0",
width: width,
zIndex: index
});
}));
};
var _default = exports["default"] = ProgressBar;