@lobehub/charts
Version:
React modern charts components built on recharts
156 lines (155 loc) • 9.34 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;
var _excluded = ["data", "categories", "index", "stack", "colors", "showAnimation", "animationDuration", "showGradient", "curveType", "connectNulls", "noDataText", "autoMinValue", "loading", "minValue", "maxValue", "className", "width", "height", "style"];
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 _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 { forwardRef } from 'react';
import { Flexbox } from 'react-layout-kit';
import { Area, AreaChart as ReChartsAreaChart, ResponsiveContainer, XAxis, YAxis } from 'recharts';
import { useStyles } from "../AreaChart/styles";
import NoData from "../common/NoData";
import { constructCategoryColors, getYAxisDomain } from "../common/utils";
import { useThemeColorRange } from "../hooks/useThemeColorRange";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var SparkAreaChart = /*#__PURE__*/forwardRef(function (props, ref) {
var _useStyles = useStyles(),
cx = _useStyles.cx,
theme = _useStyles.theme;
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$showAnimation = props.showAnimation,
showAnimation = _props$showAnimation === void 0 ? false : _props$showAnimation,
_props$animationDurat = props.animationDuration,
animationDuration = _props$animationDurat === void 0 ? 900 : _props$animationDurat,
_props$showGradient = props.showGradient,
showGradient = _props$showGradient === void 0 ? true : _props$showGradient,
_props$curveType = props.curveType,
curveType = _props$curveType === void 0 ? 'linear' : _props$curveType,
_props$connectNulls = props.connectNulls,
connectNulls = _props$connectNulls === void 0 ? false : _props$connectNulls,
_props$noDataText = props.noDataText,
noDataText = _props$noDataText === void 0 ? /*#__PURE__*/_jsx("div", {}) : _props$noDataText,
_props$autoMinValue = props.autoMinValue,
autoMinValue = _props$autoMinValue === void 0 ? false : _props$autoMinValue,
loading = props.loading,
minValue = props.minValue,
maxValue = props.maxValue,
className = props.className,
_props$width = props.width,
width = _props$width === void 0 ? 112 : _props$width,
_props$height = props.height,
height = _props$height === void 0 ? 48 : _props$height,
style = props.style,
rest = _objectWithoutProperties(props, _excluded);
if (loading || !data) return /*#__PURE__*/_jsx(Skeleton.Button, {
active: true,
block: true,
style: {
height: height,
width: width
}
});
var categoryColors = constructCategoryColors(categories, colors);
var yAxisDomain = getYAxisDomain(autoMinValue, minValue, maxValue);
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: 1,
left: 1,
right: 1,
top: 1
},
children: [/*#__PURE__*/_jsx(YAxis, {
domain: yAxisDomain,
hide: true
}), /*#__PURE__*/_jsx(XAxis, {
dataKey: index,
hide: true
}), categories.map(function (category) {
var _categoryColors$get, _categoryColors$get2;
return /*#__PURE__*/_jsx("defs", {
children: showGradient ? /*#__PURE__*/_jsxs("linearGradient", {
className: cx(css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n color: ", ";\n "])), (_categoryColors$get = categoryColors.get(category)) !== null && _categoryColors$get !== void 0 ? _categoryColors$get : theme.colorPrimary)),
id: categoryColors.get(category),
x1: "0",
x2: "0",
y1: "0",
y2: "1",
children: [/*#__PURE__*/_jsx("stop", {
offset: "5%",
stopColor: "currentColor",
stopOpacity: 0.4
}), /*#__PURE__*/_jsx("stop", {
offset: "95%",
stopColor: "currentColor",
stopOpacity: 0
})]
}) : /*#__PURE__*/_jsx("linearGradient", {
className: cx(css(_templateObject2 || (_templateObject2 = _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", {
stopColor: "currentColor",
stopOpacity: 0.3
})
})
}, category);
}), categories.map(function (category) {
var _categoryColors$get3;
return /*#__PURE__*/_jsx(Area, {
animationDuration: animationDuration,
className: cx(css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n stroke: ", ";\n "])), (_categoryColors$get3 = categoryColors.get(category)) !== null && _categoryColors$get3 !== void 0 ? _categoryColors$get3 : theme.colorPrimary)),
connectNulls: connectNulls,
dataKey: category,
dot: false,
fill: "url(#".concat(categoryColors.get(category), ")"),
isAnimationActive: showAnimation,
name: category,
stackId: stack ? 'a' : undefined,
stroke: "",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeOpacity: 1,
strokeWidth: 2,
type: curveType
}, category);
})]
}) : /*#__PURE__*/_jsx(NoData, {
noDataText: noDataText
})
})
}));
});
SparkAreaChart.displayName = 'AreaChart';
export default SparkAreaChart;