@lobehub/charts
Version:
React modern charts components built on recharts
437 lines (436 loc) • 24.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 _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
var _excluded = ["data", "categories", "index", "stack", "colors", "valueFormatter", "xAxisLabelFormatter", "startEndOnly", "showXAxis", "showYAxis", "yAxisAlign", "yAxisWidth", "intervalType", "showAnimation", "animationDuration", "showTooltip", "showLegend", "showGridLines", "showGradient", "autoMinValue", "curveType", "minValue", "maxValue", "connectNulls", "allowDecimals", "noDataText", "className", "onValueChange", "enableLegendSlider", "customTooltip", "rotateLabelX", "tickGap", "loading", "xAxisLabel", "yAxisLabel", "width", "height", "style", "customCategories"];
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
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 _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 _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; }
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 _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 { Skeleton } from 'antd';
import { css } from 'antd-style';
import { Fragment, forwardRef, useMemo, useState } from 'react';
import { Flexbox } from 'react-layout-kit';
import { Area, CartesianGrid, Dot, Label, Legend, Line, AreaChart as ReChartsAreaChart, ResponsiveContainer, Tooltip, XAxis, YAxis } from 'recharts';
import ChartLegend from "../common/ChartLegend";
import ChartTooltip from "../common/ChartTooltip";
import CustomYAxisTick from "../common/CustomYAxisTick";
import NoData from "../common/NoData";
import { constructCategoryColors, getYAxisDomain, hasOnlyOneValueForThisKey } from "../common/utils";
import { useThemeColorRange } from "../hooks/useThemeColorRange";
import { defaultValueFormatter } from "../utils";
import { getMaxLabelLength } from "../utils/getMaxLabelLength";
import { useStyles } from "./styles";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var AreaChart = /*#__PURE__*/forwardRef(function (props, ref) {
var _useStyles = useStyles(),
cx = _useStyles.cx,
theme = _useStyles.theme,
styles = _useStyles.styles;
var themeColorRange = useThemeColorRange();
var _props$data = props.data,
data = _props$data === void 0 ? [] : _props$data,
_props$categories = props.categories,
categories = _props$categories === void 0 ? [] : _props$categories,
index = props.index,
_props$stack = props.stack,
stack = _props$stack === void 0 ? false : _props$stack,
_props$colors = props.colors,
colors = _props$colors === void 0 ? themeColorRange : _props$colors,
_props$valueFormatter = props.valueFormatter,
valueFormatter = _props$valueFormatter === void 0 ? defaultValueFormatter : _props$valueFormatter,
_props$xAxisLabelForm = props.xAxisLabelFormatter,
xAxisLabelFormatter = _props$xAxisLabelForm === void 0 ? defaultValueFormatter : _props$xAxisLabelForm,
_props$startEndOnly = props.startEndOnly,
startEndOnly = _props$startEndOnly === void 0 ? false : _props$startEndOnly,
_props$showXAxis = props.showXAxis,
showXAxis = _props$showXAxis === void 0 ? true : _props$showXAxis,
_props$showYAxis = props.showYAxis,
showYAxis = _props$showYAxis === void 0 ? true : _props$showYAxis,
_props$yAxisAlign = props.yAxisAlign,
yAxisAlign = _props$yAxisAlign === void 0 ? 'left' : _props$yAxisAlign,
yAxisWidth = props.yAxisWidth,
_props$intervalType = props.intervalType,
intervalType = _props$intervalType === void 0 ? 'equidistantPreserveStart' : _props$intervalType,
_props$showAnimation = props.showAnimation,
showAnimation = _props$showAnimation === void 0 ? false : _props$showAnimation,
_props$animationDurat = props.animationDuration,
animationDuration = _props$animationDurat === void 0 ? 900 : _props$animationDurat,
_props$showTooltip = props.showTooltip,
showTooltip = _props$showTooltip === void 0 ? true : _props$showTooltip,
_props$showLegend = props.showLegend,
showLegend = _props$showLegend === void 0 ? true : _props$showLegend,
_props$showGridLines = props.showGridLines,
showGridLines = _props$showGridLines === void 0 ? true : _props$showGridLines,
_props$showGradient = props.showGradient,
showGradient = _props$showGradient === void 0 ? true : _props$showGradient,
_props$autoMinValue = props.autoMinValue,
autoMinValue = _props$autoMinValue === void 0 ? false : _props$autoMinValue,
_props$curveType = props.curveType,
curveType = _props$curveType === void 0 ? 'linear' : _props$curveType,
minValue = props.minValue,
maxValue = props.maxValue,
_props$connectNulls = props.connectNulls,
connectNulls = _props$connectNulls === void 0 ? false : _props$connectNulls,
_props$allowDecimals = props.allowDecimals,
allowDecimals = _props$allowDecimals === void 0 ? true : _props$allowDecimals,
noDataText = props.noDataText,
className = props.className,
onValueChange = props.onValueChange,
_props$enableLegendSl = props.enableLegendSlider,
enableLegendSlider = _props$enableLegendSl === void 0 ? false : _props$enableLegendSl,
customTooltip = props.customTooltip,
rotateLabelX = props.rotateLabelX,
_props$tickGap = props.tickGap,
tickGap = _props$tickGap === void 0 ? 5 : _props$tickGap,
loading = props.loading,
xAxisLabel = props.xAxisLabel,
yAxisLabel = props.yAxisLabel,
_props$width = props.width,
width = _props$width === void 0 ? '100%' : _props$width,
_props$height = props.height,
height = _props$height === void 0 ? 280 : _props$height,
style = props.style,
customCategories = props.customCategories,
rest = _objectWithoutProperties(props, _excluded);
var _useState = useState(60),
_useState2 = _slicedToArray(_useState, 2),
legendHeight = _useState2[0],
setLegendHeight = _useState2[1];
var _useState3 = useState(),
_useState4 = _slicedToArray(_useState3, 2),
activeDot = _useState4[0],
setActiveDot = _useState4[1];
var _useState5 = useState(),
_useState6 = _slicedToArray(_useState5, 2),
activeLegend = _useState6[0],
setActiveLegend = _useState6[1];
var calculatedYAxisWidth = useMemo(function () {
if (yAxisWidth) return yAxisWidth;
return getMaxLabelLength({
data: data,
index: index,
margin: 16,
valueFormatter: valueFormatter
});
}, [yAxisWidth, data, valueFormatter, index]);
if (loading || !data) return /*#__PURE__*/_jsx(Skeleton.Button, {
active: true,
block: true,
style: {
height: height,
width: width
}
});
var CustomTooltip = customTooltip;
var paddingValue = !showXAxis && !showYAxis || startEndOnly && !showYAxis ? 0 : 20;
var categoryColors = constructCategoryColors(categories, colors);
var yAxisDomain = getYAxisDomain(autoMinValue, minValue, maxValue);
var hasOnValueChange = !!onValueChange;
var onDotClick = function onDotClick(itemData, event) {
event.stopPropagation();
if (!hasOnValueChange) return;
if (itemData.index === (activeDot === null || activeDot === void 0 ? void 0 : activeDot.index) && itemData.dataKey === (activeDot === null || activeDot === void 0 ? void 0 : activeDot.dataKey) || hasOnlyOneValueForThisKey(data, itemData.dataKey) && activeLegend && activeLegend === itemData.dataKey) {
setActiveLegend(undefined);
setActiveDot(undefined);
onValueChange === null || onValueChange === void 0 || onValueChange(null);
} else {
setActiveLegend(itemData.dataKey);
setActiveDot({
dataKey: itemData.dataKey,
index: itemData.index
});
onValueChange === null || onValueChange === void 0 || onValueChange(_objectSpread({
categoryClicked: itemData.dataKey,
eventType: 'dot'
}, itemData.payload));
}
};
var onCategoryClick = function onCategoryClick(dataKey) {
if (!hasOnValueChange) return;
if (dataKey === activeLegend && !activeDot || hasOnlyOneValueForThisKey(data, dataKey) && activeDot && activeDot.dataKey === dataKey) {
setActiveLegend(undefined);
onValueChange === null || onValueChange === void 0 || onValueChange(null);
} else {
setActiveLegend(dataKey);
onValueChange === null || onValueChange === void 0 || onValueChange({
categoryClicked: dataKey,
eventType: 'category'
});
}
setActiveDot(undefined);
};
return /*#__PURE__*/_jsx(Flexbox, _objectSpread(_objectSpread({
className: className,
height: height,
ref: ref,
style: _objectSpread({
position: 'relative'
}, style),
width: width
}, rest), {}, {
children: /*#__PURE__*/_jsx(ResponsiveContainer, {
children: data !== null && data !== void 0 && data.length ? /*#__PURE__*/_jsxs(ReChartsAreaChart, {
data: data,
margin: {
bottom: xAxisLabel ? 30 : undefined,
left: yAxisLabel ? 20 : undefined,
right: yAxisLabel ? 5 : undefined,
top: 5
},
onClick: hasOnValueChange && (activeLegend || activeDot) ? function () {
setActiveDot(undefined);
setActiveLegend(undefined);
onValueChange === null || onValueChange === void 0 || onValueChange(null);
} : undefined,
children: [showGridLines ? /*#__PURE__*/_jsx(CartesianGrid, {
className: styles.gridLines,
horizontal: true,
vertical: false
}) : undefined, /*#__PURE__*/_jsx(XAxis, {
angle: rotateLabelX === null || rotateLabelX === void 0 ? void 0 : rotateLabelX.angle,
axisLine: false,
className: styles.label,
dataKey: index,
dy: rotateLabelX === null || rotateLabelX === void 0 ? void 0 : rotateLabelX.verticalShift,
fill: "",
hide: !showXAxis,
interval: startEndOnly ? 'preserveStartEnd' : intervalType,
minTickGap: tickGap,
padding: {
left: paddingValue,
right: paddingValue
},
stroke: "",
tick: {
transform: 'translate(0, 6)'
},
tickFormatter: xAxisLabelFormatter,
tickLine: false,
ticks: startEndOnly ? [data[0][index], data.at(-1)[index]] : undefined,
children: xAxisLabel && /*#__PURE__*/_jsx(Label, {
className: cx(styles.strongLabel, styles.emphasis),
offset: -20,
position: "insideBottom",
children: xAxisLabel
})
}), /*#__PURE__*/_jsx(YAxis, {
allowDecimals: allowDecimals,
axisLine: false,
className: styles.label,
domain: yAxisDomain,
fill: "",
hide: !showYAxis,
stroke: "",
tick: function tick(props) {
return /*#__PURE__*/_jsx(CustomYAxisTick, _objectSpread(_objectSpread({}, props), {}, {
align: yAxisAlign,
formatter: valueFormatter,
textAnchor: yAxisAlign === 'left' ? 'start' : 'end',
yAxisLabel: Boolean(yAxisLabel)
}));
},
tickFormatter: valueFormatter,
tickLine: false,
type: "number",
width: calculatedYAxisWidth,
children: yAxisLabel && /*#__PURE__*/_jsx(Label, {
angle: -90,
className: cx(styles.strongLabel, styles.emphasis),
offset: -15,
position: "insideLeft",
style: {
textAnchor: 'middle'
},
children: yAxisLabel
})
}), /*#__PURE__*/_jsx(Tooltip, {
content: showTooltip ? function (_ref) {
var _ref2;
var active = _ref.active,
payload = _ref.payload,
label = _ref.label;
return CustomTooltip ? /*#__PURE__*/_jsx(CustomTooltip, {
active: active,
customCategories: customCategories,
label: label,
payload: (_ref2 = stack ? payload === null || payload === void 0 ? void 0 : payload.reverse() : payload) === null || _ref2 === void 0 ? void 0 : _ref2.map(function (payloadItem) {
var _categoryColors$get;
return _objectSpread(_objectSpread({}, payloadItem), {}, {
color: (_categoryColors$get = categoryColors.get(payloadItem.dataKey)) !== null && _categoryColors$get !== void 0 ? _categoryColors$get : theme.colorPrimary
});
}),
valueFormatter: valueFormatter
}) : /*#__PURE__*/_jsx(ChartTooltip, {
active: active,
categoryColors: categoryColors,
customCategories: customCategories,
label: label,
payload: stack ? payload === null || payload === void 0 ? void 0 : payload.reverse() : payload,
valueFormatter: valueFormatter
});
} : undefined,
cursor: {
stroke: theme.colorTextSecondary,
strokeWidth: 1
},
isAnimationActive: false,
position: {
y: 0
},
wrapperStyle: {
outline: 'none'
}
}), showLegend ? /*#__PURE__*/_jsx(Legend, {
content: function content(_ref3) {
var payload = _ref3.payload;
return ChartLegend({
payload: payload
}, categoryColors, setLegendHeight, activeLegend, hasOnValueChange ? function (clickedLegendItem) {
return onCategoryClick(clickedLegendItem);
} : undefined, enableLegendSlider, customCategories);
},
height: legendHeight,
verticalAlign: "top"
}) : undefined, categories.map(function (category) {
var _categoryColors$get2, _categoryColors$get3;
return /*#__PURE__*/_jsx("defs", {
children: showGradient ? /*#__PURE__*/_jsxs("linearGradient", {
className: cx(css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n color: ", ";\n "])), (_categoryColors$get2 = categoryColors.get(category)) !== null && _categoryColors$get2 !== void 0 ? _categoryColors$get2 : theme.colorPrimary)),
id: categoryColors.get(category),
x1: "0",
x2: "0",
y1: "0",
y2: "1",
children: [/*#__PURE__*/_jsx("stop", {
offset: "5%",
stopColor: "currentColor",
stopOpacity: activeDot || activeLegend && activeLegend !== category ? 0.15 : 0.4
}), /*#__PURE__*/_jsx("stop", {
offset: "95%",
stopColor: "currentColor",
stopOpacity: 0
})]
}) : /*#__PURE__*/_jsx("linearGradient", {
className: cx(css(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n color: ", ";\n "])), (_categoryColors$get3 = categoryColors.get(category)) !== null && _categoryColors$get3 !== void 0 ? _categoryColors$get3 : theme.colorPrimary)),
id: categoryColors.get(category),
x1: "0",
x2: "0",
y1: "0",
y2: "1",
children: /*#__PURE__*/_jsx("stop", {
stopColor: "currentColor",
stopOpacity: activeDot || activeLegend && activeLegend !== category ? 0.1 : 0.3
})
})
}, category);
}), categories.map(function (category) {
var _categoryColors$get5;
return /*#__PURE__*/_jsx(Area, {
activeDot: function activeDot(props) {
var _categoryColors$get4;
var dotCx = props.cx,
dotCy = props.cy,
stroke = props.stroke,
strokeLinecap = props.strokeLinecap,
strokeLinejoin = props.strokeLinejoin,
strokeWidth = props.strokeWidth,
dataKey = props.dataKey;
return /*#__PURE__*/_jsx(Dot, {
className: cx(css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n fill: ", ";\n "])), (_categoryColors$get4 = categoryColors.get(dataKey)) !== null && _categoryColors$get4 !== void 0 ? _categoryColors$get4 : theme.colorPrimary)),
cx: dotCx,
cy: dotCy,
fill: "",
onClick: function onClick(dotProps, event) {
return onDotClick(props, event);
},
r: 5,
stroke: stroke,
strokeLinecap: strokeLinecap,
strokeLinejoin: strokeLinejoin,
strokeWidth: strokeWidth
});
},
animationDuration: animationDuration,
className: cx(css(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n stroke: ", ";\n "])), (_categoryColors$get5 = categoryColors.get(category)) !== null && _categoryColors$get5 !== void 0 ? _categoryColors$get5 : theme.colorPrimary)),
connectNulls: connectNulls,
dataKey: category,
dot: function dot(props) {
var stroke = props.stroke,
strokeLinecap = props.strokeLinecap,
strokeLinejoin = props.strokeLinejoin,
strokeWidth = props.strokeWidth,
dotCx = props.cx,
dotCy = props.cy,
dataKey = props.dataKey,
index = props.index;
if (hasOnlyOneValueForThisKey(data, category) && !(activeDot || activeLegend && activeLegend !== category) || (activeDot === null || activeDot === void 0 ? void 0 : activeDot.index) === index && (activeDot === null || activeDot === void 0 ? void 0 : activeDot.dataKey) === category) {
var _categoryColors$get6;
return /*#__PURE__*/_jsx(Dot, {
className: cx(css(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n fill: ", ";\n "])), (_categoryColors$get6 = categoryColors.get(dataKey)) !== null && _categoryColors$get6 !== void 0 ? _categoryColors$get6 : theme.colorPrimary)),
cx: dotCx,
cy: dotCy,
fill: "",
r: 5,
stroke: stroke,
strokeLinecap: strokeLinecap,
strokeLinejoin: strokeLinejoin,
strokeWidth: strokeWidth,
style: {
cursor: onValueChange ? 'pointer' : undefined
}
}, index);
}
return /*#__PURE__*/_jsx(Fragment, {}, index);
},
fill: "url(#".concat(categoryColors.get(category), ")"),
isAnimationActive: showAnimation,
name: category,
stackId: stack ? 'a' : undefined,
stroke: "",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeOpacity: activeDot || activeLegend && activeLegend !== category ? 0.3 : 1,
strokeWidth: 2,
type: curveType
}, category);
}), onValueChange ? categories.map(function (category) {
return /*#__PURE__*/_jsx(Line, {
connectNulls: connectNulls,
dataKey: category,
fill: "transparent",
legendType: "none",
name: category,
onClick: function onClick(props, event) {
event.stopPropagation();
var name = props.name;
onCategoryClick(name);
},
stroke: "transparent",
strokeOpacity: 0,
strokeWidth: 12,
style: {
cursor: 'pointer'
},
tooltipType: "none",
type: curveType
}, category);
}) : undefined]
}) : /*#__PURE__*/_jsx(NoData, {
noDataText: noDataText
})
})
}));
});
AreaChart.displayName = 'AreaChart';
export default AreaChart;