@lobehub/charts
Version:
React modern charts components built on recharts
183 lines (182 loc) • 10 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 = ["data", "color", "valueFormatter", "showAnimation", "onValueChange", "sortOrder", "className", "leftLabel", "rightLabel", "style", "loading", "width", "height", "noDataText"];
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 _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
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 _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
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; }
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; }
import A from '@lobehub/ui/es/A';
import { Skeleton } from 'antd';
import React, { forwardRef, useMemo } from 'react';
import { Flexbox } from 'react-layout-kit';
import NoData from "../common/NoData";
import { useThemeColorRange } from "../hooks/useThemeColorRange";
import { defaultValueFormatter } from "../utils";
import { useStyles } from "./styles";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var BarList = /*#__PURE__*/forwardRef(function (props, ref) {
var _useStyles = useStyles(),
cx = _useStyles.cx,
styles = _useStyles.styles,
prefixCls = _useStyles.prefixCls;
var themeColorRange = useThemeColorRange();
var _props$data = props.data,
data = _props$data === void 0 ? [] : _props$data,
_props$color = props.color,
color = _props$color === void 0 ? themeColorRange[0] : _props$color,
_props$valueFormatter = props.valueFormatter,
valueFormatter = _props$valueFormatter === void 0 ? defaultValueFormatter : _props$valueFormatter,
_props$showAnimation = props.showAnimation,
showAnimation = _props$showAnimation === void 0 ? false : _props$showAnimation,
onValueChange = props.onValueChange,
_props$sortOrder = props.sortOrder,
sortOrder = _props$sortOrder === void 0 ? 'descending' : _props$sortOrder,
className = props.className,
leftLabel = props.leftLabel,
rightLabel = props.rightLabel,
style = props.style,
loading = props.loading,
_props$width = props.width,
width = _props$width === void 0 ? '100%' : _props$width,
height = props.height,
noDataText = props.noDataText,
rest = _objectWithoutProperties(props, _excluded);
var sortedData = useMemo(function () {
if (sortOrder === 'none') {
return data;
}
return _toConsumableArray(data).sort(function (a, b) {
return sortOrder === 'ascending' ? a.value - b.value : b.value - a.value;
});
}, [data, sortOrder]);
var widths = useMemo(function () {
var maxValue = Math.max.apply(Math, _toConsumableArray(sortedData.map(function (item) {
return item.value;
})).concat([0]));
return sortedData.map(function (item) {
return item.value === 0 ? 0 : Math.max(item.value / maxValue * 100, 2);
});
}, [sortedData]);
if (loading || !data) return /*#__PURE__*/_jsx(Skeleton.Button, {
active: true,
block: true,
style: {
height: height,
width: width
}
});
var rowHeight = 32;
var labelHeight = 20;
return /*#__PURE__*/_jsxs(Flexbox, _objectSpread(_objectSpread({
"aria-sort": sortOrder,
className: className,
gap: 24,
horizontal: true,
justify: 'space-between',
ref: ref,
style: _objectSpread({
minHeight: height,
position: 'relative'
}, style),
width: width
}, rest), {}, {
children: [/*#__PURE__*/_jsxs(Flexbox, {
flex: 1,
gap: 8,
style: {
overflow: 'hidden',
position: 'relative'
},
children: [(leftLabel || rightLabel) && /*#__PURE__*/_jsx(Flexbox, {
className: cx(styles.label, styles.emphasis),
height: labelHeight,
width: "100%",
children: leftLabel
}), sortedData.map(function (item, index) {
var _item$key, _item$color;
return /*#__PURE__*/_jsxs(Flexbox, {
align: 'center',
className: cx(styles.barContainer, onValueChange && styles.barHover),
height: rowHeight,
horizontal: true,
onClick: function onClick() {
onValueChange === null || onValueChange === void 0 || onValueChange(item);
},
style: {
cursor: onValueChange ? 'pointer' : 'default'
},
width: '100%',
children: [/*#__PURE__*/_jsx("div", {
className: cx("".concat(prefixCls, "-chart-bar-item"), styles.bar),
style: {
background: (_item$color = item.color) !== null && _item$color !== void 0 ? _item$color : color,
transition: showAnimation ? undefined : 'none',
width: "".concat(widths[index], "%"),
zIndex: 0
}
}), /*#__PURE__*/_jsxs(Flexbox, {
align: 'center',
gap: 8,
horizontal: true,
paddingInline: 8,
style: {
overflow: 'hidden',
position: 'relative',
width: '100%',
zIndex: 1
},
children: [item.icon, item.href ? /*#__PURE__*/_jsx(A, {
className: cx(styles.sourceALabel, styles.emphasis),
href: item.href,
onClick: function onClick(event) {
return event.stopPropagation();
},
target: item.target,
children: item.name
}) : /*#__PURE__*/_jsx("div", {
className: cx(styles.sourceLabel, styles.emphasis),
children: item.name
})]
})]
}, (_item$key = item.key) !== null && _item$key !== void 0 ? _item$key : index);
}), !(data !== null && data !== void 0 && data.length) && /*#__PURE__*/_jsx(NoData, {
noDataText: noDataText
})]
}), /*#__PURE__*/_jsxs(Flexbox, {
gap: 8,
children: [(leftLabel || rightLabel) && /*#__PURE__*/_jsx(Flexbox, {
className: cx(styles.label, styles.emphasis),
height: labelHeight,
style: {
textAlign: 'right'
},
width: "100%",
children: rightLabel
}), sortedData.map(function (item, index) {
var _item$key2;
return /*#__PURE__*/_jsx(Flexbox, {
align: 'center',
height: rowHeight,
horizontal: true,
justify: 'flex-end',
children: /*#__PURE__*/_jsx("div", {
className: cx(styles.strongLabel, styles.emphasis),
children: valueFormatter(item.value)
})
}, (_item$key2 = item.key) !== null && _item$key2 !== void 0 ? _item$key2 : index);
})]
})]
}));
});
BarList.displayName = 'BarList';
export default BarList;