@integec/grid-tools
Version:
Integ Grid Tools
132 lines (96 loc) • 6.91 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _react = _interopRequireDefault(require("react"));
var _reactDom = _interopRequireDefault(require("react-dom"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _ScrollSyncHelper = _interopRequireDefault(require("./ScrollSyncHelper"));
var _constants = require("./constants");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
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 _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 _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 _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); }
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; }
var ScrollPane =
/*#__PURE__*/
function (_React$Component) {
_inherits(ScrollPane, _React$Component);
function ScrollPane() {
_classCallCheck(this, ScrollPane);
return _possibleConstructorReturn(this, _getPrototypeOf(ScrollPane).apply(this, arguments));
}
_createClass(ScrollPane, [{
key: "componentDidMount",
value: function componentDidMount() {
var _this$props = this.props,
horizontal = _this$props.horizontal,
vertical = _this$props.vertical;
var scrollSync = this.context[_constants.SCROLL_SYNC_CONTEXT];
var node = _reactDom["default"].findDOMNode(this.pane);
if (horizontal) {
scrollSync.registerPane(node, _ScrollSyncHelper["default"].HORIZONTAL);
}
if (vertical) {
scrollSync.registerPane(node, _ScrollSyncHelper["default"].VERTICAL);
}
}
}, {
key: "componentWillUnmount",
value: function componentWillUnmount() {
var scrollSync = this.context[_constants.SCROLL_SYNC_CONTEXT];
var node = _reactDom["default"].findDOMNode(this.pane);
scrollSync.unReisterPane(node);
}
}, {
key: "render",
value: function render() {
var _this = this;
var _this$props2 = this.props,
children = _this$props2.children,
vertical = _this$props2.vertical,
horizontal = _this$props2.horizontal,
colCount = _this$props2.colCount,
isHeader = _this$props2.isHeader,
scroll = _this$props2.scroll,
xOffSet = _this$props2.xOffSet,
yOffSet = _this$props2.yOffSet,
headerRowHeight = _this$props2.headerRowHeight,
showScroll = _this$props2.showScroll,
selectionType = _this$props2.selectionType,
fixed = _this$props2.fixed,
fixedScrollHeightAdjustment = _this$props2.fixedScrollHeightAdjustment,
scrollX = _this$props2.scrollX,
scrollY = _this$props2.scrollY,
props = _objectWithoutProperties(_this$props2, ["children", "vertical", "horizontal", "colCount", "isHeader", "scroll", "xOffSet", "yOffSet", "headerRowHeight", "showScroll", "selectionType", "fixed", "fixedScrollHeightAdjustment", "scrollX", "scrollY"]);
return _react["default"].createElement("div", _extends({
ref: function ref(n) {
return _this.pane = n;
}
}, props), children);
}
}]);
return ScrollPane;
}(_react["default"].Component);
_defineProperty(ScrollPane, "propTypes", {
horizontal: _propTypes["default"].bool,
vertical: _propTypes["default"].bool
});
_defineProperty(ScrollPane, "defaultProps", {
horizontal: true,
vertical: false
});
_defineProperty(ScrollPane, "contextTypes", _defineProperty({}, _constants.SCROLL_SYNC_CONTEXT, _propTypes["default"].object.isRequired));
var _default = ScrollPane;
exports["default"] = _default;
//# sourceMappingURL=ScrollPane.js.map