| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- 'use strict';
- exports.__esModule = true;
- var _createClass = 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
- var _element = require('./../../../../helpers/dom/element');
- var _base = require('./_base');
- var _base2 = _interopRequireDefault(_base);
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
- /**
- * @class TopOverlay
- */
- var TopOverlay = function (_Overlay) {
- _inherits(TopOverlay, _Overlay);
- /**
- * @param {Walkontable} wotInstance
- */
- function TopOverlay(wotInstance) {
- _classCallCheck(this, TopOverlay);
- var _this = _possibleConstructorReturn(this, (TopOverlay.__proto__ || Object.getPrototypeOf(TopOverlay)).call(this, wotInstance));
- _this.clone = _this.makeClone(_base2.default.CLONE_TOP);
- return _this;
- }
- /**
- * Checks if overlay should be fully rendered
- *
- * @returns {Boolean}
- */
- _createClass(TopOverlay, [{
- 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 === window && (!preventOverflow || preventOverflow !== 'vertical')) {
- var box = this.wot.wtTable.hider.getBoundingClientRect();
- var top = Math.ceil(box.top);
- var bottom = Math.ceil(box.bottom);
- var finalLeft = void 0;
- var finalTop = void 0;
- finalLeft = this.wot.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
- */
- }, {
- key: 'setScrollPosition',
- value: function setScrollPosition(pos) {
- if (this.mainTableScrollableElement === window) {
- window.scrollTo((0, _element.getWindowScrollLeft)(), pos);
- } else {
- this.mainTableScrollableElement.scrollTop = pos;
- }
- }
- /**
- * 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 sum = 0;
- var defaultRowHeight = this.wot.wtSettings.settings.defaultRowHeight;
- while (from < to) {
- var height = this.wot.wtTable.getRowHeight(from);
- sum += height === void 0 ? defaultRowHeight : height;
- from++;
- }
- 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 masterHolder = this.wot.wtTable.holder;
- var scrollbarWidth = masterHolder.clientWidth === masterHolder.offsetWidth ? 0 : (0, _element.getScrollbarWidth)();
- var overlayRoot = this.clone.wtTable.holder.parentNode;
- var overlayRootStyle = overlayRoot.style;
- var preventOverflow = this.wot.getSetting('preventOverflow');
- var tableHeight = void 0;
- if (this.trimmingContainer !== window || preventOverflow === 'horizontal') {
- var width = this.wot.wtViewport.getWorkspaceWidth() - scrollbarWidth;
- width = Math.min(width, (0, _element.innerWidth)(this.wot.wtTable.wtRootElement));
- overlayRootStyle.width = width + 'px';
- } else {
- overlayRootStyle.width = '';
- }
- this.clone.wtTable.holder.style.width = overlayRootStyle.width;
- tableHeight = (0, _element.outerHeight)(this.clone.wtTable.TABLE);
- overlayRootStyle.height = (tableHeight === 0 ? tableHeight : tableHeight + 4) + 'px';
- }
- /**
- * Adjust overlay root childs size
- */
- }, {
- key: 'adjustRootChildrenSize',
- value: function adjustRootChildrenSize() {
- var scrollbarWidth = (0, _element.getScrollbarWidth)();
- 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 = 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 = 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 = this.wot.wtViewport.columnsRenderCalculator.startPosition + 'px';
- } else {
- this.clone.wtTable.spreader.style.left = '';
- }
- }
- /**
- * Scrolls vertically to a row
- *
- * @param sourceRow {Number} Row index which you want to scroll to
- * @param [bottomEdge=false] {Boolean} if `true`, scrolls according to the bottom edge (top edge is by default)
- */
- }, {
- key: 'scrollTo',
- value: function scrollTo(sourceRow, bottomEdge) {
- var newY = this.getTableParentOffset();
- var sourceInstance = this.wot.cloneSource ? this.wot.cloneSource : this.wot;
- var mainHolder = sourceInstance.wtTable.holder;
- var scrollbarCompensation = 0;
- if (bottomEdge && mainHolder.offsetHeight !== mainHolder.clientHeight) {
- scrollbarCompensation = (0, _element.getScrollbarWidth)();
- }
- if (bottomEdge) {
- var fixedRowsBottom = this.wot.getSetting('fixedRowsBottom');
- var fixedRowsTop = this.wot.getSetting('fixedRowsTop');
- var totalRows = this.wot.getSetting('totalRows');
- newY += this.sumCellSizes(0, sourceRow + 1);
- newY -= this.wot.wtViewport.getViewportHeight() - this.sumCellSizes(totalRows - fixedRowsBottom, totalRows);
- // Fix 1 pixel offset when cell is selected
- newY += 1;
- } else {
- newY += this.sumCellSizes(this.wot.getSetting('fixedRowsTop'), sourceRow);
- }
- newY += scrollbarCompensation;
- this.setScrollPosition(newY);
- }
- /**
- * Gets table parent top position
- *
- * @returns {Number}
- */
- }, {
- key: 'getTableParentOffset',
- value: function getTableParentOffset() {
- if (this.mainTableScrollableElement === window) {
- 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);
- }
- /**
- * 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);
- if (border) {
- var corners = selection.getCorners();
- border.disappear();
- border.appear(corners);
- }
- }
- }
- /**
- * Redrawing borders of all selections
- */
- }, {
- key: 'redrawAllSelectionsBorders',
- value: function redrawAllSelectionsBorders() {
- var selections = this.wot.selections;
- this.redrawSelectionBorders(selections.current);
- this.redrawSelectionBorders(selections.area);
- this.redrawSelectionBorders(selections.fill);
- 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;
- }(_base2.default);
- _base2.default.registerOverlay(_base2.default.CLONE_TOP, TopOverlay);
- exports.default = TopOverlay;
|