minimal adjustments
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / dist / calculateRowHeightIndex.js.flow
1 import isBoolean from 'is-boolean-object';
2 import isNumber from 'is-number-object';
3 import calculateCellHeight from './calculateCellHeight';
4
5 /**
6  * Calculates the vertical row span index.
7  *
8  * @param {Array[]} rows
9  * @param {object} config
10  * @returns {number[]}
11  */
12 export default (rows, config) => {
13   const tableWidth = rows[0].length;
14
15   const rowSpanIndex = [];
16
17   rows.forEach((cells) => {
18     const cellHeightIndex = new Array(tableWidth).fill(1);
19
20     cells.forEach((value, index1) => {
21       if (!isNumber(config.columns[index1].width)) {
22         throw new TypeError('column[index].width must be a number.');
23       }
24
25       if (!isBoolean(config.columns[index1].wrapWord)) {
26         throw new TypeError('column[index].wrapWord must be a boolean.');
27       }
28
29       cellHeightIndex[index1] = calculateCellHeight(value, config.columns[index1].width, config.columns[index1].wrapWord);
30     });
31
32     rowSpanIndex.push(Math.max(...cellHeightIndex));
33   });
34
35   return rowSpanIndex;
36 };