UNPKG

recharts

Version:
556 lines (459 loc) 23.4 kB
"use strict"; function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } Object.defineProperty(exports, "__esModule", { value: true }); exports.Line = void 0; var _isEqual2 = _interopRequireDefault(require("lodash/isEqual")); var _isFunction2 = _interopRequireDefault(require("lodash/isFunction")); var _isNil2 = _interopRequireDefault(require("lodash/isNil")); var _react = _interopRequireWildcard(require("react")); var _reactSmooth = _interopRequireDefault(require("react-smooth")); var _classnames = _interopRequireDefault(require("classnames")); var _Curve = require("../shape/Curve"); var _Dot = require("../shape/Dot"); var _Layer = require("../container/Layer"); var _LabelList = require("../component/LabelList"); var _ErrorBar = require("./ErrorBar"); var _DataUtils = require("../util/DataUtils"); var _ReactUtils = require("../util/ReactUtils"); var _Global = require("../util/Global"); var _ChartUtils = require("../util/ChartUtils"); var _types = require("../util/types"); function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 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 _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } 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" && Symbol.iterator in Object(iter)) 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 _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } var Line = /*#__PURE__*/function (_PureComponent) { _inherits(Line, _PureComponent); var _super = _createSuper(Line); function Line() { var _this; _classCallCheck(this, Line); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _super.call.apply(_super, [this].concat(args)); _this.mainCurve = void 0; _this.state = { isAnimationFinished: true, totalLength: 0 }; _this.getStrokeDasharray = function (length, totalLength, lines) { var lineLength = lines.reduce(function (pre, next) { return pre + next; }); var count = Math.floor(length / lineLength); var remainLength = length % lineLength; var restLength = totalLength - length; var remainLines = []; for (var i = 0, sum = 0;; sum += lines[i], ++i) { if (sum + lines[i] > remainLength) { remainLines = [].concat(_toConsumableArray(lines.slice(0, i)), [remainLength - sum]); break; } } var emptyLines = remainLines.length % 2 === 0 ? [0, restLength] : [restLength]; return [].concat(_toConsumableArray(Line.repeat(lines, count)), _toConsumableArray(remainLines), emptyLines).map(function (line) { return "".concat(line, "px"); }).join(', '); }; _this.id = (0, _DataUtils.uniqueId)('recharts-line-'); _this.pathRef = function (node) { _this.mainCurve = node; }; _this.handleAnimationEnd = function () { _this.setState({ isAnimationFinished: true }); if (_this.props.onAnimationEnd) { _this.props.onAnimationEnd(); } }; _this.handleAnimationStart = function () { _this.setState({ isAnimationFinished: false }); if (_this.props.onAnimationStart) { _this.props.onAnimationStart(); } }; return _this; } _createClass(Line, [{ key: "componentDidMount", value: /* eslint-disable react/no-did-mount-set-state */ function componentDidMount() { if (!this.props.isAnimationActive) { return; } var totalLength = this.getTotalLength(); this.setState({ totalLength: totalLength }); } }, { key: "getTotalLength", value: function getTotalLength() { var curveDom = this.mainCurve; try { return curveDom && curveDom.getTotalLength && curveDom.getTotalLength() || 0; } catch (err) { return 0; } } }, { key: "renderErrorBar", value: function renderErrorBar() { if (this.props.isAnimationActive && !this.state.isAnimationFinished) { return null; } var _this$props = this.props, points = _this$props.points, xAxis = _this$props.xAxis, yAxis = _this$props.yAxis, layout = _this$props.layout, children = _this$props.children; var errorBarItems = (0, _ReactUtils.findAllByType)(children, _ErrorBar.ErrorBar.displayName); if (!errorBarItems) { return null; } function dataPointFormatter(dataPoint, dataKey) { return { x: dataPoint.x, y: dataPoint.y, value: dataPoint.value, errorVal: (0, _ChartUtils.getValueByDataKey)(dataPoint.payload, dataKey) }; } return errorBarItems.map(function (item, i) { return /*#__PURE__*/_react["default"].cloneElement(item, { // eslint-disable-next-line react/no-array-index-key key: "bar-".concat(i), data: points, xAxis: xAxis, yAxis: yAxis, layout: layout, dataPointFormatter: dataPointFormatter }); }); } }, { key: "renderDots", value: function renderDots(needClip, clipPathId) { var isAnimationActive = this.props.isAnimationActive; if (isAnimationActive && !this.state.isAnimationFinished) { return null; } var _this$props2 = this.props, dot = _this$props2.dot, points = _this$props2.points, dataKey = _this$props2.dataKey; var lineProps = (0, _types.filterProps)(this.props); var customDotProps = (0, _types.filterProps)(dot, true); var dots = points.map(function (entry, i) { var dotProps = _objectSpread(_objectSpread(_objectSpread({ key: "dot-".concat(i), r: 3 }, lineProps), customDotProps), {}, { value: entry.value, dataKey: dataKey, cx: entry.x, cy: entry.y, index: i, payload: entry.payload }); return Line.renderDotItem(dot, dotProps); }); var dotsProps = { clipPath: needClip ? "url(#clipPath-".concat(clipPathId, ")") : null }; return /*#__PURE__*/_react["default"].createElement(_Layer.Layer, _extends({ className: "recharts-line-dots", key: "dots" }, dotsProps), dots); } }, { key: "renderCurveStatically", value: function renderCurveStatically(points, needClip, clipPathId, props) { // eslint-disable-next-line @typescript-eslint/no-unused-vars var _this$props3 = this.props, type = _this$props3.type, layout = _this$props3.layout, connectNulls = _this$props3.connectNulls, ref = _this$props3.ref, others = _objectWithoutProperties(_this$props3, ["type", "layout", "connectNulls", "ref"]); var curveProps = _objectSpread(_objectSpread(_objectSpread({}, (0, _types.filterProps)(others, true)), {}, { fill: 'none', className: 'recharts-line-curve', clipPath: needClip ? "url(#clipPath-".concat(clipPathId, ")") : null, points: points }, props), {}, { type: type, layout: layout, connectNulls: connectNulls }); return /*#__PURE__*/_react["default"].createElement(_Curve.Curve, _extends({}, curveProps, { pathRef: this.pathRef })); } }, { key: "renderCurveWithAnimation", value: function renderCurveWithAnimation(needClip, clipPathId) { var _this2 = this; var _this$props4 = this.props, points = _this$props4.points, strokeDasharray = _this$props4.strokeDasharray, isAnimationActive = _this$props4.isAnimationActive, animationBegin = _this$props4.animationBegin, animationDuration = _this$props4.animationDuration, animationEasing = _this$props4.animationEasing, animationId = _this$props4.animationId, animateNewValues = _this$props4.animateNewValues, width = _this$props4.width, height = _this$props4.height; var _this$state = this.state, prevPoints = _this$state.prevPoints, totalLength = _this$state.totalLength; return /*#__PURE__*/_react["default"].createElement(_reactSmooth["default"], { begin: animationBegin, duration: animationDuration, isActive: isAnimationActive, easing: animationEasing, from: { t: 0 }, to: { t: 1 }, key: "line-".concat(animationId), onAnimationEnd: this.handleAnimationEnd, onAnimationStart: this.handleAnimationStart }, function (_ref) { var t = _ref.t; if (prevPoints) { var prevPointsDiffFactor = prevPoints.length / points.length; var stepData = points.map(function (entry, index) { var prevPointIndex = Math.floor(index * prevPointsDiffFactor); if (prevPoints[prevPointIndex]) { var prev = prevPoints[prevPointIndex]; var interpolatorX = (0, _DataUtils.interpolateNumber)(prev.x, entry.x); var interpolatorY = (0, _DataUtils.interpolateNumber)(prev.y, entry.y); return _objectSpread(_objectSpread({}, entry), {}, { x: interpolatorX(t), y: interpolatorY(t) }); } // magic number of faking previous x and y location if (animateNewValues) { var _interpolatorX = (0, _DataUtils.interpolateNumber)(width * 2, entry.x); var _interpolatorY = (0, _DataUtils.interpolateNumber)(height / 2, entry.y); return _objectSpread(_objectSpread({}, entry), {}, { x: _interpolatorX(t), y: _interpolatorY(t) }); } return _objectSpread(_objectSpread({}, entry), {}, { x: entry.x, y: entry.y }); }); return _this2.renderCurveStatically(stepData, needClip, clipPathId); } var interpolator = (0, _DataUtils.interpolateNumber)(0, totalLength); var curLength = interpolator(t); var currentStrokeDasharray; if (strokeDasharray) { var lines = "".concat(strokeDasharray).split(/[,\s]+/gim).map(function (num) { return parseFloat(num); }); currentStrokeDasharray = _this2.getStrokeDasharray(curLength, totalLength, lines); } else { currentStrokeDasharray = "".concat(curLength, "px ").concat(totalLength - curLength, "px"); } return _this2.renderCurveStatically(points, needClip, clipPathId, { strokeDasharray: currentStrokeDasharray }); }); } }, { key: "renderCurve", value: function renderCurve(needClip, clipPathId) { var _this$props5 = this.props, points = _this$props5.points, isAnimationActive = _this$props5.isAnimationActive; var _this$state2 = this.state, prevPoints = _this$state2.prevPoints, totalLength = _this$state2.totalLength; if (isAnimationActive && points && points.length && (!prevPoints && totalLength > 0 || !(0, _isEqual2["default"])(prevPoints, points))) { return this.renderCurveWithAnimation(needClip, clipPathId); } return this.renderCurveStatically(points, needClip, clipPathId); } }, { key: "render", value: function render() { var _this$props6 = this.props, hide = _this$props6.hide, dot = _this$props6.dot, points = _this$props6.points, className = _this$props6.className, xAxis = _this$props6.xAxis, yAxis = _this$props6.yAxis, top = _this$props6.top, left = _this$props6.left, width = _this$props6.width, height = _this$props6.height, isAnimationActive = _this$props6.isAnimationActive, id = _this$props6.id; if (hide || !points || !points.length) { return null; } var isAnimationFinished = this.state.isAnimationFinished; var hasSinglePoint = points.length === 1; var layerClass = (0, _classnames["default"])('recharts-line', className); var needClip = xAxis && xAxis.allowDataOverflow || yAxis && yAxis.allowDataOverflow; var clipPathId = (0, _isNil2["default"])(id) ? this.id : id; return /*#__PURE__*/_react["default"].createElement(_Layer.Layer, { className: layerClass }, needClip ? /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("clipPath", { id: "clipPath-".concat(clipPathId) }, /*#__PURE__*/_react["default"].createElement("rect", { x: left, y: top, width: width, height: height }))) : null, !hasSinglePoint && this.renderCurve(needClip, clipPathId), this.renderErrorBar(), (hasSinglePoint || dot) && this.renderDots(needClip, clipPathId), (!isAnimationActive || isAnimationFinished) && _LabelList.LabelList.renderCallByParent(this.props, points)); } }], [{ key: "getDerivedStateFromProps", value: function getDerivedStateFromProps(nextProps, prevState) { if (nextProps.animationId !== prevState.prevAnimationId) { return { prevAnimationId: nextProps.animationId, curPoints: nextProps.points, prevPoints: prevState.curPoints }; } if (nextProps.points !== prevState.curPoints) { return { curPoints: nextProps.points }; } return null; } }, { key: "repeat", value: function repeat(lines, count) { var linesUnit = lines.length % 2 !== 0 ? [].concat(_toConsumableArray(lines), [0]) : lines; var result = []; for (var i = 0; i < count; ++i) { result = [].concat(_toConsumableArray(result), _toConsumableArray(linesUnit)); } return result; } }, { key: "renderDotItem", value: function renderDotItem(option, props) { var dotItem; if ( /*#__PURE__*/_react["default"].isValidElement(option)) { dotItem = /*#__PURE__*/_react["default"].cloneElement(option, props); } else if ((0, _isFunction2["default"])(option)) { dotItem = option(props); } else { var className = (0, _classnames["default"])('recharts-line-dot', option ? option.className : ''); dotItem = /*#__PURE__*/_react["default"].createElement(_Dot.Dot, _extends({}, props, { className: className })); } return dotItem; } }]); return Line; }(_react.PureComponent); exports.Line = Line; Line.displayName = 'Line'; Line.defaultProps = { xAxisId: 0, yAxisId: 0, connectNulls: false, activeDot: true, dot: true, legendType: 'line', stroke: '#3182bd', strokeWidth: 1, fill: '#fff', points: [], isAnimationActive: !_Global.Global.isSsr, animateNewValues: true, animationBegin: 0, animationDuration: 1500, animationEasing: 'ease', hide: false }; Line.getComposedData = function (_ref2) { var props = _ref2.props, xAxis = _ref2.xAxis, yAxis = _ref2.yAxis, xAxisTicks = _ref2.xAxisTicks, yAxisTicks = _ref2.yAxisTicks, dataKey = _ref2.dataKey, bandSize = _ref2.bandSize, displayedData = _ref2.displayedData, offset = _ref2.offset; var layout = props.layout; var points = displayedData.map(function (entry, index) { var value = (0, _ChartUtils.getValueByDataKey)(entry, dataKey); if (layout === 'horizontal') { return { x: (0, _ChartUtils.getCateCoordinateOfLine)({ axis: xAxis, ticks: xAxisTicks, bandSize: bandSize, entry: entry, index: index }), y: (0, _isNil2["default"])(value) ? null : yAxis.scale(value), value: value, payload: entry }; } return { x: (0, _isNil2["default"])(value) ? null : xAxis.scale(value), y: (0, _ChartUtils.getCateCoordinateOfLine)({ axis: yAxis, ticks: yAxisTicks, bandSize: bandSize, entry: entry, index: index }), value: value, payload: entry }; }); return _objectSpread({ points: points, layout: layout }, offset); };