UNPKG

react-virtualized

Version:

React components for efficiently rendering large, scrollable lists and tabular data

204 lines (158 loc) 7.65 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of'); var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf); var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck'); var _classCallCheck3 = _interopRequireDefault(_classCallCheck2); var _createClass2 = require('babel-runtime/helpers/createClass'); var _createClass3 = _interopRequireDefault(_createClass2); var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn'); var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2); var _inherits2 = require('babel-runtime/helpers/inherits'); var _inherits3 = _interopRequireDefault(_inherits2); var _react = require('react'); var React = _interopRequireWildcard(_react); var _reactDom = require('react-dom'); var _types = require('./types'); var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Wraps a cell and measures its rendered content. * Measurements are stored in a per-cell cache. * Cached-content is not be re-measured. */ var CellMeasurer = function (_React$PureComponent) { (0, _inherits3.default)(CellMeasurer, _React$PureComponent); function CellMeasurer() { var _ref; var _temp, _this, _ret; (0, _classCallCheck3.default)(this, CellMeasurer); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = (0, _possibleConstructorReturn3.default)(this, (_ref = CellMeasurer.__proto__ || (0, _getPrototypeOf2.default)(CellMeasurer)).call.apply(_ref, [this].concat(args))), _this), _this._measure = function () { var _this$props = _this.props, cache = _this$props.cache, _this$props$columnInd = _this$props.columnIndex, columnIndex = _this$props$columnInd === undefined ? 0 : _this$props$columnInd, parent = _this$props.parent, _this$props$rowIndex = _this$props.rowIndex, rowIndex = _this$props$rowIndex === undefined ? _this.props.index || 0 : _this$props$rowIndex; var _this$_getCellMeasure = _this._getCellMeasurements(), height = _this$_getCellMeasure.height, width = _this$_getCellMeasure.width; if (height !== cache.getHeight(rowIndex, columnIndex) || width !== cache.getWidth(rowIndex, columnIndex)) { cache.set(rowIndex, columnIndex, width, height); if (parent && typeof parent.recomputeGridSize === 'function') { parent.recomputeGridSize({ columnIndex: columnIndex, rowIndex: rowIndex }); } } }, _temp), (0, _possibleConstructorReturn3.default)(_this, _ret); } (0, _createClass3.default)(CellMeasurer, [{ key: 'componentDidMount', value: function componentDidMount() { this._maybeMeasureCell(); } }, { key: 'componentDidUpdate', value: function componentDidUpdate() { this._maybeMeasureCell(); } }, { key: 'render', value: function render() { var children = this.props.children; return typeof children === 'function' ? children({ measure: this._measure }) : children; } }, { key: '_getCellMeasurements', value: function _getCellMeasurements() { var cache = this.props.cache; var node = (0, _reactDom.findDOMNode)(this); // TODO Check for a bad combination of fixedWidth and missing numeric width or vice versa with height if (node && node.ownerDocument && node.ownerDocument.defaultView && node instanceof node.ownerDocument.defaultView.HTMLElement) { var styleWidth = node.style.width; var styleHeight = node.style.height; // If we are re-measuring a cell that has already been measured, // It will have a hard-coded width/height from the previous measurement. // The fact that we are measuring indicates this measurement is probably stale, // So explicitly clear it out (eg set to "auto") so we can recalculate. // See issue #593 for more info. // Even if we are measuring initially- if we're inside of a MultiGrid component, // Explicitly clear width/height before measuring to avoid being tainted by another Grid. // eg top/left Grid renders before bottom/right Grid // Since the CellMeasurerCache is shared between them this taints derived cell size values. if (!cache.hasFixedWidth()) { node.style.width = 'auto'; } if (!cache.hasFixedHeight()) { node.style.height = 'auto'; } var height = Math.ceil(node.offsetHeight); var width = Math.ceil(node.offsetWidth); // Reset after measuring to avoid breaking styles; see #660 if (styleWidth) { node.style.width = styleWidth; } if (styleHeight) { node.style.height = styleHeight; } return { height: height, width: width }; } else { return { height: 0, width: 0 }; } } }, { key: '_maybeMeasureCell', value: function _maybeMeasureCell() { var _props = this.props, cache = _props.cache, _props$columnIndex = _props.columnIndex, columnIndex = _props$columnIndex === undefined ? 0 : _props$columnIndex, parent = _props.parent, _props$rowIndex = _props.rowIndex, rowIndex = _props$rowIndex === undefined ? this.props.index || 0 : _props$rowIndex; if (!cache.has(rowIndex, columnIndex)) { var _getCellMeasurements2 = this._getCellMeasurements(), height = _getCellMeasurements2.height, width = _getCellMeasurements2.width; cache.set(rowIndex, columnIndex, width, height); // If size has changed, let Grid know to re-render. if (parent && typeof parent.invalidateCellSizeAfterRender === 'function') { parent.invalidateCellSizeAfterRender({ columnIndex: columnIndex, rowIndex: rowIndex }); } } } }]); return CellMeasurer; }(React.PureComponent); // Used for DEV mode warning check CellMeasurer.__internalCellMeasurerFlag = false; CellMeasurer.propTypes = process.env.NODE_ENV === 'production' ? null : { cache: function cache() { return (typeof _types.bpfrpt_proptype_CellMeasureCache === 'function' ? _types.bpfrpt_proptype_CellMeasureCache.isRequired ? _types.bpfrpt_proptype_CellMeasureCache.isRequired : _types.bpfrpt_proptype_CellMeasureCache : _propTypes2.default.shape(_types.bpfrpt_proptype_CellMeasureCache).isRequired).apply(this, arguments); }, children: _propTypes2.default.oneOfType([_propTypes2.default.func, _propTypes2.default.node]).isRequired, columnIndex: _propTypes2.default.number, index: _propTypes2.default.number, parent: _propTypes2.default.shape({ invalidateCellSizeAfterRender: _propTypes2.default.func, recomputeGridSize: _propTypes2.default.func }).isRequired, rowIndex: _propTypes2.default.number }; exports.default = CellMeasurer; if (process.env.NODE_ENV !== 'production') { CellMeasurer.__internalCellMeasurerFlag = true; }