minimal adjustments
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / dist / drawTable.js.flow
1 import {
2   drawBorderTop,
3   drawBorderJoin,
4   drawBorderBottom,
5 } from './drawBorder';
6 import drawRow from './drawRow';
7
8 /**
9  * @param {Array} rows
10  * @param {object} border
11  * @param {Array} columnSizeIndex
12  * @param {Array} rowSpanIndex
13  * @param {Function} drawHorizontalLine
14  * @param {boolean} singleLine
15  * @returns {string}
16  */
17 export default (rows, border, columnSizeIndex, rowSpanIndex, drawHorizontalLine, singleLine) => {
18   let output;
19   let realRowIndex;
20   let rowHeight;
21
22   const rowCount = rows.length;
23
24   realRowIndex = 0;
25
26   output = '';
27
28   if (drawHorizontalLine(realRowIndex, rowCount)) {
29     output += drawBorderTop(columnSizeIndex, border);
30   }
31
32   rows.forEach((row, index0) => {
33     output += drawRow(row, border);
34
35     if (!rowHeight) {
36       rowHeight = rowSpanIndex[realRowIndex];
37
38       realRowIndex++;
39     }
40
41     rowHeight--;
42
43     if (!singleLine && rowHeight === 0 && index0 !== rowCount - 1 && drawHorizontalLine(realRowIndex, rowCount)) {
44       output += drawBorderJoin(columnSizeIndex, border);
45     }
46   });
47
48   if (drawHorizontalLine(realRowIndex, rowCount)) {
49     output += drawBorderBottom(columnSizeIndex, border);
50   }
51
52   return output;
53 };