Sha256: de5df15b673337d338341877dfa09ddbb7ba89237ef2a9c6a9b6b77242ec60fd

Contents?: true

Size: 1.48 KB

Versions: 23

Compression:

Stored size: 1.48 KB

Contents

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = void 0;

var _max2 = _interopRequireDefault(require("lodash/max"));

var _isBoolean2 = _interopRequireDefault(require("lodash/isBoolean"));

var _isNumber2 = _interopRequireDefault(require("lodash/isNumber"));

var _calculateCellHeight = _interopRequireDefault(require("./calculateCellHeight"));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

/**
 * Calculates the vertical row span index.
 *
 * @param {Array[]} rows
 * @param {Object} config
 * @returns {number[]}
 */
const calculateRowHeightIndex = (rows, config) => {
  const tableWidth = rows[0].length;
  const rowSpanIndex = [];
  rows.forEach(cells => {
    const cellHeightIndex = new Array(tableWidth).fill(1);
    cells.forEach((value, index1) => {
      if (!(0, _isNumber2.default)(config.columns[index1].width)) {
        throw new TypeError('column[index].width must be a number.');
      }

      if (!(0, _isBoolean2.default)(config.columns[index1].wrapWord)) {
        throw new TypeError('column[index].wrapWord must be a boolean.');
      }

      cellHeightIndex[index1] = (0, _calculateCellHeight.default)(value, config.columns[index1].width, config.columns[index1].wrapWord);
    });
    rowSpanIndex.push((0, _max2.default)(cellHeightIndex));
  });
  return rowSpanIndex;
};

var _default = calculateRowHeightIndex;
exports.default = _default;
//# sourceMappingURL=calculateRowHeightIndex.js.map

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-cms-5.0.7 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-5.0.6 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-5.0.5 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-5.0.4 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-5.0.3 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-5.0.2 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-5.0.1 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.3.5 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-5.0.0 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.3.4 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.3.3 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.3.2 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.3.1 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.3 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.2.3 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.2.2 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.2.1 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.2 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.1.9 node_modules/table/dist/calculateRowHeightIndex.js
trusty-cms-4.1.8 node_modules/table/dist/calculateRowHeightIndex.js