"use strict"; require("core-js/modules/es.symbol"); require("core-js/modules/es.symbol.description"); require("core-js/modules/es.symbol.iterator"); require("core-js/modules/es.array.iterator"); require("core-js/modules/es.object.get-prototype-of"); require("core-js/modules/es.object.set-prototype-of"); require("core-js/modules/es.object.to-string"); require("core-js/modules/es.reflect.construct"); require("core-js/modules/es.regexp.to-string"); require("core-js/modules/es.string.iterator"); require("core-js/modules/web.dom-collections.iterator"); exports.__esModule = true; exports.default = void 0; var _element = require("./../../../../helpers/dom/element"); var _array = require("./../../../../helpers/array"); var _top = _interopRequireDefault(require("./../table/top")); var _base = _interopRequireDefault(require("./_base")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 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); } function isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } function _construct(Parent, args, Class) { if (isNativeReflectConstruct()) { _construct = Reflect.construct; } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); } 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); } /** * @class TopOverlay */ var TopOverlay = /*#__PURE__*/ function (_Overlay) { _inherits(TopOverlay, _Overlay); /** * @param {Walkontable} wotInstance */ function TopOverlay(wotInstance) { var _this; _classCallCheck(this, TopOverlay); _this = _possibleConstructorReturn(this, _getPrototypeOf(TopOverlay).call(this, wotInstance)); _this.clone = _this.makeClone(_base.default.CLONE_TOP); return _this; } /** * Factory method to create a subclass of `Table` that is relevant to this overlay. * * @see Table#constructor * @param {...*} args Parameters that will be forwarded to the `Table` constructor * @returns {Table} */ _createClass(TopOverlay, [{ key: "createTable", value: function createTable() { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _construct(_top.default, args); } /** * Checks if overlay should be fully rendered. * * @returns {Boolean} */ }, { key: "shouldBeRendered", value: function shouldBeRendered() { return !!(this.wot.getSetting('fixedRowsTop') || this.wot.getSetting('columnHeaders').length); } /** * Updates the top overlay position. */ }, { key: "resetFixedPosition", value: function resetFixedPosition() { if (!this.needFullRender || !this.wot.wtTable.holder.parentNode) { // removed from DOM return; } var overlayRoot = this.clone.wtTable.holder.parentNode; var headerPosition = 0; var preventOverflow = this.wot.getSetting('preventOverflow'); if (this.trimmingContainer === this.wot.rootWindow && (!preventOverflow || preventOverflow !== 'vertical')) { var wtTable = this.wot.wtTable; var box = wtTable.hider.getBoundingClientRect(); var top = Math.ceil(box.top); var bottom = Math.ceil(box.bottom); var finalLeft; var finalTop; finalLeft = wtTable.hider.style.left; finalLeft = finalLeft === '' ? 0 : finalLeft; if (top < 0 && bottom - overlayRoot.offsetHeight > 0) { finalTop = -top; } else { finalTop = 0; } headerPosition = finalTop; finalTop += 'px'; (0, _element.setOverlayPosition)(overlayRoot, finalLeft, finalTop); } else { headerPosition = this.getScrollPosition(); (0, _element.resetCssTransform)(overlayRoot); } this.adjustHeaderBordersPosition(headerPosition); this.adjustElementsSize(); } /** * Sets the main overlay's vertical scroll position. * * @param {Number} pos * @returns {Boolean} */ }, { key: "setScrollPosition", value: function setScrollPosition(pos) { var rootWindow = this.wot.rootWindow; var result = false; if (this.mainTableScrollableElement === rootWindow && rootWindow.scrollY !== pos) { rootWindow.scrollTo((0, _element.getWindowScrollLeft)(rootWindow), pos); result = true; } else if (this.mainTableScrollableElement.scrollTop !== pos) { this.mainTableScrollableElement.scrollTop = pos; result = true; } return result; } /** * Triggers onScroll hook callback. */ }, { key: "onScroll", value: function onScroll() { this.wot.getSetting('onScrollHorizontally'); } /** * Calculates total sum cells height. * * @param {Number} from Row index which calculates started from. * @param {Number} to Row index where calculation is finished. * @returns {Number} Height sum. */ }, { key: "sumCellSizes", value: function sumCellSizes(from, to) { var defaultRowHeight = this.wot.wtSettings.settings.defaultRowHeight; var row = from; var sum = 0; while (row < to) { var height = this.wot.wtTable.getRowHeight(row); sum += height === void 0 ? defaultRowHeight : height; row += 1; } return sum; } /** * Adjust overlay root element, childs and master table element sizes (width, height). * * @param {Boolean} [force=false] */ }, { key: "adjustElementsSize", value: function adjustElementsSize() { var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; this.updateTrimmingContainer(); if (this.needFullRender || force) { this.adjustRootElementSize(); this.adjustRootChildrenSize(); if (!force) { this.areElementSizesAdjusted = true; } } } /** * Adjust overlay root element size (width and height). */ }, { key: "adjustRootElementSize", value: function adjustRootElementSize() { var _this$wot = this.wot, wtTable = _this$wot.wtTable, rootDocument = _this$wot.rootDocument, rootWindow = _this$wot.rootWindow; var scrollbarWidth = (0, _element.getScrollbarWidth)(rootDocument); var overlayRoot = this.clone.wtTable.holder.parentNode; var overlayRootStyle = overlayRoot.style; var preventOverflow = this.wot.getSetting('preventOverflow'); if (this.trimmingContainer !== rootWindow || preventOverflow === 'horizontal') { var width = this.wot.wtViewport.getWorkspaceWidth(); if (this.wot.wtOverlays.hasScrollbarRight) { width -= scrollbarWidth; } width = Math.min(width, wtTable.wtRootElement.scrollWidth); overlayRootStyle.width = "".concat(width, "px"); } else { overlayRootStyle.width = ''; } this.clone.wtTable.holder.style.width = overlayRootStyle.width; var tableHeight = (0, _element.outerHeight)(this.clone.wtTable.TABLE); if (!this.wot.wtTable.hasDefinedSize()) { tableHeight = 0; } overlayRootStyle.height = "".concat(tableHeight === 0 ? tableHeight : tableHeight + 4, "px"); } /** * Adjust overlay root childs size. */ }, { key: "adjustRootChildrenSize", value: function adjustRootChildrenSize() { var scrollbarWidth = (0, _element.getScrollbarWidth)(this.wot.rootDocument); this.clone.wtTable.hider.style.width = this.hider.style.width; this.clone.wtTable.holder.style.width = this.clone.wtTable.holder.parentNode.style.width; if (scrollbarWidth === 0) { scrollbarWidth = 30; } this.clone.wtTable.holder.style.height = "".concat(parseInt(this.clone.wtTable.holder.parentNode.style.height, 10) + scrollbarWidth, "px"); } /** * Adjust the overlay dimensions and position. */ }, { key: "applyToDOM", value: function applyToDOM() { var total = this.wot.getSetting('totalRows'); if (!this.areElementSizesAdjusted) { this.adjustElementsSize(); } if (typeof this.wot.wtViewport.rowsRenderCalculator.startPosition === 'number') { this.spreader.style.top = "".concat(this.wot.wtViewport.rowsRenderCalculator.startPosition, "px"); } else if (total === 0) { // can happen if there are 0 rows this.spreader.style.top = '0'; } else { throw new Error('Incorrect value of the rowsRenderCalculator'); } this.spreader.style.bottom = ''; if (this.needFullRender) { this.syncOverlayOffset(); } } /** * Synchronize calculated left position to an element. */ }, { key: "syncOverlayOffset", value: function syncOverlayOffset() { if (typeof this.wot.wtViewport.columnsRenderCalculator.startPosition === 'number') { this.clone.wtTable.spreader.style.left = "".concat(this.wot.wtViewport.columnsRenderCalculator.startPosition, "px"); } else { this.clone.wtTable.spreader.style.left = ''; } } /** * Scrolls vertically to a row. * * @param {Number} sourceRow Row index which you want to scroll to. * @param {Boolean} [bottomEdge] if `true`, scrolls according to the bottom edge (top edge is by default). * @returns {Boolean} */ }, { key: "scrollTo", value: function scrollTo(sourceRow, bottomEdge) { var wot = this.wot; var sourceInstance = wot.cloneSource ? wot.cloneSource : wot; var mainHolder = sourceInstance.wtTable.holder; var newY = this.getTableParentOffset(); var scrollbarCompensation = 0; if (bottomEdge && mainHolder.offsetHeight !== mainHolder.clientHeight) { scrollbarCompensation = (0, _element.getScrollbarWidth)(wot.rootDocument); } if (bottomEdge) { var fixedRowsBottom = wot.getSetting('fixedRowsBottom'); var totalRows = wot.getSetting('totalRows'); newY += this.sumCellSizes(0, sourceRow + 1); newY -= wot.wtViewport.getViewportHeight() - this.sumCellSizes(totalRows - fixedRowsBottom, totalRows); // Fix 1 pixel offset when cell is selected newY += 1; } else { newY += this.sumCellSizes(wot.getSetting('fixedRowsTop'), sourceRow); } newY += scrollbarCompensation; return this.setScrollPosition(newY); } /** * Gets table parent top position. * * @returns {Number} */ }, { key: "getTableParentOffset", value: function getTableParentOffset() { if (this.mainTableScrollableElement === this.wot.rootWindow) { return this.wot.wtTable.holderOffset.top; } return 0; } /** * Gets the main overlay's vertical scroll position. * * @returns {Number} Main table's vertical scroll position. */ }, { key: "getScrollPosition", value: function getScrollPosition() { return (0, _element.getScrollTop)(this.mainTableScrollableElement, this.wot.rootWindow); } /** * Redraw borders of selection. * * @param {WalkontableSelection} selection Selection for redraw. */ }, { key: "redrawSelectionBorders", value: function redrawSelectionBorders(selection) { if (selection && selection.cellRange) { var border = selection.getBorder(this.wot); var corners = selection.getCorners(); border.disappear(); border.appear(corners); } } /** * Redrawing borders of all selections. */ }, { key: "redrawAllSelectionsBorders", value: function redrawAllSelectionsBorders() { var _this2 = this; var selections = this.wot.selections; this.redrawSelectionBorders(selections.getCell()); (0, _array.arrayEach)(selections.getAreas(), function (area) { _this2.redrawSelectionBorders(area); }); this.redrawSelectionBorders(selections.getFill()); this.wot.wtTable.wot.wtOverlays.leftOverlay.refresh(); } /** * Adds css classes to hide the header border's header (cell-selection border hiding issue). * * @param {Number} position Header Y position if trimming container is window or scroll top if not. */ }, { key: "adjustHeaderBordersPosition", value: function adjustHeaderBordersPosition(position) { var masterParent = this.wot.wtTable.holder.parentNode; var totalColumns = this.wot.getSetting('totalColumns'); if (totalColumns) { (0, _element.removeClass)(masterParent, 'emptyColumns'); } else { (0, _element.addClass)(masterParent, 'emptyColumns'); } if (this.wot.getSetting('fixedRowsTop') === 0 && this.wot.getSetting('columnHeaders').length > 0) { var previousState = (0, _element.hasClass)(masterParent, 'innerBorderTop'); if (position || this.wot.getSetting('totalRows') === 0) { (0, _element.addClass)(masterParent, 'innerBorderTop'); } else { (0, _element.removeClass)(masterParent, 'innerBorderTop'); } if (!previousState && position || previousState && !position) { this.wot.wtOverlays.adjustElementsSize(); // cell borders should be positioned once again, // because we added / removed 1px border from table header this.redrawAllSelectionsBorders(); } } // nasty workaround for double border in the header, TODO: find a pure-css solution if (this.wot.getSetting('rowHeaders').length === 0) { var secondHeaderCell = this.clone.wtTable.THEAD.querySelectorAll('th:nth-of-type(2)'); if (secondHeaderCell) { for (var i = 0; i < secondHeaderCell.length; i++) { secondHeaderCell[i].style['border-left-width'] = 0; } } } } }]); return TopOverlay; }(_base.default); _base.default.registerOverlay(_base.default.CLONE_TOP, TopOverlay); var _default = TopOverlay; exports.default = _default;