e82f31e1001ad11970683cd8dedc5c76b2bff464bdf02115357571596222c12ded25ad527448568d39d4871a91695c8670c4dd270251952c3923ffbb0174d9 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  2. 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; }
  3. 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; }
  4. import { addClass } from './../../../../helpers/dom/element';
  5. import Overlay from './_base';
  6. /**
  7. * A overlay that renders ALL available rows & columns positioned on top of the original Walkontable instance and all other overlays.
  8. * Used for debugging purposes to see if the other overlays (that render only part of the rows & columns) are positioned correctly
  9. *
  10. * @class DebugOverlay
  11. */
  12. var DebugOverlay = function (_Overlay) {
  13. _inherits(DebugOverlay, _Overlay);
  14. /**
  15. * @param {Walkontable} wotInstance
  16. */
  17. function DebugOverlay(wotInstance) {
  18. _classCallCheck(this, DebugOverlay);
  19. var _this = _possibleConstructorReturn(this, (DebugOverlay.__proto__ || Object.getPrototypeOf(DebugOverlay)).call(this, wotInstance));
  20. _this.clone = _this.makeClone(Overlay.CLONE_DEBUG);
  21. _this.clone.wtTable.holder.style.opacity = 0.4;
  22. _this.clone.wtTable.holder.style.textShadow = '0 0 2px #ff0000';
  23. addClass(_this.clone.wtTable.holder.parentNode, 'wtDebugVisible');
  24. return _this;
  25. }
  26. return DebugOverlay;
  27. }(Overlay);
  28. Overlay.registerOverlay(Overlay.CLONE_DEBUG, DebugOverlay);
  29. export default DebugOverlay;