@lobehub/charts
Version:
React modern charts components built on recharts
207 lines (206 loc) • 12.1 kB
JavaScript
'use client';
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); }
var _excluded = ["values", "colors", "valueFormatter", "markerValue", "showLabels", "tooltip", "showAnimation", "className", "width", "size", "style"];
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(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(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); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _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 _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(arr) { if (Array.isArray(arr)) return arr; }
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
import { Tooltip } from '@lobehub/ui';
import { forwardRef, memo, useMemo } from 'react';
import { Flexbox } from 'react-layout-kit';
import { useThemeColorRange } from "../hooks/useThemeColorRange";
import { defaultValueFormatter, sumNumericArray } from "../utils";
import { useStyles } from "./styles";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var getMarkerBgColor = function getMarkerBgColor(markerValue, values, colors) {
if (markerValue === undefined) return '';
var prefixSum = 0;
var _iterator = _createForOfIteratorHelper(values.entries()),
_step;
try {
for (_iterator.s(); !(_step = _iterator.n()).done;) {
var _step$value = _slicedToArray(_step.value, 2),
i = _step$value[0],
currentWidthPercentage = _step$value[1];
var currentBgColor = colors[i];
prefixSum += currentWidthPercentage;
if (prefixSum >= markerValue) return currentBgColor;
}
} catch (err) {
_iterator.e(err);
} finally {
_iterator.f();
}
return '';
};
var getPositionLeft = function getPositionLeft(value, maxValue) {
return value ? value / maxValue * 100 : 0;
};
var BarLabels = /*#__PURE__*/memo(function (_ref) {
var values = _ref.values,
valueFormatter = _ref.valueFormatter;
var _useStyles = useStyles(),
cx = _useStyles.cx,
styles = _useStyles.styles;
var sumValues = useMemo(function () {
return sumNumericArray(values);
}, [values]);
var prefixSum = 0;
var sumConsecutiveHiddenLabels = 0;
return /*#__PURE__*/_jsxs(Flexbox, {
className: cx(styles.label, styles.emphasis),
horizontal: true,
style: {
position: 'relative'
},
children: [values.slice(0, values.length).map(function (widthPercentage, idx) {
prefixSum += widthPercentage;
var showLabel = (widthPercentage >= 0.1 * sumValues || sumConsecutiveHiddenLabels >= 0.09 * sumValues) && sumValues - prefixSum >= 0.15 * sumValues && prefixSum >= 0.1 * sumValues;
sumConsecutiveHiddenLabels = showLabel ? 0 : sumConsecutiveHiddenLabels += widthPercentage;
var widthPositionLeft = getPositionLeft(widthPercentage, sumValues);
if (prefixSum === sumValues) return null;
return /*#__PURE__*/_jsx(Flexbox, {
align: 'center',
horizontal: true,
justify: 'flex-end',
style: {
width: "".concat(widthPositionLeft, "%")
},
children: /*#__PURE__*/_jsx("span", {
style: {
display: showLabel ? 'block' : 'hidden',
left: '50%',
transform: 'translateX(50%)'
},
children: valueFormatter ? valueFormatter(prefixSum) : prefixSum
})
}, "item-".concat(idx));
}), /*#__PURE__*/_jsx(Flexbox, {
align: 'center',
horizontal: true,
style: {
bottom: 0,
left: 0,
position: 'absolute'
},
children: valueFormatter ? valueFormatter(0) : 0
}), /*#__PURE__*/_jsx(Flexbox, {
align: 'center',
horizontal: true,
style: {
bottom: 0,
position: 'absolute',
right: 0
},
children: valueFormatter ? valueFormatter(sumValues) : sumValues
})]
});
});
var CategoryBar = /*#__PURE__*/forwardRef(function (props, ref) {
var _useStyles2 = useStyles(),
cx = _useStyles2.cx,
styles = _useStyles2.styles,
theme = _useStyles2.theme;
var themeColorRange = useThemeColorRange();
var _props$values = props.values,
values = _props$values === void 0 ? [] : _props$values,
_props$colors = props.colors,
colors = _props$colors === void 0 ? themeColorRange : _props$colors,
_props$valueFormatter = props.valueFormatter,
valueFormatter = _props$valueFormatter === void 0 ? defaultValueFormatter : _props$valueFormatter,
markerValue = props.markerValue,
_props$showLabels = props.showLabels,
showLabels = _props$showLabels === void 0 ? true : _props$showLabels,
tooltip = props.tooltip,
_props$showAnimation = props.showAnimation,
showAnimation = _props$showAnimation === void 0 ? false : _props$showAnimation,
className = props.className,
_props$width = props.width,
width = _props$width === void 0 ? '100%' : _props$width,
_props$size = props.size,
size = _props$size === void 0 ? 8 : _props$size,
style = props.style,
rest = _objectWithoutProperties(props, _excluded);
var colorGroup = colors.concat(themeColorRange);
var markerBgColor = useMemo(function () {
return getMarkerBgColor(markerValue, values, colorGroup);
}, [markerValue, values, colorGroup]);
var maxValue = useMemo(function () {
return sumNumericArray(values);
}, [values]);
var markerPositionLeft = useMemo(function () {
return getPositionLeft(markerValue, maxValue);
}, [markerValue, maxValue]);
return /*#__PURE__*/_jsx(Tooltip, {
title: tooltip,
children: /*#__PURE__*/_jsxs(Flexbox, _objectSpread(_objectSpread({
className: className,
gap: 8,
ref: ref,
style: _objectSpread({
position: 'relative'
}, style),
width: width
}, rest), {}, {
children: [showLabels && /*#__PURE__*/_jsx(BarLabels, {
valueFormatter: valueFormatter,
values: values
}), /*#__PURE__*/_jsxs(Flexbox, {
align: 'center',
className: cx('relative w-full flex items-center h-2'),
height: size,
horizontal: true,
style: {
position: 'relative'
},
children: [/*#__PURE__*/_jsx(Flexbox, {
align: 'center',
height: '100%',
horizontal: true,
style: {
borderRadius: size / 2,
overflow: 'hidden'
},
width: '100%',
children: values.map(function (value, idx) {
var _colorGroup$idx;
var baseColor = (_colorGroup$idx = colorGroup[idx]) !== null && _colorGroup$idx !== void 0 ? _colorGroup$idx : theme.colorPrimary;
var percentage = value / maxValue * 100;
return /*#__PURE__*/_jsx(Flexbox, {
height: '100%',
style: {
background: baseColor,
width: "".concat(percentage, "%")
}
}, "item-".concat(idx));
})
}), markerValue === undefined ? undefined : /*#__PURE__*/_jsx("div", {
className: cx(styles.markerWrapper, showAnimation && styles.showAnimation),
style: {
left: "".concat(markerPositionLeft, "%")
},
children: /*#__PURE__*/_jsx("div", {
className: styles.marker,
style: {
background: markerBgColor || theme.colorPrimary,
height: size + 8
}
})
})]
})]
}))
});
});
CategoryBar.displayName = 'CategoryBar';
export default CategoryBar;