recharts
Version:
React charts
205 lines (173 loc) • 8.45 kB
JavaScript
import _debounce from "lodash/debounce";
function _typeof(obj) { 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); }
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 _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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
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); }
/**
* @fileOverview Wrapper component to make charts adapt to the size of parent * DOM
*/
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import ReactResizeDetector from 'react-resize-detector';
import { isPercent } from '../util/DataUtils';
import { warn } from '../util/LogUtils';
var ResponsiveContainer =
/*#__PURE__*/
function (_Component) {
_inherits(ResponsiveContainer, _Component);
function ResponsiveContainer(props) {
var _this;
_classCallCheck(this, ResponsiveContainer);
_this = _possibleConstructorReturn(this, _getPrototypeOf(ResponsiveContainer).call(this, props));
_this.updateDimensionsImmediate = function () {
if (!_this.mounted) {
return;
}
var newSize = _this.getContainerSize();
if (newSize) {
var _this$state = _this.state,
oldWidth = _this$state.containerWidth,
oldHeight = _this$state.containerHeight;
var containerWidth = newSize.containerWidth,
containerHeight = newSize.containerHeight;
if (containerWidth !== oldWidth || containerHeight !== oldHeight) {
_this.setState({
containerWidth: containerWidth,
containerHeight: containerHeight
});
}
}
};
_this.state = {
containerWidth: -1,
containerHeight: -1
};
_this.handleResize = props.debounce > 0 ? _debounce(_this.updateDimensionsImmediate, props.debounce) : _this.updateDimensionsImmediate;
return _this;
}
/* eslint-disable react/no-did-mount-set-state */
_createClass(ResponsiveContainer, [{
key: "componentDidMount",
value: function componentDidMount() {
this.mounted = true;
var size = this.getContainerSize();
if (size) {
this.setState(size);
}
}
}, {
key: "componentWillUnmount",
value: function componentWillUnmount() {
this.mounted = false;
}
}, {
key: "getContainerSize",
value: function getContainerSize() {
if (!this.container) {
return null;
}
return {
containerWidth: this.container.clientWidth,
containerHeight: this.container.clientHeight
};
}
}, {
key: "renderChart",
value: function renderChart() {
var _this$state2 = this.state,
containerWidth = _this$state2.containerWidth,
containerHeight = _this$state2.containerHeight;
if (containerWidth < 0 || containerHeight < 0) {
return null;
}
var _this$props = this.props,
aspect = _this$props.aspect,
width = _this$props.width,
height = _this$props.height,
minWidth = _this$props.minWidth,
minHeight = _this$props.minHeight,
maxHeight = _this$props.maxHeight,
children = _this$props.children;
warn(isPercent(width) || isPercent(height), "The width(%s) and height(%s) are both fixed numbers,\n maybe you don't need to use a ResponsiveContainer.", width, height);
warn(!aspect || aspect > 0, 'The aspect(%s) must be greater than zero.', aspect);
var calculatedWidth = isPercent(width) ? containerWidth : width;
var calculatedHeight = isPercent(height) ? containerHeight : height;
if (aspect && aspect > 0) {
// Preserve the desired aspect ratio
if (calculatedWidth) {
// Will default to using width for aspect ratio
calculatedHeight = calculatedWidth / aspect;
} else if (calculatedHeight) {
// But we should also take height into consideration
calculatedWidth = calculatedHeight * aspect;
} // if maxHeight is set, overwrite if calculatedHeight is greater than maxHeight
if (maxHeight && calculatedHeight > maxHeight) {
calculatedHeight = maxHeight;
}
}
warn(calculatedWidth > 0 || calculatedHeight > 0, "The width(%s) and height(%s) of chart should be greater than 0,\n please check the style of container, or the props width(%s) and height(%s),\n or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the\n height and width.", calculatedWidth, calculatedHeight, width, height, minWidth, minHeight, aspect);
return React.cloneElement(children, {
width: calculatedWidth,
height: calculatedHeight
});
}
}, {
key: "render",
value: function render() {
var _this2 = this;
var _this$props2 = this.props,
minWidth = _this$props2.minWidth,
minHeight = _this$props2.minHeight,
width = _this$props2.width,
height = _this$props2.height,
maxHeight = _this$props2.maxHeight,
id = _this$props2.id,
className = _this$props2.className;
var style = {
width: width,
height: height,
minWidth: minWidth,
minHeight: minHeight,
maxHeight: maxHeight
};
return React.createElement("div", {
id: id,
className: classNames('recharts-responsive-container', className),
style: style,
ref: function ref(node) {
_this2.container = node;
}
}, this.renderChart(), React.createElement(ReactResizeDetector, {
handleWidth: true,
handleHeight: true,
onResize: this.handleResize
}));
}
}]);
return ResponsiveContainer;
}(Component);
ResponsiveContainer.displayName = 'ResponsiveContainer';
ResponsiveContainer.propTypes = {
aspect: PropTypes.number,
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
minHeight: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
minWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
maxHeight: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
children: PropTypes.node.isRequired,
debounce: PropTypes.number,
id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
className: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
ResponsiveContainer.defaultProps = {
width: '100%',
height: '100%',
debounce: 0
};
export default ResponsiveContainer;