754 lines
24 KiB
JavaScript
754 lines
24 KiB
JavaScript
var _excluded = ["id"],
|
|
_excluded2 = ["activeDot", "animationBegin", "animationDuration", "animationEasing", "connectNulls", "dot", "fill", "fillOpacity", "hide", "isAnimationActive", "legendType", "stroke", "xAxisId", "yAxisId"];
|
|
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 _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
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; }
|
|
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(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : 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); }
|
|
import * as React from 'react';
|
|
import { PureComponent, useCallback, useRef, useState } from 'react';
|
|
import { clsx } from 'clsx';
|
|
import { Curve } from '../shape/Curve';
|
|
import { Layer } from '../container/Layer';
|
|
import { CartesianLabelListContextProvider, LabelListFromLabelProp } from '../component/LabelList';
|
|
import { Dots } from '../component/Dots';
|
|
import { Global } from '../util/Global';
|
|
import { interpolate, isNan, isNullish, isNumber } from '../util/DataUtils';
|
|
import { getCateCoordinateOfLine, getNormalizedStackId, getTooltipNameProp, getValueByDataKey } from '../util/ChartUtils';
|
|
import { isClipDot } from '../util/ReactUtils';
|
|
import { ActivePoints } from '../component/ActivePoints';
|
|
import { SetTooltipEntrySettings } from '../state/SetTooltipEntrySettings';
|
|
import { GraphicalItemClipPath, useNeedsClip } from './GraphicalItemClipPath';
|
|
import { selectArea } from '../state/selectors/areaSelectors';
|
|
import { useIsPanorama } from '../context/PanoramaContext';
|
|
import { useChartLayout } from '../context/chartLayoutContext';
|
|
import { useChartName } from '../state/selectors/selectors';
|
|
import { SetLegendPayload } from '../state/SetLegendPayload';
|
|
import { useAppSelector } from '../state/hooks';
|
|
import { useAnimationId } from '../util/useAnimationId';
|
|
import { resolveDefaultProps } from '../util/resolveDefaultProps';
|
|
import { isWellBehavedNumber } from '../util/isWellBehavedNumber';
|
|
import { usePlotArea } from '../hooks';
|
|
import { RegisterGraphicalItemId } from '../context/RegisterGraphicalItemId';
|
|
import { SetCartesianGraphicalItem } from '../state/SetGraphicalItem';
|
|
import { svgPropertiesNoEvents } from '../util/svgPropertiesNoEvents';
|
|
import { JavascriptAnimate } from '../animation/JavascriptAnimate';
|
|
import { getRadiusAndStrokeWidthFromDot } from '../util/getRadiusAndStrokeWidthFromDot';
|
|
import { svgPropertiesAndEvents } from '../util/svgPropertiesAndEvents';
|
|
import { ZIndexLayer } from '../zIndex/ZIndexLayer';
|
|
import { DefaultZIndexes } from '../zIndex/DefaultZIndexes';
|
|
|
|
/**
|
|
* Internal props, combination of external props + defaultProps + private Recharts state
|
|
*/
|
|
|
|
/**
|
|
* External props, intended for end users to fill in
|
|
*/
|
|
|
|
/**
|
|
* Because of naming conflict, we are forced to ignore certain (valid) SVG attributes.
|
|
*/
|
|
|
|
function getLegendItemColor(stroke, fill) {
|
|
return stroke && stroke !== 'none' ? stroke : fill;
|
|
}
|
|
var computeLegendPayloadFromAreaData = props => {
|
|
var {
|
|
dataKey,
|
|
name,
|
|
stroke,
|
|
fill,
|
|
legendType,
|
|
hide
|
|
} = props;
|
|
return [{
|
|
inactive: hide,
|
|
dataKey,
|
|
type: legendType,
|
|
color: getLegendItemColor(stroke, fill),
|
|
value: getTooltipNameProp(name, dataKey),
|
|
payload: props
|
|
}];
|
|
};
|
|
function getTooltipEntrySettings(props) {
|
|
var {
|
|
dataKey,
|
|
data,
|
|
stroke,
|
|
strokeWidth,
|
|
fill,
|
|
name,
|
|
hide,
|
|
unit
|
|
} = props;
|
|
return {
|
|
dataDefinedOnItem: data,
|
|
positions: undefined,
|
|
settings: {
|
|
stroke,
|
|
strokeWidth,
|
|
fill,
|
|
dataKey,
|
|
nameKey: undefined,
|
|
name: getTooltipNameProp(name, dataKey),
|
|
hide,
|
|
type: props.tooltipType,
|
|
color: getLegendItemColor(stroke, fill),
|
|
unit
|
|
}
|
|
};
|
|
}
|
|
function AreaDotsWrapper(_ref) {
|
|
var {
|
|
clipPathId,
|
|
points,
|
|
props
|
|
} = _ref;
|
|
var {
|
|
needClip,
|
|
dot,
|
|
dataKey
|
|
} = props;
|
|
var areaProps = svgPropertiesNoEvents(props);
|
|
return /*#__PURE__*/React.createElement(Dots, {
|
|
points: points,
|
|
dot: dot,
|
|
className: "recharts-area-dots",
|
|
dotClassName: "recharts-area-dot",
|
|
dataKey: dataKey,
|
|
baseProps: areaProps,
|
|
needClip: needClip,
|
|
clipPathId: clipPathId
|
|
});
|
|
}
|
|
function AreaLabelListProvider(_ref2) {
|
|
var {
|
|
showLabels,
|
|
children,
|
|
points
|
|
} = _ref2;
|
|
var labelListEntries = points.map(point => {
|
|
var _point$x, _point$y;
|
|
var viewBox = {
|
|
x: (_point$x = point.x) !== null && _point$x !== void 0 ? _point$x : 0,
|
|
y: (_point$y = point.y) !== null && _point$y !== void 0 ? _point$y : 0,
|
|
width: 0,
|
|
lowerWidth: 0,
|
|
upperWidth: 0,
|
|
height: 0
|
|
};
|
|
return _objectSpread(_objectSpread({}, viewBox), {}, {
|
|
value: point.value,
|
|
payload: point.payload,
|
|
parentViewBox: undefined,
|
|
viewBox,
|
|
fill: undefined
|
|
});
|
|
});
|
|
return /*#__PURE__*/React.createElement(CartesianLabelListContextProvider, {
|
|
value: showLabels ? labelListEntries : undefined
|
|
}, children);
|
|
}
|
|
function StaticArea(_ref3) {
|
|
var {
|
|
points,
|
|
baseLine,
|
|
needClip,
|
|
clipPathId,
|
|
props
|
|
} = _ref3;
|
|
var {
|
|
layout,
|
|
type,
|
|
stroke,
|
|
connectNulls,
|
|
isRange
|
|
} = props;
|
|
var {
|
|
id
|
|
} = props,
|
|
propsWithoutId = _objectWithoutProperties(props, _excluded);
|
|
var allOtherProps = svgPropertiesNoEvents(propsWithoutId);
|
|
var propsWithEvents = svgPropertiesAndEvents(propsWithoutId);
|
|
return /*#__PURE__*/React.createElement(React.Fragment, null, (points === null || points === void 0 ? void 0 : points.length) > 1 && /*#__PURE__*/React.createElement(Layer, {
|
|
clipPath: needClip ? "url(#clipPath-".concat(clipPathId, ")") : undefined
|
|
}, /*#__PURE__*/React.createElement(Curve, _extends({}, propsWithEvents, {
|
|
id: id,
|
|
points: points,
|
|
connectNulls: connectNulls,
|
|
type: type,
|
|
baseLine: baseLine,
|
|
layout: layout,
|
|
stroke: "none",
|
|
className: "recharts-area-area"
|
|
})), stroke !== 'none' && /*#__PURE__*/React.createElement(Curve, _extends({}, allOtherProps, {
|
|
className: "recharts-area-curve",
|
|
layout: layout,
|
|
type: type,
|
|
connectNulls: connectNulls,
|
|
fill: "none",
|
|
points: points
|
|
})), stroke !== 'none' && isRange && /*#__PURE__*/React.createElement(Curve, _extends({}, allOtherProps, {
|
|
className: "recharts-area-curve",
|
|
layout: layout,
|
|
type: type,
|
|
connectNulls: connectNulls,
|
|
fill: "none",
|
|
points: baseLine
|
|
}))), /*#__PURE__*/React.createElement(AreaDotsWrapper, {
|
|
points: points,
|
|
props: propsWithoutId,
|
|
clipPathId: clipPathId
|
|
}));
|
|
}
|
|
function VerticalRect(_ref4) {
|
|
var {
|
|
alpha,
|
|
baseLine,
|
|
points,
|
|
strokeWidth
|
|
} = _ref4;
|
|
var startY = points[0].y;
|
|
var endY = points[points.length - 1].y;
|
|
if (!isWellBehavedNumber(startY) || !isWellBehavedNumber(endY)) {
|
|
return null;
|
|
}
|
|
var height = alpha * Math.abs(startY - endY);
|
|
var maxX = Math.max(...points.map(entry => entry.x || 0));
|
|
if (isNumber(baseLine)) {
|
|
maxX = Math.max(baseLine, maxX);
|
|
} else if (baseLine && Array.isArray(baseLine) && baseLine.length) {
|
|
maxX = Math.max(...baseLine.map(entry => entry.x || 0), maxX);
|
|
}
|
|
if (isNumber(maxX)) {
|
|
return /*#__PURE__*/React.createElement("rect", {
|
|
x: 0,
|
|
y: startY < endY ? startY : startY - height,
|
|
width: maxX + (strokeWidth ? parseInt("".concat(strokeWidth), 10) : 1),
|
|
height: Math.floor(height)
|
|
});
|
|
}
|
|
return null;
|
|
}
|
|
function HorizontalRect(_ref5) {
|
|
var {
|
|
alpha,
|
|
baseLine,
|
|
points,
|
|
strokeWidth
|
|
} = _ref5;
|
|
var startX = points[0].x;
|
|
var endX = points[points.length - 1].x;
|
|
if (!isWellBehavedNumber(startX) || !isWellBehavedNumber(endX)) {
|
|
return null;
|
|
}
|
|
var width = alpha * Math.abs(startX - endX);
|
|
var maxY = Math.max(...points.map(entry => entry.y || 0));
|
|
if (isNumber(baseLine)) {
|
|
maxY = Math.max(baseLine, maxY);
|
|
} else if (baseLine && Array.isArray(baseLine) && baseLine.length) {
|
|
maxY = Math.max(...baseLine.map(entry => entry.y || 0), maxY);
|
|
}
|
|
if (isNumber(maxY)) {
|
|
return /*#__PURE__*/React.createElement("rect", {
|
|
x: startX < endX ? startX : startX - width,
|
|
y: 0,
|
|
width: width,
|
|
height: Math.floor(maxY + (strokeWidth ? parseInt("".concat(strokeWidth), 10) : 1))
|
|
});
|
|
}
|
|
return null;
|
|
}
|
|
function ClipRect(_ref6) {
|
|
var {
|
|
alpha,
|
|
layout,
|
|
points,
|
|
baseLine,
|
|
strokeWidth
|
|
} = _ref6;
|
|
if (layout === 'vertical') {
|
|
return /*#__PURE__*/React.createElement(VerticalRect, {
|
|
alpha: alpha,
|
|
points: points,
|
|
baseLine: baseLine,
|
|
strokeWidth: strokeWidth
|
|
});
|
|
}
|
|
return /*#__PURE__*/React.createElement(HorizontalRect, {
|
|
alpha: alpha,
|
|
points: points,
|
|
baseLine: baseLine,
|
|
strokeWidth: strokeWidth
|
|
});
|
|
}
|
|
function AreaWithAnimation(_ref7) {
|
|
var {
|
|
needClip,
|
|
clipPathId,
|
|
props,
|
|
previousPointsRef,
|
|
previousBaselineRef
|
|
} = _ref7;
|
|
var {
|
|
points,
|
|
baseLine,
|
|
isAnimationActive,
|
|
animationBegin,
|
|
animationDuration,
|
|
animationEasing,
|
|
onAnimationStart,
|
|
onAnimationEnd
|
|
} = props;
|
|
var animationId = useAnimationId(props, 'recharts-area-');
|
|
var [isAnimating, setIsAnimating] = useState(false);
|
|
var showLabels = !isAnimating;
|
|
var handleAnimationEnd = useCallback(() => {
|
|
if (typeof onAnimationEnd === 'function') {
|
|
onAnimationEnd();
|
|
}
|
|
setIsAnimating(false);
|
|
}, [onAnimationEnd]);
|
|
var handleAnimationStart = useCallback(() => {
|
|
if (typeof onAnimationStart === 'function') {
|
|
onAnimationStart();
|
|
}
|
|
setIsAnimating(true);
|
|
}, [onAnimationStart]);
|
|
var prevPoints = previousPointsRef.current;
|
|
var prevBaseLine = previousBaselineRef.current;
|
|
return /*#__PURE__*/React.createElement(AreaLabelListProvider, {
|
|
showLabels: showLabels,
|
|
points: points
|
|
}, props.children, /*#__PURE__*/React.createElement(JavascriptAnimate, {
|
|
animationId: animationId,
|
|
begin: animationBegin,
|
|
duration: animationDuration,
|
|
isActive: isAnimationActive,
|
|
easing: animationEasing,
|
|
onAnimationEnd: handleAnimationEnd,
|
|
onAnimationStart: handleAnimationStart,
|
|
key: animationId
|
|
}, t => {
|
|
if (prevPoints) {
|
|
var prevPointsDiffFactor = prevPoints.length / points.length;
|
|
var stepPoints =
|
|
/*
|
|
* Here it is important that at the very end of the animation, on the last frame,
|
|
* we render the original points without any interpolation.
|
|
* This is needed because the code above is checking for reference equality to decide if the animation should run
|
|
* and if we create a new array instance (even if the numbers were the same)
|
|
* then we would break animations.
|
|
*/
|
|
t === 1 ? points : points.map((entry, index) => {
|
|
var prevPointIndex = Math.floor(index * prevPointsDiffFactor);
|
|
if (prevPoints[prevPointIndex]) {
|
|
var prev = prevPoints[prevPointIndex];
|
|
return _objectSpread(_objectSpread({}, entry), {}, {
|
|
x: interpolate(prev.x, entry.x, t),
|
|
y: interpolate(prev.y, entry.y, t)
|
|
});
|
|
}
|
|
return entry;
|
|
});
|
|
var stepBaseLine;
|
|
if (isNumber(baseLine)) {
|
|
stepBaseLine = interpolate(prevBaseLine, baseLine, t);
|
|
} else if (isNullish(baseLine) || isNan(baseLine)) {
|
|
stepBaseLine = interpolate(prevBaseLine, 0, t);
|
|
} else {
|
|
stepBaseLine = baseLine.map((entry, index) => {
|
|
var prevPointIndex = Math.floor(index * prevPointsDiffFactor);
|
|
if (Array.isArray(prevBaseLine) && prevBaseLine[prevPointIndex]) {
|
|
var prev = prevBaseLine[prevPointIndex];
|
|
return _objectSpread(_objectSpread({}, entry), {}, {
|
|
x: interpolate(prev.x, entry.x, t),
|
|
y: interpolate(prev.y, entry.y, t)
|
|
});
|
|
}
|
|
return entry;
|
|
});
|
|
}
|
|
if (t > 0) {
|
|
/*
|
|
* We need to keep the refs in the parent component because we need to remember the last shape of the animation
|
|
* even if AreaWithAnimation is unmounted as that happens when changing props.
|
|
*
|
|
* And we need to update the refs here because here is where the interpolation is computed.
|
|
* Eslint doesn't like changing function arguments, but we need it so here is an eslint-disable.
|
|
*/
|
|
// eslint-disable-next-line no-param-reassign
|
|
previousPointsRef.current = stepPoints;
|
|
// eslint-disable-next-line no-param-reassign
|
|
previousBaselineRef.current = stepBaseLine;
|
|
}
|
|
return /*#__PURE__*/React.createElement(StaticArea, {
|
|
points: stepPoints,
|
|
baseLine: stepBaseLine,
|
|
needClip: needClip,
|
|
clipPathId: clipPathId,
|
|
props: props
|
|
});
|
|
}
|
|
if (t > 0) {
|
|
// eslint-disable-next-line no-param-reassign
|
|
previousPointsRef.current = points;
|
|
// eslint-disable-next-line no-param-reassign
|
|
previousBaselineRef.current = baseLine;
|
|
}
|
|
return /*#__PURE__*/React.createElement(Layer, null, isAnimationActive && /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
id: "animationClipPath-".concat(clipPathId)
|
|
}, /*#__PURE__*/React.createElement(ClipRect, {
|
|
alpha: t,
|
|
points: points,
|
|
baseLine: baseLine,
|
|
layout: props.layout,
|
|
strokeWidth: props.strokeWidth
|
|
}))), /*#__PURE__*/React.createElement(Layer, {
|
|
clipPath: "url(#animationClipPath-".concat(clipPathId, ")")
|
|
}, /*#__PURE__*/React.createElement(StaticArea, {
|
|
points: points,
|
|
baseLine: baseLine,
|
|
needClip: needClip,
|
|
clipPathId: clipPathId,
|
|
props: props
|
|
})));
|
|
}), /*#__PURE__*/React.createElement(LabelListFromLabelProp, {
|
|
label: props.label
|
|
}));
|
|
}
|
|
|
|
/*
|
|
* This components decides if the area should be animated or not.
|
|
* It also holds the state of the animation.
|
|
*/
|
|
function RenderArea(_ref8) {
|
|
var {
|
|
needClip,
|
|
clipPathId,
|
|
props
|
|
} = _ref8;
|
|
/*
|
|
* These two must be refs, not state!
|
|
* Because we want to store the most recent shape of the animation in case we have to interrupt the animation;
|
|
* that happens when user initiates another animation before the current one finishes.
|
|
*
|
|
* If this was a useState, then every step in the animation would trigger a re-render.
|
|
* So, useRef it is.
|
|
*/
|
|
var previousPointsRef = useRef(null);
|
|
var previousBaselineRef = useRef();
|
|
return /*#__PURE__*/React.createElement(AreaWithAnimation, {
|
|
needClip: needClip,
|
|
clipPathId: clipPathId,
|
|
props: props,
|
|
previousPointsRef: previousPointsRef,
|
|
previousBaselineRef: previousBaselineRef
|
|
});
|
|
}
|
|
class AreaWithState extends PureComponent {
|
|
render() {
|
|
var {
|
|
hide,
|
|
dot,
|
|
points,
|
|
className,
|
|
top,
|
|
left,
|
|
needClip,
|
|
xAxisId,
|
|
yAxisId,
|
|
width,
|
|
height,
|
|
id,
|
|
baseLine,
|
|
zIndex
|
|
} = this.props;
|
|
if (hide) {
|
|
return null;
|
|
}
|
|
var layerClass = clsx('recharts-area', className);
|
|
var clipPathId = id;
|
|
var {
|
|
r,
|
|
strokeWidth
|
|
} = getRadiusAndStrokeWidthFromDot(dot);
|
|
var clipDot = isClipDot(dot);
|
|
var dotSize = r * 2 + strokeWidth;
|
|
return /*#__PURE__*/React.createElement(ZIndexLayer, {
|
|
zIndex: zIndex
|
|
}, /*#__PURE__*/React.createElement(Layer, {
|
|
className: layerClass
|
|
}, needClip && /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement(GraphicalItemClipPath, {
|
|
clipPathId: clipPathId,
|
|
xAxisId: xAxisId,
|
|
yAxisId: yAxisId
|
|
}), !clipDot && /*#__PURE__*/React.createElement("clipPath", {
|
|
id: "clipPath-dots-".concat(clipPathId)
|
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
x: left - dotSize / 2,
|
|
y: top - dotSize / 2,
|
|
width: width + dotSize,
|
|
height: height + dotSize
|
|
}))), /*#__PURE__*/React.createElement(RenderArea, {
|
|
needClip: needClip,
|
|
clipPathId: clipPathId,
|
|
props: this.props
|
|
})), /*#__PURE__*/React.createElement(ActivePoints, {
|
|
points: points,
|
|
mainColor: getLegendItemColor(this.props.stroke, this.props.fill),
|
|
itemDataKey: this.props.dataKey,
|
|
activeDot: this.props.activeDot
|
|
}), this.props.isRange && Array.isArray(baseLine) && /*#__PURE__*/React.createElement(ActivePoints, {
|
|
points: baseLine,
|
|
mainColor: getLegendItemColor(this.props.stroke, this.props.fill),
|
|
itemDataKey: this.props.dataKey,
|
|
activeDot: this.props.activeDot
|
|
}));
|
|
}
|
|
}
|
|
var defaultAreaProps = {
|
|
activeDot: true,
|
|
animationBegin: 0,
|
|
animationDuration: 1500,
|
|
animationEasing: 'ease',
|
|
connectNulls: false,
|
|
dot: false,
|
|
fill: '#3182bd',
|
|
fillOpacity: 0.6,
|
|
hide: false,
|
|
isAnimationActive: !Global.isSsr,
|
|
legendType: 'line',
|
|
stroke: '#3182bd',
|
|
xAxisId: 0,
|
|
yAxisId: 0,
|
|
zIndex: DefaultZIndexes.area
|
|
};
|
|
function AreaImpl(props) {
|
|
var _useAppSelector;
|
|
var _resolveDefaultProps = resolveDefaultProps(props, defaultAreaProps),
|
|
{
|
|
activeDot,
|
|
animationBegin,
|
|
animationDuration,
|
|
animationEasing,
|
|
connectNulls,
|
|
dot,
|
|
fill,
|
|
fillOpacity,
|
|
hide,
|
|
isAnimationActive,
|
|
legendType,
|
|
stroke,
|
|
xAxisId,
|
|
yAxisId
|
|
} = _resolveDefaultProps,
|
|
everythingElse = _objectWithoutProperties(_resolveDefaultProps, _excluded2);
|
|
var layout = useChartLayout();
|
|
var chartName = useChartName();
|
|
var {
|
|
needClip
|
|
} = useNeedsClip(xAxisId, yAxisId);
|
|
var isPanorama = useIsPanorama();
|
|
var {
|
|
points,
|
|
isRange,
|
|
baseLine
|
|
} = (_useAppSelector = useAppSelector(state => selectArea(state, xAxisId, yAxisId, isPanorama, props.id))) !== null && _useAppSelector !== void 0 ? _useAppSelector : {};
|
|
var plotArea = usePlotArea();
|
|
if (layout !== 'horizontal' && layout !== 'vertical' || plotArea == null) {
|
|
// Can't render Area in an unsupported layout
|
|
return null;
|
|
}
|
|
if (chartName !== 'AreaChart' && chartName !== 'ComposedChart') {
|
|
// There is nothing stopping us from rendering Area in other charts, except for historical reasons. Do we want to allow that?
|
|
return null;
|
|
}
|
|
var {
|
|
height,
|
|
width,
|
|
x: left,
|
|
y: top
|
|
} = plotArea;
|
|
if (!points || !points.length) {
|
|
return null;
|
|
}
|
|
return /*#__PURE__*/React.createElement(AreaWithState, _extends({}, everythingElse, {
|
|
activeDot: activeDot,
|
|
animationBegin: animationBegin,
|
|
animationDuration: animationDuration,
|
|
animationEasing: animationEasing,
|
|
baseLine: baseLine,
|
|
connectNulls: connectNulls,
|
|
dot: dot,
|
|
fill: fill,
|
|
fillOpacity: fillOpacity,
|
|
height: height,
|
|
hide: hide,
|
|
layout: layout,
|
|
isAnimationActive: isAnimationActive,
|
|
isRange: isRange,
|
|
legendType: legendType,
|
|
needClip: needClip,
|
|
points: points,
|
|
stroke: stroke,
|
|
width: width,
|
|
left: left,
|
|
top: top,
|
|
xAxisId: xAxisId,
|
|
yAxisId: yAxisId
|
|
}));
|
|
}
|
|
export var getBaseValue = (layout, chartBaseValue, itemBaseValue, xAxis, yAxis) => {
|
|
// The baseValue can be defined both on the AreaChart, and on the Area.
|
|
// The value for the item takes precedence.
|
|
var baseValue = itemBaseValue !== null && itemBaseValue !== void 0 ? itemBaseValue : chartBaseValue;
|
|
if (isNumber(baseValue)) {
|
|
return baseValue;
|
|
}
|
|
var numericAxis = layout === 'horizontal' ? yAxis : xAxis;
|
|
// @ts-expect-error d3scale .domain() returns unknown, Math.max expects number
|
|
var domain = numericAxis.scale.domain();
|
|
if (numericAxis.type === 'number') {
|
|
var domainMax = Math.max(domain[0], domain[1]);
|
|
var domainMin = Math.min(domain[0], domain[1]);
|
|
if (baseValue === 'dataMin') {
|
|
return domainMin;
|
|
}
|
|
if (baseValue === 'dataMax') {
|
|
return domainMax;
|
|
}
|
|
return domainMax < 0 ? domainMax : Math.max(Math.min(domain[0], domain[1]), 0);
|
|
}
|
|
if (baseValue === 'dataMin') {
|
|
return domain[0];
|
|
}
|
|
if (baseValue === 'dataMax') {
|
|
return domain[1];
|
|
}
|
|
return domain[0];
|
|
};
|
|
export function computeArea(_ref9) {
|
|
var {
|
|
areaSettings: {
|
|
connectNulls,
|
|
baseValue: itemBaseValue,
|
|
dataKey
|
|
},
|
|
stackedData,
|
|
layout,
|
|
chartBaseValue,
|
|
xAxis,
|
|
yAxis,
|
|
displayedData,
|
|
dataStartIndex,
|
|
xAxisTicks,
|
|
yAxisTicks,
|
|
bandSize
|
|
} = _ref9;
|
|
var hasStack = stackedData && stackedData.length;
|
|
var baseValue = getBaseValue(layout, chartBaseValue, itemBaseValue, xAxis, yAxis);
|
|
var isHorizontalLayout = layout === 'horizontal';
|
|
var isRange = false;
|
|
var points = displayedData.map((entry, index) => {
|
|
var value;
|
|
if (hasStack) {
|
|
value = stackedData[dataStartIndex + index];
|
|
} else {
|
|
value = getValueByDataKey(entry, dataKey);
|
|
if (!Array.isArray(value)) {
|
|
value = [baseValue, value];
|
|
} else {
|
|
isRange = true;
|
|
}
|
|
}
|
|
var isBreakPoint = value[1] == null || hasStack && !connectNulls && getValueByDataKey(entry, dataKey) == null;
|
|
if (isHorizontalLayout) {
|
|
return {
|
|
x: getCateCoordinateOfLine({
|
|
axis: xAxis,
|
|
ticks: xAxisTicks,
|
|
bandSize,
|
|
entry,
|
|
index
|
|
}),
|
|
y: isBreakPoint ? null : yAxis.scale(value[1]),
|
|
value,
|
|
payload: entry
|
|
};
|
|
}
|
|
return {
|
|
x: isBreakPoint ? null : xAxis.scale(value[1]),
|
|
y: getCateCoordinateOfLine({
|
|
axis: yAxis,
|
|
ticks: yAxisTicks,
|
|
bandSize,
|
|
entry,
|
|
index
|
|
}),
|
|
value,
|
|
payload: entry
|
|
};
|
|
});
|
|
var baseLine;
|
|
if (hasStack || isRange) {
|
|
baseLine = points.map(entry => {
|
|
var x = Array.isArray(entry.value) ? entry.value[0] : null;
|
|
if (isHorizontalLayout) {
|
|
return {
|
|
x: entry.x,
|
|
y: x != null && entry.y != null ? yAxis.scale(x) : null,
|
|
payload: entry.payload
|
|
};
|
|
}
|
|
return {
|
|
x: x != null ? xAxis.scale(x) : null,
|
|
y: entry.y,
|
|
payload: entry.payload
|
|
};
|
|
});
|
|
} else {
|
|
baseLine = isHorizontalLayout ? yAxis.scale(baseValue) : xAxis.scale(baseValue);
|
|
}
|
|
return {
|
|
points,
|
|
baseLine,
|
|
isRange
|
|
};
|
|
}
|
|
function AreaFn(outsideProps) {
|
|
var props = resolveDefaultProps(outsideProps, defaultAreaProps);
|
|
var isPanorama = useIsPanorama();
|
|
// Report all props to Redux store first, before calling any hooks, to avoid circular dependencies.
|
|
return /*#__PURE__*/React.createElement(RegisterGraphicalItemId, {
|
|
id: props.id,
|
|
type: "area"
|
|
}, id => /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(SetLegendPayload, {
|
|
legendPayload: computeLegendPayloadFromAreaData(props)
|
|
}), /*#__PURE__*/React.createElement(SetTooltipEntrySettings, {
|
|
fn: getTooltipEntrySettings,
|
|
args: props
|
|
}), /*#__PURE__*/React.createElement(SetCartesianGraphicalItem, {
|
|
type: "area",
|
|
id: id,
|
|
data: props.data,
|
|
dataKey: props.dataKey,
|
|
xAxisId: props.xAxisId,
|
|
yAxisId: props.yAxisId,
|
|
zAxisId: 0,
|
|
stackId: getNormalizedStackId(props.stackId),
|
|
hide: props.hide,
|
|
barSize: undefined,
|
|
baseValue: props.baseValue,
|
|
isPanorama: isPanorama,
|
|
connectNulls: props.connectNulls
|
|
}), /*#__PURE__*/React.createElement(AreaImpl, _extends({}, props, {
|
|
id: id
|
|
}))));
|
|
}
|
|
export var Area = /*#__PURE__*/React.memo(AreaFn);
|
|
Area.displayName = 'Area'; |