UNPKG

spread-diff-patch

Version:
65 lines (64 loc) 2.28 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/formatter/workbook.ts var workbook_exports = {}; __export(workbook_exports, { WorkbookFormatter: () => WorkbookFormatter }); module.exports = __toCommonJS(workbook_exports); var import_xlsx = require("xlsx"); var WorkbookFormatter = class { /** * Creates a new instance of WorkbookFormatter. * @param patcher - A function that generates the patch string for a given actual and expected value. */ constructor(patcher = (actual, expected) => { let patchedString = ""; if (actual) patchedString += `[-][${actual}]`; if (actual && expected) patchedString += " "; if (expected) patchedString += `[+][${expected}]`; return patchedString; }) { this.patch = patcher; } /** * Formats the diff sheets of the workbook. * @param diffSheets - An object representing the diff sheets. * @returns The formatted workbook. */ format(diffSheets) { const diffWorkBook = import_xlsx.utils.book_new(); for (const sheet in diffSheets) { const patchedAOA = diffSheets[sheet].map((row) => { return row.map((cell) => Array.isArray(cell) ? this.patch(cell[0], cell[1]) : cell); }); const ws = import_xlsx.utils.aoa_to_sheet(patchedAOA); import_xlsx.utils.book_append_sheet(diffWorkBook, ws, sheet); } return diffWorkBook; } }; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { WorkbookFormatter }); //# sourceMappingURL=workbook.js.map