12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import {
- drawBorderTop,
- drawBorderJoin,
- drawBorderBottom
- } from './drawBorder';
- import drawRow from './drawRow';
-
- /**
- * @param {Array} rows
- * @param {Object} border
- * @param {Array} columnSizeIndex
- * @param {Array} rowSpanIndex
- * @param {Function} drawHorizontalLine
- * @returns {string}
- */
- export default (rows, border, columnSizeIndex, rowSpanIndex, drawHorizontalLine) => {
- let output;
- let realRowIndex;
- let rowHeight;
-
- const rowCount = rows.length;
-
- realRowIndex = 0;
-
- output = '';
-
- if (drawHorizontalLine(realRowIndex, rowCount)) {
- output += drawBorderTop(columnSizeIndex, border);
- }
-
- rows.forEach((row, index0) => {
- output += drawRow(row, border);
-
- if (!rowHeight) {
- rowHeight = rowSpanIndex[realRowIndex];
-
- realRowIndex++;
- }
-
- rowHeight--;
-
- if (rowHeight === 0 && index0 !== rowCount - 1 && drawHorizontalLine(realRowIndex, rowCount)) {
- output += drawBorderJoin(columnSizeIndex, border);
- }
- });
-
- if (drawHorizontalLine(realRowIndex, rowCount)) {
- output += drawBorderBottom(columnSizeIndex, border);
- }
-
- return output;
- };
|