mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
127 lines
2.9 KiB
Plaintext
127 lines
2.9 KiB
Plaintext
import _ from 'lodash';
|
|
import alignTableData from './alignTableData';
|
|
import calculateRowHeightIndex from './calculateRowHeightIndex';
|
|
import {
|
|
drawBorderBottom,
|
|
drawBorderJoin,
|
|
drawBorderTop,
|
|
} from './drawBorder';
|
|
import drawRow from './drawRow';
|
|
import makeStreamConfig from './makeStreamConfig';
|
|
import mapDataUsingRowHeightIndex from './mapDataUsingRowHeightIndex';
|
|
import padTableData from './padTableData';
|
|
import stringifyTableData from './stringifyTableData';
|
|
import truncateTableData from './truncateTableData';
|
|
|
|
/**
|
|
* @param {Array} data
|
|
* @param {object} config
|
|
* @returns {Array}
|
|
*/
|
|
const prepareData = (data, config) => {
|
|
let rows;
|
|
|
|
rows = stringifyTableData(data);
|
|
|
|
rows = truncateTableData(data, config);
|
|
|
|
const rowHeightIndex = calculateRowHeightIndex(rows, config);
|
|
|
|
rows = mapDataUsingRowHeightIndex(rows, rowHeightIndex, config);
|
|
rows = alignTableData(rows, config);
|
|
rows = padTableData(rows, config);
|
|
|
|
return rows;
|
|
};
|
|
|
|
/**
|
|
* @param {string[]} row
|
|
* @param {number[]} columnWidthIndex
|
|
* @param {object} config
|
|
* @returns {undefined}
|
|
*/
|
|
const create = (row, columnWidthIndex, config) => {
|
|
const rows = prepareData([row], config);
|
|
|
|
const body = rows.map((literalRow) => {
|
|
return drawRow(literalRow, config.border);
|
|
}).join('');
|
|
|
|
let output;
|
|
|
|
output = '';
|
|
|
|
output += drawBorderTop(columnWidthIndex, config.border);
|
|
output += body;
|
|
output += drawBorderBottom(columnWidthIndex, config.border);
|
|
|
|
output = output.trimEnd();
|
|
|
|
process.stdout.write(output);
|
|
};
|
|
|
|
/**
|
|
* @param {string[]} row
|
|
* @param {number[]} columnWidthIndex
|
|
* @param {object} config
|
|
* @returns {undefined}
|
|
*/
|
|
const append = (row, columnWidthIndex, config) => {
|
|
const rows = prepareData([row], config);
|
|
|
|
const body = rows.map((literalRow) => {
|
|
return drawRow(literalRow, config.border);
|
|
}).join('');
|
|
|
|
let output = '';
|
|
const bottom = drawBorderBottom(columnWidthIndex, config.border);
|
|
|
|
if (bottom !== '\n') {
|
|
output = '\r\u001B[K';
|
|
}
|
|
|
|
output += drawBorderJoin(columnWidthIndex, config.border);
|
|
output += body;
|
|
output += bottom;
|
|
|
|
output = output.trimEnd();
|
|
|
|
process.stdout.write(output);
|
|
};
|
|
|
|
/**
|
|
* @param {object} userConfig
|
|
* @returns {object}
|
|
*/
|
|
export default (userConfig = {}) => {
|
|
const config = makeStreamConfig(userConfig);
|
|
|
|
const columnWidthIndex = Object.values(_.mapValues(config.columns, (column) => {
|
|
return column.width + column.paddingLeft + column.paddingRight;
|
|
}));
|
|
|
|
let empty;
|
|
|
|
empty = true;
|
|
|
|
return {
|
|
/**
|
|
* @param {string[]} row
|
|
* @returns {undefined}
|
|
*/
|
|
write: (row) => {
|
|
if (row.length !== config.columnCount) {
|
|
throw new Error('Row cell count does not match the config.columnCount.');
|
|
}
|
|
|
|
if (empty) {
|
|
empty = false;
|
|
|
|
return create(row, columnWidthIndex, config);
|
|
} else {
|
|
return append(row, columnWidthIndex, config);
|
|
}
|
|
},
|
|
};
|
|
};
|